@gannonh/kata 1.0.8 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/package.json +1 -2
  2. package/skills/kata-adding-phases/SKILL.md +1 -1
  3. package/skills/kata-adding-todos/SKILL.md +1 -1
  4. package/skills/kata-auditing-milestones/SKILL.md +1 -1
  5. package/skills/kata-checking-todos/SKILL.md +1 -1
  6. package/skills/kata-completing-milestones/SKILL.md +1 -1
  7. package/skills/kata-configuring-settings/SKILL.md +1 -1
  8. package/skills/kata-debugging/SKILL.md +1 -1
  9. package/skills/kata-discussing-phases/SKILL.md +1 -1
  10. package/skills/kata-executing-phases/SKILL.md +1 -1
  11. package/skills/kata-executing-quick-tasks/SKILL.md +2 -2
  12. package/skills/kata-inserting-phases/SKILL.md +1 -1
  13. package/skills/kata-listing-phase-assumptions/SKILL.md +1 -1
  14. package/skills/kata-mapping-codebases/SKILL.md +1 -1
  15. package/skills/kata-pausing-work/SKILL.md +1 -1
  16. package/skills/kata-planning-milestone-gaps/SKILL.md +1 -1
  17. package/skills/kata-planning-phases/SKILL.md +1 -1
  18. package/skills/kata-providing-help/SKILL.md +1 -1
  19. package/skills/kata-removing-phases/SKILL.md +1 -1
  20. package/skills/kata-researching-phases/SKILL.md +1 -1
  21. package/skills/kata-resuming-work/SKILL.md +1 -1
  22. package/skills/kata-setting-profiles/SKILL.md +1 -1
  23. package/skills/kata-showing-whats-new/SKILL.md +1 -1
  24. package/skills/kata-starting-milestones/SKILL.md +1 -1
  25. package/skills/kata-starting-projects/SKILL.md +1 -1
  26. package/skills/kata-tracking-progress/SKILL.md +1 -1
  27. package/skills/kata-updating/SKILL.md +1 -1
  28. package/skills/kata-verifying-work/SKILL.md +1 -1
  29. package/commands/kata/help.md +0 -20
  30. package/commands/kata/issue-debug.md +0 -20
  31. package/commands/kata/milestone-audit.md +0 -20
  32. package/commands/kata/milestone-complete.md +0 -20
  33. package/commands/kata/milestone-new.md +0 -20
  34. package/commands/kata/milestone-plan-gaps.md +0 -20
  35. package/commands/kata/models-config.md +0 -20
  36. package/commands/kata/phase-add.md +0 -20
  37. package/commands/kata/phase-assumptions.md +0 -20
  38. package/commands/kata/phase-discuss.md +0 -20
  39. package/commands/kata/phase-execute.md +0 -20
  40. package/commands/kata/phase-insert.md +0 -20
  41. package/commands/kata/phase-pause.md +0 -20
  42. package/commands/kata/phase-plan.md +0 -20
  43. package/commands/kata/phase-remove.md +0 -20
  44. package/commands/kata/phase-research.md +0 -20
  45. package/commands/kata/phase-resume.md +0 -20
  46. package/commands/kata/phase-verify.md +0 -20
  47. package/commands/kata/project-analyze.md +0 -20
  48. package/commands/kata/project-new.md +0 -20
  49. package/commands/kata/project-status.md +0 -20
  50. package/commands/kata/settings-config.md +0 -20
  51. package/commands/kata/task-execute.md +0 -20
  52. package/commands/kata/todos-add.md +0 -20
  53. package/commands/kata/todos-list.md +0 -20
  54. package/commands/kata/update.md +0 -20
  55. package/commands/kata/whats-new.md +0 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gannonh/kata",
3
- "version": "1.0.8",
3
+ "version": "1.1.0",
4
4
  "type": "module",
5
5
  "description": "Spec-driven development framework for Claude Code.",
6
6
  "scripts": {
@@ -13,7 +13,6 @@
13
13
  "files": [
14
14
  "README.md",
15
15
  "bin",
16
- "commands",
17
16
  "kata",
18
17
  "agents",
19
18
  "hooks",
@@ -2,7 +2,7 @@
2
2
  name: kata-adding-phases
3
3
  description: Use this skill to add planned work discovered during execution to the end of the current milestone in the roadmap. This skill appends sequential phases to the current milestone's phase list, automatically calculating the next phase number. Triggers include "add phase", "append phase", "new phase", and "create phase". This skill updates ROADMAP.md and STATE.md accordingly.
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-adding-todos
3
3
  description: Use this skill to capture an idea, task, or issue that surfaces during a Kata session as a structured todo for later work. This skill creates markdown todo files in the .planning/todos/pending directory with relevant metadata and content extracted from the conversation. Triggers include "add todo", "capture todo", "new todo", and "create todo".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-auditing-milestones
3
3
  description: Use this skill to verify milestone achievement against its definition of done, checking requirements coverage, cross-phase integration, and end-to-end flows. Triggers include "audit milestone", "verify milestone", "check milestone", and "milestone audit". This skill reads existing phase verification files, aggregates technical debt and gaps, and spawns an integration checker for cross-phase wiring.
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-checking-todos
3
3
  description: Use this skill when reviewing pending todos, selecting a todo to work on, filtering todos by area, or deciding what to work on next. Triggers include "check todos", "list todos", "what todos", "pending todos", "show todos", "view todos", and "select todo to work on".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-completing-milestones
3
3
  description: Use this skill when archiving a completed milestone, preparing for the next version, marking a milestone complete, shipping a version, or wrapping up milestone work. Triggers include "complete milestone", "finish milestone", "archive milestone", "ship version", "mark milestone done", and "milestone complete".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-configuring-settings
3
3
  description: Use this skill when configure kata workflow toggles and model profile. Triggers include "settings".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-debugging
3
3
  description: Use this skill when systematically debugging issues, investigating bugs, troubleshooting problems, or tracking down errors with persistent state across context resets. Triggers include "debug", "investigate bug", "troubleshoot", "find the problem", "why isn't this working", and "debug session".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-discussing-phases
3
3
  description: Use this skill when gathering phase context through adaptive questioning before planning, clarifying implementation decisions, or exploring gray areas for a phase. Triggers include "discuss phase", "clarify phase", "gather context", "what are the gray areas", and "phase discussion".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-executing-phases
3
3
  description: Use this skill when executing all plans in a phase with wave-based parallelization, running phase execution, or completing phase work. Triggers include "execute phase", "run phase", "execute plans", "run the phase", and "phase execution".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -1,8 +1,8 @@
1
1
  ---
2
- name: kata-executing-task-executes
2
+ name: kata-executing-quick-tasks
3
3
  description: Use this skill when executing small ad-hoc tasks with Kata guarantees, running quick tasks without full planning, or handling one-off work outside the roadmap. Triggers include "quick task", "quick mode", "quick fix", "ad-hoc task", "small task", and "one-off task".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-inserting-phases
3
3
  description: Use this skill when inserting urgent work as a decimal phase between existing phases, adding mid-milestone work, or creating intermediate phases. Triggers include "insert phase", "add urgent phase", "create decimal phase", "insert between phases", and "urgent work".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-listing-phase-assumptions
3
3
  description: Use this skill when surfacing Claude's assumptions about a phase approach before planning, checking what Claude thinks, or validating understanding before planning. Triggers include "list assumptions", "what are you thinking", "show assumptions", "phase assumptions", and "what's the plan".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-mapping-codebases
3
3
  description: Use this skill when analyzing an existing codebase with parallel mapper agents, creating codebase documentation, understanding brownfield projects, or mapping code structure. Triggers include "map codebase", "analyze codebase", "document codebase", "understand code", and "codebase map".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-pausing-work
3
3
  description: Use this skill when creating a context handoff file, pausing work mid-phase, stopping work temporarily, or creating a checkpoint for session resumption. Triggers include "pause work", "stop work", "create handoff", "save progress", and "pause session".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-planning-milestone-gaps
3
3
  description: Use this skill when create phases to close all gaps identified by milestone audit. Triggers include "plan milestone gaps", "plan gaps".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-planning-phases
3
3
  description: Use this skill when create detailed execution plan for a phase (plan.md) with verification loop. Triggers include "plan phase", "plan phase".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-providing-help
3
3
  description: Use this skill when showing available Kata commands, displaying the usage guide, explaining command reference, or when the user asks for help with Kata. Triggers include "help", "show commands", "list commands", "what commands", "kata commands", and "usage guide".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-removing-phases
3
3
  description: Use this skill when remove a future phase from roadmap and renumber subsequent phases. Triggers include "remove phase", "remove phase".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-researching-phases
3
3
  description: Use this skill when researching how to implement a phase standalone, investigating implementation approaches before planning, or re-researching after planning is complete. Triggers include "research phase", "investigate phase", "how to implement", "research implementation", and "phase research".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-resuming-work
3
3
  description: Use this skill when resuming work from a previous session, restoring context after a break, continuing work after /clear, or picking up where you left off. Triggers include "resume work", "continue work", "pick up where I left off", "restore context", and "resume session".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-setting-profiles
3
3
  description: Use this skill when switch model profile for kata agents (quality/balanced/budget). Triggers include "set profile", "set profile".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-showing-whats-new
3
3
  description: Use this skill when showing what's new in Kata since the installed version, displaying changelog entries, checking for Kata updates, or reviewing recent changes. Triggers include "what's new", "whats new", "show changes", "changelog", "recent changes", and "what changed".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-starting-milestones
3
3
  description: Use this skill when starting a new milestone cycle, beginning the next version, creating a new milestone, or planning what's next after completing a milestone. Triggers include "new milestone", "start milestone", "next milestone", "create milestone", and "milestone cycle".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-starting-projects
3
3
  description: Use this skill when initialize a new project with deep context gathering and project.md. Triggers include "new project", "start project", "initialize project", "create project", "begin project", "setup project".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-tracking-progress
3
3
  description: Use this skill when check project progress, show context, and route to next action (execute or plan). Triggers include "progress".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-updating
3
3
  description: Use this skill when update kata to latest version with changelog display. Triggers include "update".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -2,7 +2,7 @@
2
2
  name: kata-verifying-work
3
3
  description: Use this skill when validating built features through conversational testing, running UAT, user acceptance testing, checking if features work, or verifying implementation. Triggers include "verify work", "test features", "UAT", "user testing", "check if it works", and "validate features".
4
4
  version: 0.1.0
5
- user-invocable: false
5
+ user-invocable: true
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:help
3
- description: Show available Kata commands and usage guide
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-providing-help")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:issue-debug
3
- description: Systematic debugging with persistent state across context resets
4
- argument-hint: [issue description]
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-debugging")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:milestone-audit
3
- description: Audit milestone completion against original intent before archiving
4
- argument-hint: [version]
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-auditing-milestones")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:milestone-complete
3
- description: Archive completed milestone and prepare for next version
4
- argument-hint: <version>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-completing-milestones")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:milestone-new
3
- description: Start a new milestone cycle — update PROJECT.md and route to requirements
4
- argument-hint: [milestone name, e.g., 'v1.1 Notifications']
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-starting-milestones")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:milestone-plan-gaps
3
- description: Create phases to close all gaps identified by milestone audit
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-planning-milestone-gaps")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:models-config
3
- description: Switch model profile for Kata agents (quality/balanced/budget)
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-setting-profiles")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-add
3
- description: Add phase to end of current milestone in roadmap
4
- version: 0.1.0
5
- argument-hint: <description>
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Phase Description: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill to add the phase:
20
- `Skill("kata-adding-phases")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-assumptions
3
- description: Surface Claude's assumptions about a phase approach before planning
4
- argument-hint: [phase]
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-listing-phase-assumptions")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-discuss
3
- description: Gather phase context through adaptive questioning before planning
4
- argument-hint: <phase>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-discussing-phases")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-execute
3
- description: Execute all plans in a phase with wave-based parallelization
4
- argument-hint: <phase-number> [--gaps-only]
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-executing-phases")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-insert
3
- description: Insert urgent work as decimal phase (e.g., 72.1) between existing phases
4
- argument-hint: <after> <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-inserting-phases")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-pause
3
- description: Create context handoff when pausing work mid-phase
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-pausing-work")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-plan
3
- description: Create detailed execution plan for a phase (PLAN.md) with verification loop
4
- argument-hint: [phase] [--research] [--skip-research] [--gaps] [--skip-verify]
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-planning-phases")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-remove
3
- description: Remove a future phase from roadmap and renumber subsequent phases
4
- argument-hint: <phase-number>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-removing-phases")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-research
3
- description: Research how to implement a phase (standalone - usually use /kata:phase-plan instead)
4
- argument-hint: [phase]
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-researching-phases")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-resume
3
- description: Resume work from previous session with full context restoration
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-resuming-work")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:phase-verify
3
- description: Validate built features through conversational UAT
4
- argument-hint: [phase number, e.g., '4']
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-verifying-work")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:project-analyze
3
- description: Analyze codebase with parallel mapper agents to produce .planning/codebase/ documents
4
- argument-hint: [optional: specific area to map, e.g., 'api' or 'auth']
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-mapping-codebases")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:project-new
3
- description: Initialize a new project with deep context gathering and PROJECT.md
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-starting-projects")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:project-status
3
- description: Check project progress, show context, and route to next action (execute or plan)
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-tracking-progress")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:settings-config
3
- description: Configure Kata workflow toggles and model profile
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-configuring-settings")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:task-execute
3
- description: Execute a quick task with Kata guarantees (atomic commits, state tracking) but skip optional agents
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-executing-task-executes")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:todos-add
3
- description: Capture idea or task as todo from current conversation context
4
- argument-hint: [optional description]
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-adding-todos")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:todos-list
3
- description: List pending todos and select one to work on
4
- argument-hint: [area filter]
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-checking-todos")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:update
3
- description: Update Kata to latest version with changelog display
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-updating")`
@@ -1,20 +0,0 @@
1
- ---
2
- name: kata:whats-new
3
- description: See what's new in Kata since your installed version
4
- argument-hint: <description>
5
- version: 0.1.0
6
- disable-model-invocation: true
7
- allowed-tools:
8
- - Read
9
- - Write
10
- - Bash
11
- ---
12
-
13
- ## Step 1: Parse Context
14
-
15
- Arguments: "$ARGUMENTS"
16
-
17
- ## Step 2: Invoke Skill
18
-
19
- Run the following skill:
20
- `Skill("kata-showing-whats-new")`