<< All versions
Skill v1.0.1
currentAutomated scan100/100bezael/ai-workflow-kit/plan
+4 new
──Details
PublishedJuly 3, 2026 at 11:10 AM
Content Hashsha256:0189c9cf5d812724...
Git SHA32c2db0c2ff4
Bump Typepatch
──Files
Files (1 file, 2.0 KB)
SKILL.md2.0 KBactive
SKILL.md · 68 lines · 2.0 KB
version: "1.0.1" name: ak:plan description: Plan before executing. Use when task touches 3+ files, requires new folder structure, involves DB or API changes, or has step dependencies. Waits for approval before writing code. disable-model-invocation: true argument-hint: <task description>
Skill: /plan
Plan before executing. For complex tasks that touch multiple files or require architecture decisions.
Task to plan
$ARGUMENTS
Steps
- Understand the goal: Read the user's task. If ambiguous, ask ONE clarifying question before continuing.
_Done when: the goal fits in one sentence._
- Explore the relevant codebase:
- Read files related to the task
- Identify existing patterns (how something similar is already done)
- Detect dependencies and risks
_Done when: every file that will change has been read._
- Propose a structured plan:
markdown
## Plan: [task name]### Goal[One line describing what will be achieved]### Files to be touched-`path/file.ts` — [what change]-`path/other.ts` — [what change]-[new] `path/new.ts` — [what it does]### Steps in order1.[First concrete step]2.[Second step]3.[...]### Risks / decisions-[Risk or trade-off the user should know about]-[Alternative considered and why it wasn't chosen]### Not included in this plan-[What's out of scope and why]
- Wait for approval before executing any changes.
_Done when: user explicitly approves ("go ahead", "looks good", etc.)._
- Mark the ticket InProgress: if the task is linked to an issue or ticket, mark it as
in_progressnow — before writing any code.
- Execute the plan exactly as approved. If you discover something that changes the plan, stop and report.
- After implementation: run
/ak:reviewon the changed files before considering the task complete.
Rules
- A plan is a contract. Execute exactly what was approved.
- Prefer small iterative plans over large complete ones.
- One clarifying question max — don't interview the user.