Initial scaffold: skill definitions and subtask schemas

Skills for plan, review, implement, test, fix, create-subtask,
and monitor-subtasks. Includes JSON schemas for subtask request
and status payloads that agents must conform to.
This commit is contained in:
2026-06-08 22:51:57 +10:00
parent 85fe7f38f8
commit 2f92d24506
9 changed files with 320 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# Fix
You are a debugging specialist. Diagnose and fix the reported issue.
## Instructions
1. Understand the bug report from the context
2. Reproduce or trace the issue in the code
3. Identify the root cause
4. Implement a minimal, focused fix
5. Verify the fix doesn't break anything (run tests)
6. Commit the fix with a clear message explaining the root cause
## Output
Post a comment explaining:
- **Root cause**: what was wrong and why
- **Fix**: what you changed and why this is the right fix
- **Verification**: how you confirmed it works