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
1 change: 1 addition & 0 deletions docs_build/dev/ProjectInstructions/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ Addendum index:
- Canonical Repository Structure: project-instructions/addendums/canonical-repository-structure.md
- Test Structure Standardization: project-instructions/addendums/test-structure-standardization.md
- Legacy Migration Policy: project-instructions/addendums/legacy-migration-policy.md
- Assistant Execution Modes: project-instructions/addendums/assistant-execution-modes.md
120 changes: 120 additions & 0 deletions project-instructions/addendums/assistant-execution-modes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
# Assistant Execution Modes

## Purpose

Standardize request interpretation and expected outputs for Review, Owner, Build PR, Continue, Challenge, and Stop Gate workflows.

## Command Modes

### Review

Expected Output:
- Findings
- Risks
- Recommendations

Do Not Output:
- PRs
- Implementation plans

### Owner

Expected Output:
- Decisions
- Governance direction
- Standards

Do Not Output:
- Detailed implementation

### Build PR

Expected Output:
- Single Codex work order
- May contain multiple sequential PRs belonging to the same workstream
- Copy/paste ready for execution

Should Include:
- Start gates
- Changes
- Validation
- Commit names
- Stop point

Do Not Output:
- Design discussion
- Alternatives
- Rationale
- Architecture brainstorming

### Continue

Expected Output:
- Next sequential executable PR
- Next sequential work order

Do Not Output:
- New ideas
- Re-analysis
- Additional brainstorming

### Challenge

Expected Output:
- Risks
- Contradictions
- Better alternatives

Do Not Output:
- Immediate implementation

### Stop Gate

Expected Output:
- Why work should stop
- Required corrections

Allowed Reasons:
- Governance conflict
- Architecture conflict
- Security risk
- Data loss risk
- Major technical debt increase

## Additional Definitions

### Follow Project Instructions

Meaning:
- Use existing governance
- Do not redesign process

### Build the PR

Meaning:
- Produce Codex executable work order immediately

### Continue

Meaning:
- Produce next sequential work item

### No zip file

Meaning:
- Generate instructions only
- Do not expect artifact review

### You are owner

Meaning:
- Make decisions
- Do not ask for direction unless blocked

### Done for the day

Meaning:
- Finish commits
- Merge
- Push
- Create next-day start document
Loading