Getting Started¶
Prerequisites¶
- Python 3.12+
- Git 2.20+
- Claude Code CLI installed and authenticated
- Codex CLI installed and authenticated (optional)
Installation¶
For development:
Initialize your project¶
This creates _hpnc/ with:
config.yaml— project configurationexecutor-instructions.md— rules for AI agentsnight-queue.yaml— empty task queue
Prepare a story¶
Create a story file with night-ready frontmatter:
---
night_ready: true
executor: opus
reviewer: codex
risk: low
tests_required: true
blocking_questions: []
gates_required:
- build
- tests
- lint
---
# My Task
As a developer, I want...
Add to queue and validate¶
Run¶
# Test with mock agents first
hpnc start --mock
# Real night run
hpnc start
# Schedule for tonight
hpnc start --at 23:00