| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717 |
- {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "$id": "https://github.com/charmbracelet/crush/internal/config/config",
- "$ref": "#/$defs/Config",
- "$defs": {
- "Attribution": {
- "properties": {
- "trailer_style": {
- "type": "string",
- "enum": [
- "none",
- "co-authored-by",
- "assisted-by"
- ],
- "description": "Style of attribution trailer to add to commits",
- "default": "assisted-by"
- },
- "co_authored_by": {
- "type": "boolean",
- "description": "Deprecated: use trailer_style instead",
- "deprecated": true
- },
- "generated_with": {
- "type": "boolean",
- "description": "Add Generated with Crush line to commit messages and issues and PRs",
- "default": true
- }
- },
- "additionalProperties": false,
- "type": "object"
- },
- "Completions": {
- "properties": {
- "max_depth": {
- "type": "integer",
- "description": "Maximum depth for the ls tool",
- "default": 0,
- "examples": [
- 10
- ]
- },
- "max_items": {
- "type": "integer",
- "description": "Maximum number of items to return for the ls tool",
- "default": 1000,
- "examples": [
- 100
- ]
- }
- },
- "additionalProperties": false,
- "type": "object"
- },
- "Config": {
- "properties": {
- "$schema": {
- "type": "string"
- },
- "models": {
- "additionalProperties": {
- "$ref": "#/$defs/SelectedModel"
- },
- "type": "object",
- "description": "Model configurations for different model types"
- },
- "recent_models": {
- "additionalProperties": {
- "items": {
- "$ref": "#/$defs/SelectedModel"
- },
- "type": "array"
- },
- "type": "object",
- "description": "Recently used models sorted by most recent first"
- },
- "providers": {
- "additionalProperties": {
- "$ref": "#/$defs/ProviderConfig"
- },
- "type": "object",
- "description": "AI provider configurations"
- },
- "mcp": {
- "$ref": "#/$defs/MCPs",
- "description": "Model Context Protocol server configurations"
- },
- "lsp": {
- "$ref": "#/$defs/LSPs",
- "description": "Language Server Protocol configurations"
- },
- "options": {
- "$ref": "#/$defs/Options",
- "description": "General application options"
- },
- "permissions": {
- "$ref": "#/$defs/Permissions",
- "description": "Permission settings for tool usage"
- },
- "tools": {
- "$ref": "#/$defs/Tools",
- "description": "Tool configurations"
- }
- },
- "additionalProperties": false,
- "type": "object",
- "required": [
- "tools"
- ]
- },
- "LSPConfig": {
- "properties": {
- "disabled": {
- "type": "boolean",
- "description": "Whether this LSP server is disabled",
- "default": false
- },
- "command": {
- "type": "string",
- "description": "Command to execute for the LSP server",
- "examples": [
- "gopls"
- ]
- },
- "args": {
- "items": {
- "type": "string"
- },
- "type": "array",
- "description": "Arguments to pass to the LSP server command"
- },
- "env": {
- "additionalProperties": {
- "type": "string"
- },
- "type": "object",
- "description": "Environment variables to set to the LSP server command"
- },
- "filetypes": {
- "items": {
- "type": "string",
- "examples": [
- "go",
- "mod",
- "rs",
- "c",
- "js",
- "ts"
- ]
- },
- "type": "array",
- "description": "File types this LSP server handles"
- },
- "root_markers": {
- "items": {
- "type": "string",
- "examples": [
- "go.mod",
- "package.json",
- "Cargo.toml"
- ]
- },
- "type": "array",
- "description": "Files or directories that indicate the project root"
- },
- "init_options": {
- "type": "object",
- "description": "Initialization options passed to the LSP server during initialize request"
- },
- "options": {
- "type": "object",
- "description": "LSP server-specific settings passed during initialization"
- }
- },
- "additionalProperties": false,
- "type": "object",
- "required": [
- "command"
- ]
- },
- "LSPs": {
- "additionalProperties": {
- "$ref": "#/$defs/LSPConfig"
- },
- "type": "object"
- },
- "MCPConfig": {
- "properties": {
- "command": {
- "type": "string",
- "description": "Command to execute for stdio MCP servers",
- "examples": [
- "npx"
- ]
- },
- "env": {
- "additionalProperties": {
- "type": "string"
- },
- "type": "object",
- "description": "Environment variables to set for the MCP server"
- },
- "args": {
- "items": {
- "type": "string"
- },
- "type": "array",
- "description": "Arguments to pass to the MCP server command"
- },
- "type": {
- "type": "string",
- "enum": [
- "stdio",
- "sse",
- "http"
- ],
- "description": "Type of MCP connection",
- "default": "stdio"
- },
- "url": {
- "type": "string",
- "format": "uri",
- "description": "URL for HTTP or SSE MCP servers",
- "examples": [
- "http://localhost:3000/mcp"
- ]
- },
- "disabled": {
- "type": "boolean",
- "description": "Whether this MCP server is disabled",
- "default": false
- },
- "disabled_tools": {
- "items": {
- "type": "string",
- "examples": [
- "get-library-doc"
- ]
- },
- "type": "array",
- "description": "List of tools from this MCP server to disable"
- },
- "timeout": {
- "type": "integer",
- "description": "Timeout in seconds for MCP server connections",
- "default": 15,
- "examples": [
- 30,
- 60,
- 120
- ]
- },
- "headers": {
- "additionalProperties": {
- "type": "string"
- },
- "type": "object",
- "description": "HTTP headers for HTTP/SSE MCP servers"
- }
- },
- "additionalProperties": false,
- "type": "object",
- "required": [
- "type"
- ]
- },
- "MCPs": {
- "additionalProperties": {
- "$ref": "#/$defs/MCPConfig"
- },
- "type": "object"
- },
- "Model": {
- "properties": {
- "id": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "cost_per_1m_in": {
- "type": "number"
- },
- "cost_per_1m_out": {
- "type": "number"
- },
- "cost_per_1m_in_cached": {
- "type": "number"
- },
- "cost_per_1m_out_cached": {
- "type": "number"
- },
- "context_window": {
- "type": "integer"
- },
- "default_max_tokens": {
- "type": "integer"
- },
- "can_reason": {
- "type": "boolean"
- },
- "reasoning_levels": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "default_reasoning_effort": {
- "type": "string"
- },
- "supports_attachments": {
- "type": "boolean"
- },
- "options": {
- "$ref": "#/$defs/ModelOptions"
- }
- },
- "additionalProperties": false,
- "type": "object",
- "required": [
- "id",
- "name",
- "cost_per_1m_in",
- "cost_per_1m_out",
- "cost_per_1m_in_cached",
- "cost_per_1m_out_cached",
- "context_window",
- "default_max_tokens",
- "can_reason",
- "supports_attachments",
- "options"
- ]
- },
- "ModelOptions": {
- "properties": {
- "temperature": {
- "type": "number"
- },
- "top_p": {
- "type": "number"
- },
- "top_k": {
- "type": "integer"
- },
- "frequency_penalty": {
- "type": "number"
- },
- "presence_penalty": {
- "type": "number"
- },
- "provider_options": {
- "type": "object"
- }
- },
- "additionalProperties": false,
- "type": "object"
- },
- "Options": {
- "properties": {
- "context_paths": {
- "items": {
- "type": "string",
- "examples": [
- ".cursorrules",
- "CRUSH.md"
- ]
- },
- "type": "array",
- "description": "Paths to files containing context information for the AI"
- },
- "skills_paths": {
- "items": {
- "type": "string",
- "examples": [
- "~/.config/crush/skills",
- "./skills"
- ]
- },
- "type": "array",
- "description": "Paths to directories containing Agent Skills (folders with SKILL.md files)"
- },
- "tui": {
- "$ref": "#/$defs/TUIOptions",
- "description": "Terminal user interface options"
- },
- "debug": {
- "type": "boolean",
- "description": "Enable debug logging",
- "default": false
- },
- "debug_lsp": {
- "type": "boolean",
- "description": "Enable debug logging for LSP servers",
- "default": false
- },
- "disable_auto_summarize": {
- "type": "boolean",
- "description": "Disable automatic conversation summarization",
- "default": false
- },
- "data_directory": {
- "type": "string",
- "description": "Directory for storing application data (relative to working directory)",
- "default": ".crush",
- "examples": [
- ".crush"
- ]
- },
- "disabled_tools": {
- "items": {
- "type": "string",
- "examples": [
- "bash",
- "sourcegraph"
- ]
- },
- "type": "array",
- "description": "List of built-in tools to disable and hide from the agent"
- },
- "disable_provider_auto_update": {
- "type": "boolean",
- "description": "Disable providers auto-update",
- "default": false
- },
- "disable_default_providers": {
- "type": "boolean",
- "description": "Ignore all default/embedded providers. When enabled",
- "default": false
- },
- "attribution": {
- "$ref": "#/$defs/Attribution",
- "description": "Attribution settings for generated content"
- },
- "disable_metrics": {
- "type": "boolean",
- "description": "Disable sending metrics",
- "default": false
- },
- "initialize_as": {
- "type": "string",
- "description": "Name of the context file to create/update during project initialization",
- "default": "AGENTS.md",
- "examples": [
- "AGENTS.md",
- "CRUSH.md",
- "CLAUDE.md",
- "docs/LLMs.md"
- ]
- }
- },
- "additionalProperties": false,
- "type": "object"
- },
- "Permissions": {
- "properties": {
- "allowed_tools": {
- "items": {
- "type": "string",
- "examples": [
- "bash",
- "view"
- ]
- },
- "type": "array",
- "description": "List of tools that don't require permission prompts"
- }
- },
- "additionalProperties": false,
- "type": "object"
- },
- "ProviderConfig": {
- "properties": {
- "id": {
- "type": "string",
- "description": "Unique identifier for the provider",
- "examples": [
- "openai"
- ]
- },
- "name": {
- "type": "string",
- "description": "Human-readable name for the provider",
- "examples": [
- "OpenAI"
- ]
- },
- "base_url": {
- "type": "string",
- "format": "uri",
- "description": "Base URL for the provider's API",
- "examples": [
- "https://api.openai.com/v1"
- ]
- },
- "type": {
- "type": "string",
- "enum": [
- "openai",
- "openai-compat",
- "anthropic",
- "gemini",
- "azure",
- "vertexai"
- ],
- "description": "Provider type that determines the API format",
- "default": "openai"
- },
- "api_key": {
- "type": "string",
- "description": "API key for authentication with the provider",
- "examples": [
- "$OPENAI_API_KEY"
- ]
- },
- "oauth": {
- "$ref": "#/$defs/Token",
- "description": "OAuth2 token for authentication with the provider"
- },
- "disable": {
- "type": "boolean",
- "description": "Whether this provider is disabled",
- "default": false
- },
- "system_prompt_prefix": {
- "type": "string",
- "description": "Custom prefix to add to system prompts for this provider"
- },
- "extra_headers": {
- "additionalProperties": {
- "type": "string"
- },
- "type": "object",
- "description": "Additional HTTP headers to send with requests"
- },
- "extra_body": {
- "type": "object",
- "description": "Additional fields to include in request bodies"
- },
- "provider_options": {
- "type": "object",
- "description": "Additional provider-specific options for this provider"
- },
- "models": {
- "items": {
- "$ref": "#/$defs/Model"
- },
- "type": "array",
- "description": "List of models available from this provider"
- }
- },
- "additionalProperties": false,
- "type": "object"
- },
- "SelectedModel": {
- "properties": {
- "model": {
- "type": "string",
- "description": "The model ID as used by the provider API",
- "examples": [
- "gpt-4o"
- ]
- },
- "provider": {
- "type": "string",
- "description": "The model provider ID that matches a key in the providers config",
- "examples": [
- "openai"
- ]
- },
- "reasoning_effort": {
- "type": "string",
- "enum": [
- "low",
- "medium",
- "high"
- ],
- "description": "Reasoning effort level for OpenAI models that support it"
- },
- "think": {
- "type": "boolean",
- "description": "Enable thinking mode for Anthropic models that support reasoning"
- },
- "max_tokens": {
- "type": "integer",
- "maximum": 200000,
- "description": "Maximum number of tokens for model responses",
- "examples": [
- 4096
- ]
- },
- "temperature": {
- "type": "number",
- "maximum": 1,
- "minimum": 0,
- "description": "Sampling temperature",
- "examples": [
- 0.7
- ]
- },
- "top_p": {
- "type": "number",
- "maximum": 1,
- "minimum": 0,
- "description": "Top-p (nucleus) sampling parameter",
- "examples": [
- 0.9
- ]
- },
- "top_k": {
- "type": "integer",
- "description": "Top-k sampling parameter"
- },
- "frequency_penalty": {
- "type": "number",
- "description": "Frequency penalty to reduce repetition"
- },
- "presence_penalty": {
- "type": "number",
- "description": "Presence penalty to increase topic diversity"
- },
- "provider_options": {
- "type": "object",
- "description": "Additional provider-specific options for the model"
- }
- },
- "additionalProperties": false,
- "type": "object",
- "required": [
- "model",
- "provider"
- ]
- },
- "TUIOptions": {
- "properties": {
- "compact_mode": {
- "type": "boolean",
- "description": "Enable compact mode for the TUI interface",
- "default": false
- },
- "diff_mode": {
- "type": "string",
- "enum": [
- "unified",
- "split"
- ],
- "description": "Diff mode for the TUI interface"
- },
- "completions": {
- "$ref": "#/$defs/Completions",
- "description": "Completions UI options"
- }
- },
- "additionalProperties": false,
- "type": "object",
- "required": [
- "completions"
- ]
- },
- "Token": {
- "properties": {
- "access_token": {
- "type": "string"
- },
- "refresh_token": {
- "type": "string"
- },
- "expires_in": {
- "type": "integer"
- },
- "expires_at": {
- "type": "integer"
- }
- },
- "additionalProperties": false,
- "type": "object",
- "required": [
- "access_token",
- "refresh_token",
- "expires_in",
- "expires_at"
- ]
- },
- "ToolLs": {
- "properties": {
- "max_depth": {
- "type": "integer",
- "description": "Maximum depth for the ls tool",
- "default": 0,
- "examples": [
- 10
- ]
- },
- "max_items": {
- "type": "integer",
- "description": "Maximum number of items to return for the ls tool",
- "default": 1000,
- "examples": [
- 100
- ]
- }
- },
- "additionalProperties": false,
- "type": "object"
- },
- "Tools": {
- "properties": {
- "ls": {
- "$ref": "#/$defs/ToolLs"
- }
- },
- "additionalProperties": false,
- "type": "object",
- "required": [
- "ls"
- ]
- }
- }
- }
|