You can configure Symbiotic Code using a JSON or JSONC config file.Documentation Index
Fetch the complete documentation index at: https://docs.symbioticsec.ai/llms.txt
Use this file to discover all available pages before exploring further.
Locations
You can place your config in a couple of different locations and they have a different order of precedence.- Remote config (from
.well-known/symbiotic) - organizational defaults - Global config (
~/.config/symbiotic/symbiotic.json) - user preferences - Custom config (
SYMBIOTIC_CONFIGenv var) - custom overrides - Project config (
symbiotic.jsonin project) - project-specific settings .symbioticdirectories - agents, commands, plugins- Inline config (
SYMBIOTIC_CONFIG_CONTENTenv var) - runtime overrides - Managed config files (
/Library/Application Support/symbiotic/symbiotic.jsonon macOS) - admin-controlled - macOS managed preferences (
.mobileconfigvia MDM) - highest priority, not user-overridable
Managed settings
Organizations can enforce configuration that users cannot override. Managed settings are loaded at the highest priority tier. Drop asymbiotic.json or symbiotic.jsonc file in the system managed config directory:
| Platform | Path |
|---|---|
| macOS | /Library/Application Support/symbiotic/ |
| Linux | /etc/symbiotic/ |
| Windows | %ProgramData%\symbiotic |
These directories require admin/root access to write, so users cannot modify them.
Configuration
Tools
You can manage the tools an LLM can use through the tools option.symbiotic.json
Models
You can configure the providers and models you want to use in your Symbiotic Code config through theprovider, model and small_model options.
symbiotic.json
small_model option configures a separate model for lightweight tasks like title generation. By default, Symbiotic Code tries to use a cheaper model if one is available from your provider, otherwise it falls back to your main model.
Provider options
Provider options can includetimeout, chunkTimeout, and setCacheKey:
symbiotic.json
| Option | Description |
|---|---|
timeout | Request timeout in milliseconds (default: 300000). Set to false to disable. |
chunkTimeout | Timeout in milliseconds between streamed response chunks. If no chunk arrives in time, the request is aborted. |
setCacheKey | Ensure a cache key is always set for designated provider. |
Provider-specific options
Some providers support additional configuration options beyond the generic timeout and apiKey settings.Amazon Bedrock
Amazon Bedrock supports AWS-specific configuration:symbiotic.json
| Option | Description | Notes |
|---|---|---|
region | AWS region for Bedrock | Defaults to AWS_REGION env var or us-east-1 |
profile | AWS named profile from ~/.aws/credentials | Defaults to AWS_PROFILE env var |
endpoint | Custom endpoint URL for VPC endpoints | This is an alias for the generic baseURL option using AWS-specific terminology. If both are specified, endpoint takes precedence. |
AWS_BEARER_TOKEN_BEDROCK or /connect) take precedence over profile-based authentication.
Agents
You can configure specialized agents for specific tasks through the agent option.symbiotic.json
~/.config/symbiotic/agents/ or .symbiotic/agents/.
Default agent
You can set the default agent using thedefault_agent option. This determines which agent is used when none is explicitly specified.
symbiotic.json
Commands
You can configure custom commands for repetitive tasks through thecommand option.
symbiotic.json
~/.config/symbiotic/commands/ or .symbiotic/commands/.
Auto-update
Symbiotic Code will automatically download any new updates when it starts up. You can disable this with theautoupdate option.
symbiotic.json
notify. Notice that this only works if it was not installed using a package manager such as Homebrew.
Formatters
You can configure code formatters through the formatter option.symbiotic.json
Permissions
By default, Symbiotic Code allows all operations without requiring explicit approval. You can change this using thepermission option.
For example, to ensure that the edit and bash tools require user approval:
symbiotic.json
Compaction
You can control context compaction behavior through thecompaction option.
symbiotic.json
| Option | Description | Default |
|---|---|---|
auto | Automatically compact the session when context is full | true |
prune | Remove old tool outputs to save tokens | true |
reserved | Token buffer for compaction. Leaves enough window to avoid overflow during compaction |
Watcher
You can configure file watcher ignore patterns through thewatcher option.
symbiotic.json
MCP servers
You can configure MCP servers you want to use through themcp option.
symbiotic.json
Plugins
Plugins extend Symbiotic Code with custom tools, hooks, and integrations. Place plugin files in.symbiotic/plugins/ or ~/.config/symbiotic/plugins/. You can also load plugins from npm through the plugin option.
symbiotic.json
Instructions
You can configure the instructions for the model you’re using through theinstructions option.
symbiotic.json
Disabled providers
You can disable providers that are loaded automatically through thedisabled_providers option. This is useful when you want to prevent certain providers from being loaded even if their credentials are available.
symbiotic.json
-
The
disabled_providerstakes priority overenabled_providers. -
The
disabled_providersoption accepts an array of provider IDs. When a provider is disabled:- It won’t be loaded even if environment variables are set.
- It won’t be loaded even if API keys are configured through the
/connectcommand. - The provider’s models won’t appear in the model selection list.
Enabled providers
You can specify an allowlist of providers through theenabled_providers option. When set, only the specified providers will be enabled and all others will be ignored.
symbiotic.json
- The
disabled_providerstakes priority overenabled_providers. - If a provider appears in both
enabled_providersanddisabled_providers, thedisabled_providerstakes priority for backwards compatibility.