gannonh/kata-skills

kata-set-profile

Switch model profile for kata agents (quality/balanced/budget). Triggers include "set profile", "set profile".

First seen Feb 6, 2026

Installation

$ npx skills add gannonh/kata-skills --skill kata-set-profile

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from gannonh/kata-skills · top by installs.

npx skills add gannonh/kata-skills

Browse all from gannonh/kata-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.6.1
More metadata
version
1.6.1

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,217 B
  • docs SUMMARY.md 134 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 23 installs

SKILL.md

<objective> Switch the model profile used by Kata agents. This controls which Claude model each agent uses, balancing quality vs token spend. </objective>

<profiles>

Profile Description
quality Opus everywhere except read-only verification
balanced Opus for planning, Sonnet for execution/verification (default)
budget Sonnet for writing, Haiku for research/verification

</profiles>

<process>

1. Validate argument

if $ARGUMENTS.profile not in ["quality", "balanced", "budget"]:
  Error: Invalid profile "$ARGUMENTS.profile"
  Valid profiles: quality, balanced, budget
  STOP

2. Check for project

ls .planning/config.json 2>/dev/null

If no .planning/ directory:

Error: No Kata project found.
Run /kata-new-project first to initialize a project.

3. Update config.json

Read current config:

cat .planning/config.json

Update model_profile field (or add if missing):

{
  "model_profile": "$ARGUMENTS.profile"
}

Write updated config back to .planning/config.json.

4. Confirm

✓ Model profile set to: $ARGUMENTS.profile

Agents will now use:
[Show table from model-profiles.md for selected profile]

Next spawned agents will use the new profile.

</process>

<examples>

Switch to budget mode:

/kata-set-profile budget

✓ Model profile set to: budget

Agents will now use:
| Agent         | Model  |
| ------------- | ------ |
| kata-planner  | sonnet |
| kata-executor | sonnet |
| kata-verifier | haiku  |
| ...           | ...    |

Switch to quality mode:

/kata-set-profile quality

✓ Model profile set to: quality

Agents will now use:
| Agent         | Model  |
| ------------- | ------ |
| kata-planner  | opus   |
| kata-executor | opus   |
| kata-verifier | sonnet |
| ...           | ...    |

</examples>