Agent skill
cook
(ePost) Use when user says "implement", "build", "add a feature", "cook", "make this work", or "continue the plan" — dispatches platform-aware feature implementation for web, iOS, Android, or backend
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/cook-klara-copilot-epost-agent-kit
Metadata
Additional technical details for this skill
- argument hint
- [feature description or plan file]
SKILL.md
Cook — Unified Implementation Command
Implement features with automatic platform detection.
Step 0 — Active Plan Resolution (when args are empty)
If $ARGUMENTS is empty, resolve the active plan before asking the user for a task:
- Run:
node .claude/scripts/get-active-plan.cjs - If result ≠
none: read the plan'splan.md, identify the first phase withstatus: pending, and implement it — no need to ask the user what to do. - If result =
none: scanplans/*/plan.mdfor the most recently created plan withstatus: pending(plans just created by/planthat haven't been activated yet). Sort by directory name descending; take the first match. - If still nothing: ask the user for a task description.
When a plan is found via step 3 (frontmatter scan), run node .claude/scripts/set-active-plan.cjs <plan-dir> to activate it before proceeding.
Step 1 — Flag Override
If $ARGUMENTS starts with --fast: skip auto-detection, load references/fast-mode.md and execute directly. Remaining args are the task description.
If $ARGUMENTS starts with --parallel: skip auto-detection, load references/parallel-mode.md and execute directly. Remaining args are the task description.
Otherwise: continue to Platform Detection.
Aspect Files
| File | Purpose |
|---|---|
references/fast-mode.md |
Direct implementation — skip plan question, implement immediately |
references/parallel-mode.md |
Parallel implementation for multi-module features |
Platform Detection
Detect platform per skill-discovery protocol.
Complexity → Variant
- Single file or clear task → fast (skip plan question)
- Multi-file, one module → fast
- Multi-module or unknowns → parallel
- Has existing plan in ./plans/ → follow plan
- Plan with 3+ independent tasks → consider subagent-driven mode (see
subagent-driven-developmentskill)
Execution
Route to the detected platform agent with feature description and platform context.
$ARGUMENTS
IMPORTANT: Analyze the skills catalog and activate the skills needed for the detected platform.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?