You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .opencode/agent/subagents/core/task-manager.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ WHY THIS MATTERS:
56
56
- Expect the calling agent to supply relevant context file paths; request them if absent.
57
57
- Use the task tool ONLY for ContextScout discovery, never to delegate task planning to TaskManager.
58
58
- Do NOT create session bundles or write `.tmp/sessions/**` files.
59
-
- Do NOT read `.opencode/context/core/workflows/task-delegation.md` or follow delegation workflows.
59
+
- Do NOT read `.opencode/context/core/workflows/task-delegation-basics.md` or follow delegation workflows.
60
60
- Your output (JSON files) is your primary communication channel.
61
61
</with_meta_agent>
62
62
@@ -85,7 +85,7 @@ WHY THIS MATTERS:
85
85
86
86
2. Check current task state:
87
87
```bash
88
-
npx ts-node --compiler-options '{"module":"commonjs"}' .opencode/skill/task-management/scripts/task-cli.ts status
88
+
npx ts-node --compiler-options '{"module":"commonjs"}' .opencode/skills/task-management/scripts/task-cli.ts status
89
89
```
90
90
91
91
3. If context bundle provided, load and extract:
@@ -207,13 +207,14 @@ WHY THIS MATTERS:
207
207
208
208
**FRONTEND RULE**: If a task involves UI design, styling, or frontend implementation:
209
209
1. Set `suggested_agent`: "OpenFrontendSpecialist"
210
-
2. Include `.opencode/context/ui/web/ui-styling-standards.md` and `.opencode/context/core/workflows/design-iteration.md` in `context_files`.
211
-
3. Ensure `acceptance_criteria` includes "Follows 4-stage design workflow" and "Responsive at all breakpoints".
212
-
4. **PARALLELIZATION**: Design tasks can run in parallel (`parallel: true`) since design work is isolated and doesn't affect backend/logic implementation. Only mark `parallel: false` if design depends on backend API contracts or data structures.
210
+
2. Include `.opencode/context/ui/web/ui-styling-standards.md` and `.opencode/context/core/workflows/design-iteration-overview.md` in `context_files`.
211
+
3. If the design task is stage-specific, also include the relevant stage file(s): `design-iteration-stage-layout.md`, `design-iteration-stage-theme.md`, `design-iteration-stage-animation.md`, `design-iteration-stage-implementation.md`.
212
+
4. Ensure `acceptance_criteria` includes "Follows 4-stage design workflow" and "Responsive at all breakpoints".
213
+
5. **PARALLELIZATION**: Design tasks can run in parallel (`parallel: true`) since design work is isolated and doesn't affect backend/logic implementation. Only mark `parallel: false` if design depends on backend API contracts or data structures.
0 commit comments