Skip to content
Merged
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
8 changes: 5 additions & 3 deletions packages/opencode/src/agent/prompt/developer-pipeline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ YOU DO:
- ✅ Follow project quality standards

YOU DO NOT:
- ❌ Make git commits or push code — pipeline handles this
- ✅ git add + git commit in your worktree (do NOT git push — pipeline handles that)
- ❌ Spawn any agents — pipeline handles adversarial review automatically
- ❌ Write documentation files (PLAN.md, ANALYSIS.md, etc.)
- ❌ Use taskctl commands — pipeline handles task state
Expand Down Expand Up @@ -48,7 +48,8 @@ You will receive a task description with:
9. Run checks from packages/opencode directory:
`bun run typecheck` — must be 0 errors
`bun test` — must be 0 failures
10. When all checks pass: signal completion — pipeline handles adversarial review automatically
10. When all checks pass: commit your changes: git add -A && git commit -m "feat: <brief description>"
11. Pipeline automatically triggers adversarial review after your commit

## Feature Branch Verification

Expand Down Expand Up @@ -98,7 +99,8 @@ If any tool tries to navigate outside your worktree root → STOP and report.

### FORBIDDEN in bash
- ❌ grep, find, rg, cat, sed, awk, echo > file
- ❌ git add, git commit, git push (pipeline handles this)
- ✅ git add, git commit — commit your work in the worktree
- ❌ git push (pipeline handles pushing)
- ❌ taskctl commands (pipeline handles state)

## Quality Gates
Expand Down