{
  "$schema": "./schemas/agent-profile.schema.json",
  "contractVersion": "1.0.0",
  "version": "2024-11-24",
  "label": "AGI CLI profile manifest",
  "description": "Default profile definitions shipped with the CLI, including provider defaults and rulebook bindings.",
  "profiles": [
    {
      "name": "general",
      "label": "AGI",
      "description": "General-purpose operator with advanced reasoning across research, planning, writing, and coding tasks.",
      "defaultProvider": "anthropic",
      "defaultModel": "claude-sonnet-4-20250514",
      "temperature": 0.2,
      "systemPrompt": {
        "type": "rulebook",
        "template": "{{rulebook}}"
      },
      "rulebook": {
        "file": "agents/general.rules.json",
        "version": "2024-11-24",
        "contractVersion": "1.0.0",
        "description": "Structured rules governing the balanced AGI profile."
      }
    },
    {
      "name": "agi-code",
      "label": "AGI Code",
      "description": "Coding specialist with advanced reasoning capabilities.",
      "defaultProvider": "anthropic",
      "defaultModel": "claude-sonnet-4-20250514",
      "systemPrompt": {
        "type": "rulebook"
      },
      "rulebook": {
        "file": "agents/agi-code.rules.json",
        "version": "2024-11-24",
        "contractVersion": "1.0.0",
        "description": "Deterministic coding workflow guardrails."
      }
    }
  ]
}
