kata-set-profile
Original:🇺🇸 English
Translated
Switch model profile for kata agents (quality/balanced/budget). Triggers include "set profile", "set profile".
16installs
Sourcegannonh/kata-skills
Added on
NPX Install
npx skill4agent add gannonh/kata-skills kata-set-profileTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →<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>
</process>
<examples>
</examples>
1. Validate argument
if $ARGUMENTS.profile not in ["quality", "balanced", "budget"]:
Error: Invalid profile "$ARGUMENTS.profile"
Valid profiles: quality, balanced, budget
STOP2. Check for project
bash
ls .planning/config.json 2>/dev/nullIf no directory:
.planning/Error: No Kata project found.
Run /kata-new-project first to initialize a project.3. Update config.json
Read current config:
bash
cat .planning/config.jsonUpdate field (or add if missing):
model_profilejson
{
"model_profile": "$ARGUMENTS.profile"
}Write updated config back to .
.planning/config.json4. 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.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 |
| ... | ... |