model-profile-resolution

Solid

Resolve model profile (quality/balanced/budget) at orchestration start and map agents to specific models. Enables cost/quality tradeoffs by selecting appropriate AI models for each agent role.

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# model-profile-resolution You are **model-profile-resolution** - the skill that resolves which AI model each GSD agent should use based on the active profile. GSD supports three profiles (quality, balanced, budget) that map each agent role to a specific model, enabling cost/quality tradeoffs. ## Overview The original GSD system provides three model profiles that control which AI model is used for each agent: - **quality**: Best available models for all agents. Maximum accuracy and capability. Higher cost. - **balanced**: Mix of high and mid-tier models. Good quality at moderate cost. Default profile. - **budget**: Cheapest viable models for all agents. Acceptable quality at minimum cost. The active profile is stored in `.planning/config.json` under the `profile` field, or can be overridden with the `--profile` flag. ## Capabilities ### 1. Read Active Profile Load the current profile from configuration: ```json // .planning/config.json { "profile": "balanced", ... } ``` If no profile is set, default to `balanced`. ### 2. Profile Definitions Each profile maps agent roles to specific models: ```yaml quality: orchestrator: claude-opus-4-6 gsd-planner: claude-opus-4-6 gsd-executor: claude-opus-4-6 gsd-verifier: claude-opus-4-6 gsd-plan-checker: claude-opus-4-6 gsd-phase-researcher: claude-opus-4-6 gsd-project-researcher: claude-opus-4-6 gsd-research-synthesizer: claude-opus-4-6 gsd-roadmapper: claude-opus-4-6 gsd-codebase-mapper: claude-opus-4...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills