Structured development workflow with Plan/Implement/Review phases, QA validation, context management, and audit requirements. Enforces no remote writes, mandatory checkpoints, and verifiable audit reports. Use when working on complex tasks, multi-file changes, or when the user mentions planning, workflow, implementing features, or needs structured development guidance.
Follow this three-phase approach for all non-trivial work:
- DON'T DO THIS:
User: "Can you add authentication?"
AI: [Immediately starts coding without discussion]
+ DO THIS INSTEAD:
User: "Can you add authentication?"
AI: "Let me design a solution first. Key decisions needed:
- OAuth 2.0 vs local authentication?
- JWT tokens vs session-based?
- User data storage location?
Let's agree on the approach before I write any code."
Why This Matters:
| Level | Type | Workflow | Example | |-------|------|----------|---------| | 1 | Simple | Direct implementation → Quick review | Fix typo, simple bug fix | | 2 | Moderate | Brief plan → QA → Implement → Review | Add new function | | 3 | Complex | Full Plan → Creative → QA → Implement → Review | Multi-file feature | | 4 | Architectural | Detailed Plan → Creative (mandatory) → QA → Implement → Review | Major refactoring |
You MUST NOT begin implementation until:
Process:
Key Questions:
Implementation Gate Checks:
Constraints:
Process:
For audit requirements including no remote writes, checkpoint management, and audit reports, see references/audit-requirements.md.
For detailed context management and QA validation, see references/context-management.md.
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