ALWAYS activate this skill before implementing EVERY feature, plan, or fix.
End-to-end feature implementation with smart intent detection.
Copy the cook/ folder to your Gemini skills directory:
cp -r cook ~/.gemini/skills/
skill:cook <natural language task OR plan path>
The skill automatically detects your intent and routes to the appropriate workflow.
# Interactive mode (default)
skill:cook implement user authentication
# Execute existing plan
skill:cook plans/260120-auth
# Fast mode (skip research)
skill:cook quick fix for login bug
skill:cook implement feature --fast
# Auto mode (trust me bro)
skill:cook implement dashboard trust me
skill:cook implement feature --auto
# Parallel mode (multi-agent)
skill:cook implement auth, payments, notifications
skill:cook implement feature --parallel
# No-test mode
skill:cook implement feature --no-test
| Mode | Research | Testing | Review | Use Case | |------|----------|---------|--------|----------| | interactive | ✓ | ✓ | User approval | Default, full control | | auto | ✓ | ✓ | Auto if score≥9.5 | Trusted, hands-off | | fast | ✗ | ✓ | Simplified | Quick fixes | | parallel | Optional | ✓ | User approval | Multi-feature work | | no-test | ✓ | ✗ | User approval | Speed priority | | code | ✗ | ✓ | User approval | Existing plans |
The skill detects mode from:
--fast, --auto, --parallel, --no-test./plans/*, plan.md, phase-*.md[Intent Detection] → [Research?] → [Plan] → [Implement] → [Test?] → [Review] → [Finalize]
cook/
├── SKILL.md # Main skill definition
├── README.md # This file
└── references/
├── intent-detection.md # Detection rules
├── workflow-steps.md # Step definitions
├── review-cycle.md # Review process
└── subagent-patterns.md # Subagent usage
2.1.0 - Review gates added for human-in-the-loop mode 2.0.0 - Smart intent detection (hybrid approach)
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer