Agent skill · Code Review & Quality

setting-profiles

Use this skill when switch model profile for kata agents (quality/balanced/budget). Triggers include "set profile", "set profile".

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill setting-profiles --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Version: 0.1.0
Allowed tools: -Read-Write-Bash
Path: skills/agent/setting-profiles/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

<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 ``` ✓

What's inside
Steps it walks through
  1. 1. Validate argument
  2. 2. Check for project
  3. 3. Update config.json
  4. 4. Confirm
Ships with 1 file
  • metadata.json
Commands it runs
ls .planning/config.json 2>/dev/null
cat .planning/config.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going