model-management
CLI commands to add, update, list, and deprecate AI models in the database. Triggers on "add model", "new model", "update model", "deprecate model", "model pricing", "model cli".
npx skills add majiayu000/claude-skill-registry --skill model-management-planetaryescape-blah-chat --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.
# Model Management CLI Manage AI models directly in the database via CLI commands. No UI interaction required. ## Commands ### Add a new model ```bash bun run model:add --json '{ "modelId": "openai:gpt-6", "provider": "openai", "name": "GPT-6", "contextWindow": 200000, "inputCost": 2.5, "outputCost": 10, "capabilities": ["vision", "function-calling"], "status": "active", "userFriendlyDescription": "Next generation GPT with advanced capabilities", "bestFor": "Complex reasoning, research, advanced multimodal tasks", "knowledgeCutoff": "January 2026" }' ``` ### List models ```bash # All models bun run model:list # Filter by provider bun run model:list --provider openai bun run model:list --provider anthropic # Filter by status bun run model:list --status active bun run model:list --status deprecated bun run model:list --status beta ``` ### Get a single model ```bash bun run model:get --id "openai:gpt-5" ``` ### Update model ```bash # Update pricing bun run model:update --id "openai:gpt-5" --json '{"inputCost": 2.0, "outputCost": 8.0}' # Update with reason bun run model:update --id "openai:gpt-5" --json '{"inputCost": 2.0}' --reason "Price reduction announced" # Update multiple fields
- Commands
- Add a new model
- List models
- Get a single model
- Update model
- Deprecate model
- Required Fields (for add)
- Optional Fields
- Full Example: Adding a New OpenAI Model
- Full Example: Adding a Free OpenRouter Model
- Reasoning Config Templates
- OpenAI (Reasoning Effort API)
- Anthropic (Extended Thinking)
- Google (Thinking Budget)
bun run model:add --json '{
All models
bun run model:list
Filter by provider
bun run model:list --provider openai
bun run model:list --provider anthropic
Filter by status
bun run model:list --status active
bun run model:list --status deprecated
bun run model:list --status betaWhat does the model-management skill do?
CLI commands to add, update, list, and deprecate AI models in the database. Triggers on "add model", "new model", "update model", "deprecate model", "model pricing", "model cli".
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill model-management-planetaryescape-blah-chat --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.
