@gannonh/kata 1.1.2 → 1.1.4

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 (64) hide show
  1. package/agents/kata-entity-generator.md +1 -1
  2. package/commands/kata/adding-phases.md +20 -0
  3. package/commands/kata/adding-todos.md +20 -0
  4. package/commands/kata/auditing-milestones.md +20 -0
  5. package/commands/kata/checking-todos.md +20 -0
  6. package/commands/kata/completing-milestones.md +20 -0
  7. package/commands/kata/configuring-settings.md +20 -0
  8. package/commands/kata/debugging.md +20 -0
  9. package/commands/kata/discussing-phases.md +20 -0
  10. package/commands/kata/executing-phases.md +20 -0
  11. package/commands/kata/executing-quick-tasks.md +20 -0
  12. package/commands/kata/inserting-phases.md +20 -0
  13. package/commands/kata/listing-phase-assumptions.md +20 -0
  14. package/commands/kata/mapping-codebases.md +20 -0
  15. package/commands/kata/pausing-work.md +20 -0
  16. package/commands/kata/planning-milestone-gaps.md +20 -0
  17. package/commands/kata/planning-phases.md +20 -0
  18. package/commands/kata/providing-help.md +20 -0
  19. package/commands/kata/removing-phases.md +20 -0
  20. package/commands/kata/researching-phases.md +20 -0
  21. package/commands/kata/resuming-work.md +20 -0
  22. package/commands/kata/setting-profiles.md +20 -0
  23. package/commands/kata/showing-whats-new.md +20 -0
  24. package/commands/kata/starting-milestones.md +20 -0
  25. package/commands/kata/starting-projects.md +20 -0
  26. package/commands/kata/tracking-progress.md +20 -0
  27. package/commands/kata/updating.md +20 -0
  28. package/commands/kata/verifying-work.md +20 -0
  29. package/package.json +3 -8
  30. package/skills/kata-adding-phases/SKILL.md +1 -1
  31. package/skills/kata-adding-todos/SKILL.md +1 -1
  32. package/skills/kata-auditing-milestones/SKILL.md +1 -1
  33. package/skills/kata-checking-todos/SKILL.md +1 -1
  34. package/skills/kata-completing-milestones/SKILL.md +1 -1
  35. package/skills/kata-configuring-settings/SKILL.md +1 -1
  36. package/skills/kata-debugging/SKILL.md +1 -1
  37. package/skills/kata-discussing-phases/SKILL.md +1 -1
  38. package/skills/kata-executing-phases/SKILL.md +1 -1
  39. package/skills/kata-executing-quick-tasks/SKILL.md +1 -1
  40. package/skills/kata-inserting-phases/SKILL.md +1 -1
  41. package/skills/kata-listing-phase-assumptions/SKILL.md +1 -1
  42. package/skills/kata-mapping-codebases/SKILL.md +1 -1
  43. package/skills/kata-pausing-work/SKILL.md +1 -1
  44. package/skills/kata-planning-milestone-gaps/SKILL.md +1 -1
  45. package/skills/kata-planning-phases/SKILL.md +1 -1
  46. package/skills/kata-providing-help/SKILL.md +1 -1
  47. package/skills/kata-removing-phases/SKILL.md +1 -1
  48. package/skills/kata-researching-phases/SKILL.md +1 -1
  49. package/skills/kata-resuming-work/SKILL.md +1 -1
  50. package/skills/kata-setting-profiles/SKILL.md +1 -1
  51. package/skills/kata-showing-whats-new/SKILL.md +1 -1
  52. package/skills/kata-starting-milestones/SKILL.md +3 -3
  53. package/skills/kata-starting-projects/SKILL.md +1 -1
  54. package/skills/kata-tracking-progress/SKILL.md +1 -1
  55. package/skills/kata-updating/SKILL.md +2 -2
  56. package/skills/kata-verifying-work/SKILL.md +1 -1
  57. package/LICENSE +0 -22
  58. package/README.md +0 -600
  59. package/hooks/dist/kata-check-update.js +0 -70
  60. package/hooks/dist/kata-npm-statusline.js +0 -100
  61. package/hooks/dist/kata-plugin-statusline.js +0 -91
  62. package/hooks/dist/kata-setup-statusline.js +0 -85
  63. package/hooks/dist/kata-statusline.js +0 -100
  64. package/kata/VERSION +0 -1
@@ -8,7 +8,7 @@ color: cyan
8
8
  <role>
9
9
  You are a Kata entity generator. You create semantic documentation for source files that captures PURPOSE (what the code does and why it exists), not just syntax.
10
10
 
11
- You are spawned by `/kata:analyze-codebase` with a list of file paths.
11
+ You are spawned by `/kata:mapping-codebases` with a list of file paths.
12
12
 
13
13
  Your job: Read each file, analyze its purpose, write entity markdown to `.planning/intel/entities/`, return statistics only.
14
14
  </role>
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:adding-phases
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:adding-todos
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:auditing-milestones
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:checking-todos
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:completing-milestones
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:configuring-settings
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:debugging
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:discussing-phases
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:executing-phases
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:executing-quick-tasks
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-quick-tasks")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:inserting-phases
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:listing-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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:mapping-codebases
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:pausing-work
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:planning-milestone-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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:planning-phases
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:providing-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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:removing-phases
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:researching-phases
3
+ description: Research how to implement a phase (standalone - usually use /kata:planning-phases 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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:resuming-work
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:setting-profiles
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:showing-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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:starting-milestones
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:starting-projects
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:tracking-progress
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:updating
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")`
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: kata:verifying-work
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")`
package/package.json CHANGED
@@ -1,17 +1,11 @@
1
1
  {
2
2
  "name": "@gannonh/kata",
3
- "version": "1.1.2",
3
+ "version": "1.1.4",
4
4
  "type": "module",
5
5
  "description": "Spec-driven development framework for Claude Code.",
6
6
  "scripts": {
7
- "test": "node --test --test-reporter spec ./tests/build.test.js",
8
7
  "test:smoke": "node --test --test-reporter spec ./tests/smoke.test.js",
9
- "test:all": "node --test --test-reporter spec ./tests/build.test.js ./tests/smoke.test.js",
10
- "build": "node scripts/build.js all",
11
- "build:plugin": "node scripts/build.js plugin",
12
- "build:npm": "node scripts/build.js npm",
13
- "build:hooks": "node scripts/build-hooks.cjs",
14
- "prepublishOnly": "npm run build:hooks"
8
+ "test:all": "node --test --test-reporter spec ./tests/build.test.js ./tests/smoke.test.js"
15
9
  },
16
10
  "bin": {
17
11
  "kata": "bin/install.js"
@@ -21,6 +15,7 @@
21
15
  "bin",
22
16
  "kata",
23
17
  "agents",
18
+ "commands",
24
19
  "hooks",
25
20
  "skills"
26
21
  ],
@@ -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: true
5
+ user-invocable: false
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: true
5
+ user-invocable: false
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: true
5
+ user-invocable: false
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: true
5
+ user-invocable: false
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: true
5
+ user-invocable: false
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: true
5
+ user-invocable: false
6
6
  disable-model-invocation: false
7
7
  allowed-tools:
8
8
  - Read