setting-profiles
Use this skill when switch model profile for kata agents (quality/balanced/budget). Triggers include "set profile", "set profile".
npx skills add majiayu000/claude-skill-registry --skill setting-profiles --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
<user_command>/kata:set-profile</user_command> <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 ```bash 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: ```bash cat .planning/config.json ``` Update `model_profile` field (or add if missing): ```json { "model_profile": "$ARGUMENTS.profile" } ``` Write updated config back to `.planning/config.json`. ## 4. Confirm ``` ✓
- 1. Validate argument
- 2. Check for project
- 3. Update config.json
- 4. Confirm
ls .planning/config.json 2>/dev/null cat .planning/config.json
What does the setting-profiles skill do?
Use this skill when switch model profile for kata agents (quality/balanced/budget). Triggers include "set profile", "set profile".
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill setting-profiles --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
