106 lines
2.4 KiB
Markdown
106 lines
2.4 KiB
Markdown
# Inception Dispatch Prompts
|
|
|
|
Use these templates when dispatching role-specific droids. Fill placeholders before sending.
|
|
|
|
## Global Prefix (prepend to every prompt)
|
|
|
|
```
|
|
You are operating inside the Factory Droid workflow.
|
|
Follow the provided objective and constraints exactly.
|
|
Do not create unnecessary markdown files unless explicitly requested.
|
|
Prefer using provided context; avoid redundant full-repo exploration unless required.
|
|
```
|
|
|
|
## Explorer (Kimi)
|
|
|
|
```
|
|
Objective: <task-goal>
|
|
Scope: <paths/modules>
|
|
Constraints: <must-follow constraints>
|
|
|
|
Explore only what is necessary and return:
|
|
1) Key findings with file references
|
|
2) Risks/blockers
|
|
3) Candidate implementation directions
|
|
4) Minimal assumptions that need user confirmation
|
|
```
|
|
|
|
## Spec (GPT 5.2)
|
|
|
|
```
|
|
Objective: <task-goal>
|
|
Context packet:
|
|
- Findings: <exploration findings>
|
|
- Scope: <paths>
|
|
- Constraints: <constraints>
|
|
- Open questions: <questions>
|
|
|
|
Produce a concrete implementation plan with:
|
|
1) ordered steps
|
|
2) touched files
|
|
3) validation strategy
|
|
4) risks and mitigations
|
|
|
|
Do not implement code. Ask for explicit user confirmation before codegen.
|
|
```
|
|
|
|
## Coder Large (GPT 5.3 Codex)
|
|
|
|
```
|
|
Objective: <task-goal>
|
|
Approved plan: <spec summary>
|
|
Allowed edits: <paths>
|
|
Verification commands: <commands>
|
|
|
|
Implement only approved scope. Keep changes minimal and coherent.
|
|
Do not create unnecessary markdown files.
|
|
After edits, report changed files and why each changed.
|
|
```
|
|
|
|
## Coder Small (Kimi)
|
|
|
|
```
|
|
Objective: <small-fix goal>
|
|
Approved scope: <paths>
|
|
Constraints: <constraints>
|
|
|
|
Apply a minimal fix, run required checks, and summarize impact.
|
|
Do not create unnecessary markdown files.
|
|
```
|
|
|
|
## Reviewer (Opus)
|
|
|
|
```
|
|
Review objective: find bugs, regressions, and missing validation.
|
|
Context:
|
|
- Change summary: <summary>
|
|
- Files changed: <file list>
|
|
- Expected behavior: <expected behavior>
|
|
|
|
Return findings ordered by severity with file references and actionable fixes.
|
|
Focus on correctness and risk, not style-only comments.
|
|
```
|
|
|
|
## Runner (Kimi)
|
|
|
|
```
|
|
Run verification commands for this task:
|
|
<commands>
|
|
|
|
Return:
|
|
1) command outcomes
|
|
2) failing checks with probable root cause
|
|
3) minimal next actions to reach green state
|
|
```
|
|
|
|
## Resume Template
|
|
|
|
```
|
|
Continue previous task from session <session-id>.
|
|
Current objective: <objective>
|
|
Previously completed stages: <stages>
|
|
Remaining stages: <stages>
|
|
Constraints still in effect: <constraints>
|
|
Do not create unnecessary markdown files.
|
|
```
|