6.3 KiB
Architect — Agent Instructions
What this agent is
The architect is a strategic decomposition agent that breaks down vision issues into development sprints. It proposes sprints via PRs on the ops repo and converses with humans through PR comments.
Role
- Input: Vision issues from VISION.md, prerequisite tree from ops repo
- Output: Sprint proposals as PRs on the ops repo, sub-issue files
- Mechanism: Bash-driven orchestration in
architect-run.sh, pitching formula viaformulas/run-architect.toml - Identity:
architect-boton Forgejo
Responsibilities
- Strategic decomposition: Break down large vision items into coherent sprints that can be executed by the dev agent
- Design fork identification: When multiple implementation approaches exist, identify the forks and file sub-issues for each path
- Sprint PR creation: Propose sprints as PRs on the ops repo with clear acceptance criteria and dependencies
- Human conversation: Respond to PR comments, refine sprint proposals based on human feedback
- Sub-issue filing: After design forks are resolved, file concrete sub-issues for implementation
Formula
The architect pitching is driven by formulas/run-architect.toml. This formula defines
the steps for:
- Research: analyzing vision items and prerequisite tree
- Pitch: creating structured sprint PRs
- Sub-issue filing: creating concrete implementation issues
Bash-driven orchestration
Bash in architect-run.sh handles state detection and orchestration:
- Deterministic state detection: Bash reads the Forgejo reviews API to detect ACCEPT/REJECT decisions — checks both formal APPROVED reviews and PR comments, not just comments (#718)
- Human guidance injection: Review body text from ACCEPT reviews is injected directly into the research prompt as context
- Response processing: When ACCEPT/REJECT responses are detected, bash invokes the agent with appropriate context (session resumed for questions phase)
- Pitch capture:
pitch_outputis written to a temp file instead of captured via$()subshell, becauseagent_runwrites to side-channels (SID_FILE,LOGFILE) that subshell capture would suppress (#716) - PR URL construction: existing-PR check uses
${FORGE_API}/pullsdirectly (not${FORGE_API}/repos/…) — the base URL already includes the repos segment (#717)
State transitions
New vision issue → pitch PR (model generates pitch, bash creates PR)
↓
APPROVED review → start design questions (model posts Q1:, adds Design forks section)
↓
Answers received → continue Q&A (model processes answers, posts follow-ups)
↓
All forks resolved → sub-issue filing (model files implementation issues)
↓
REJECT review → close PR + journal (model processes rejection, bash merges PR)
Vision issue lifecycle
Vision issues decompose into sprint sub-issues tracked via "Decomposed from #N" in sub-issue bodies. The architect automatically closes vision issues when all sub-issues are closed:
- Before picking new vision issues, the architect checks each open vision issue
- For each, it queries merged sprint PRs — only PRs whose title or body reference the specific vision issue (matched via
#Npattern, filtering out unrelated PRs that happen to close unrelated issues) (#735/#736) - Extracts sub-issue numbers from those PRs, excluding the vision issue itself
- If all sub-issues are closed, posts a summary comment listing completed sub-issues (with an idempotency guard: checks both comment presence AND
.state == "closed"— if the comment exists but the issue is still open, retries the close rather than returning early) (#737) - The vision issue is then closed automatically
This ensures vision issues transition from open → closed once their work is complete, without manual intervention. The #N-scoped matching prevents false positives where unrelated sub-issues would incorrectly trigger vision issue closure.
Session management
The agent maintains a global session file at /tmp/architect-session-{project}.sid.
When processing responses, bash checks if the PR is in the questions phase and
resumes the session using --resume session_id to preserve codebase context.
Execution
Run via architect/architect-run.sh, which:
- Acquires a poll-loop lock (via
acquire_lock) and checks available memory - Cleans up per-issue scratch files from previous runs (
/tmp/architect-{project}-scratch-*.md) - Sources shared libraries (env.sh, formula-session.sh)
- Uses FORGE_ARCHITECT_TOKEN for authentication
- Processes existing architect PRs via bash-driven design phase
- Loads the formula and builds context from VISION.md, AGENTS.md, and ops repo
- Bash orchestrates state management:
- Fetches open vision issues, open architect PRs, and merged sprint PRs from Forgejo API
- Filters out visions already with open PRs, in-progress label, sub-issues, or merged sprint PRs
- Selects up to
pitch_budget(3 - open architect PRs) remaining vision issues - For each selected issue, invokes stateless
claude -pwith issue body + context - Creates PRs directly from pitch content (no scratch files)
- Agent is invoked only for response processing (ACCEPT/REJECT handling)
Multi-sprint pitching: The architect pitches up to 3 sprints per run. Bash handles all state management:
- Fetches Forgejo API data (vision issues, open PRs, merged PRs)
- Filters and deduplicates (no model-level dedup or journal-based memory)
- For each selected vision issue, bash invokes stateless
claude -pto generate pitch markdown - Bash creates the PR with pitch content and posts ACCEPT/REJECT footer comment
- Branch names use issue number (architect/sprint-vision-{issue_number}) to avoid collisions
Schedule
The architect runs every 6 hours as part of the polling loop in
docker/agents/entrypoint.sh (iteration math at line 196-208).
State
Architect state is tracked in state/.architect-active (disabled by default —
empty file not created, just document it).
Related issues
- #96: Architect agent parent issue
- #100: Architect formula — research + design fork identification
- #101: Architect formula — sprint PR creation with questions
- #102: Architect formula — answer parsing + sub-issue filing
- #491: Refactor — bash-driven design phase with stateful session resumption