Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ repo/
└── .agent/
├── agents/ # Agent prompt definitions
│ ├── orchestrator.md
│ ├── requirements-agent.md
│ ├── design-agent.md
│ ├── task-breakdown-agent.md
│ ├── backend-executor.md
│ ├── frontend-executor.md
│ └── reviewer-agent.md
│ ├── orchestrator.agent.md
│ ├── requirements-agent.agent.md
│ ├── design-agent.agent.md
│ ├── task-breakdown-agent.agent.md
│ ├── backend-executor.agent.md
│ ├── frontend-executor.agent.md
│ └── reviewer-agent.agent.md
├── templates/ # Document templates
│ ├── epic.md
│ ├── story.md
Expand Down Expand Up @@ -121,7 +121,7 @@ repo/

Start Plan Mode when you have a new goal but no spec files yet.

Give the **Orchestrator** agent the prompt from `.agent/agents/orchestrator.md` and describe your goal. The orchestrator will:
Give the **Orchestrator** agent the prompt from `.agent/agents/orchestrator.agent.md` and describe your goal. The orchestrator will:

1. Spawn the **Requirements Agent** → produces `story.md` / `epic.md`
2. Spawn the **Design Agent** → produces `design.md`
Expand All @@ -133,7 +133,7 @@ Give the **Orchestrator** agent the prompt from `.agent/agents/orchestrator.md`

Start Execute Mode when approved spec files already exist.

Give the **Orchestrator** agent the prompt from `.agent/agents/orchestrator.md` and point it at the approved `tasks.md`. The orchestrator will:
Give the **Orchestrator** agent the prompt from `.agent/agents/orchestrator.agent.md` and point it at the approved `tasks.md`. The orchestrator will:

1. Pick the next unblocked task
2. Spawn the appropriate **Executor Agent** (backend or frontend)
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,6 @@ info ""
info "Done. Next steps:"
info " 1. Open $TARGET/.agent/standards/ and fill in the placeholder"
info " code, testing, and documentation standards for your project."
info " 2. Read $TARGET/.agent/agents/orchestrator.md to understand"
info " 2. Read $TARGET/.agent/agents/orchestrator.agent.md to understand"
info " how to start a Plan Mode or Execute Mode session."
info " 3. Optionally copy README.md from this repository for reference."