Config
Using the Vikasit Code JSON config.
You can configure Vikasit Code using a JSON config file.
Format
Vikasit Code supports both JSON and JSONC (JSON with Comments) formats.
{ "$schema": "https://vikasit.ai/config.json", "model": "vikasit/coder", "autoupdate": true, "server": { "port": 4096, },}Locations
You can place your config in a couple of different locations and they have a different order of precedence.
Configuration files are merged together, not replaced. Settings from the following config locations are combined. Later configs override earlier ones only for conflicting keys. Non-conflicting settings from all configs are preserved.
For example, if your global config sets autoupdate: true and your project config sets model: "vikasit/coder", the final configuration will include both settings.
Precedence order
Config sources are loaded in this order (later sources override earlier ones):
- Remote config (from
.well-known/vikasit) - organizational defaults - Global config (
~/.config/vikasit/vikasit.json) - user preferences - Custom config (
VIKASIT_CONFIGenv var) - custom overrides - Project config (
vikasit.jsonin project) - project-specific settings .vikasitdirectories - agents, commands, plugins- Inline config (
VIKASIT_CONFIG_CONTENTenv var) - runtime overrides
This means project configs can override global defaults, and global configs can override remote organizational defaults.
Remote
Organizations can provide default configuration via the .well-known/vikasit endpoint. This is fetched automatically when you authenticate with a provider that supports it.
Remote config is loaded first, serving as the base layer. All other config sources (global, project) can override these defaults.
For example, if your organization provides MCP servers that are disabled by default:
{ "mcp": { "jira": { "type": "remote", "url": "https://jira.example.com/mcp", "enabled": false } }}You can enable specific servers in your local config:
{ "mcp": { "jira": { "type": "remote", "url": "https://jira.example.com/mcp", "enabled": true } }}Global
Place your global Vikasit Code config in ~/.config/vikasit/vikasit.json. Use global config for user-wide server/runtime preferences like providers, models, and permissions.
For TUI-specific settings, use ~/.config/vikasit/tui.json.
Global config overrides remote organizational defaults.
Per project
Add vikasit.json in your project root. Project config has the highest precedence among standard config files - it overrides both global and remote configs.
For project-specific TUI settings, add tui.json alongside it.
When Vikasit Code starts up, it looks for a config file in the current directory or traverse up to the nearest Git directory.
This is also safe to be checked into Git and uses the same schema as the global one.
Custom path
Specify a custom config file path using the VIKASIT_CONFIG environment variable.
export VIKASIT_CONFIG=/path/to/my/custom-config.jsonvikasit run "Hello world"Custom config is loaded between global and project configs in the precedence order.
Custom directory
Specify a custom config directory using the VIKASIT_CONFIG_DIR
environment variable. This directory will be searched for agents, commands,
modes, and plugins just like the standard .vikasit directory, and should
follow the same structure.
export VIKASIT_CONFIG_DIR=/path/to/my/config-directoryvikasit run "Hello world"The custom directory is loaded after the global config and .vikasit directories, so it can override their settings.
Schema
The server/runtime config schema is defined in vikasit.ai/config.json.
TUI config uses vikasit.ai/tui.json.
Your editor should be able to validate and autocomplete based on the schema.
TUI
Use a dedicated tui.json (or tui.jsonc) file for TUI-specific settings.
{ "$schema": "https://vikasit.ai/tui.json", "scroll_speed": 3, "scroll_acceleration": { "enabled": true }, "diff_style": "auto"}Use VIKASIT_TUI_CONFIG to point to a custom TUI config file.
Legacy theme, keybinds, and tui keys in vikasit.json are deprecated and automatically migrated when possible.
Learn more about TUI configuration here.
Server
You can configure server settings for the vikasit serve and vikasit web commands through the server option.
{ "$schema": "https://vikasit.ai/config.json", "server": { "port": 4096, "hostname": "0.0.0.0", "mdns": true, "mdnsDomain": "myproject.local", "cors": ["http://localhost:5173"] }}Available options:
port- Port to listen on.hostname- Hostname to listen on. Whenmdnsis enabled and no hostname is set, defaults to0.0.0.0.mdns- Enable mDNS service discovery. This allows other devices on the network to discover your Vikasit Code server.mdnsDomain- Custom domain name for mDNS service. Defaults tovikasit.local. Useful for running multiple instances on the same network.cors- Additional origins to allow for CORS when using the HTTP server from a browser-based client. Values must be full origins (scheme + host + optional port), eghttps://app.example.com.
Learn more about the server here.
Tools
You can manage the tools an LLM can use through the tools option.
{ "$schema": "https://vikasit.ai/config.json", "tools": { "write": false, "bash": false }}Models
You can configure the providers and models you want to use in your Vikasit Code config through the provider, model and small_model options.
{ "$schema": "https://vikasit.ai/config.json", "provider": {}, "model": "vikasit/coder", "small_model": "vikasit/flash"}The small_model option configures a separate model for lightweight tasks like title generation. By default, Vikasit Code uses Flash for these tasks.
Provider options can include timeout, chunkTimeout, and setCacheKey:
{ "$schema": "https://vikasit.ai/config.json", "provider": { "vikasit": { "options": { "timeout": 600000, "chunkTimeout": 30000 } } }}timeout- Request timeout in milliseconds (default: 300000). Set tofalseto disable.chunkTimeout- Timeout in milliseconds between streamed response chunks. If no chunk arrives in time, the request is aborted.
Themes
Set your UI theme in tui.json.
{ "$schema": "https://vikasit.ai/tui.json", "theme": "tokyonight"}Agents
You can configure specialized agents for specific tasks through the agent option.
{ "$schema": "https://vikasit.ai/config.json", "agent": { "code-reviewer": { "description": "Reviews code for best practices and potential issues", "model": "vikasit/coder", "prompt": "You are a code reviewer. Focus on security, performance, and maintainability.", "tools": { // Disable file modification tools for review-only agent "write": false, "edit": false, }, }, },}You can also define agents using markdown files in ~/.config/vikasit/agents/ or .vikasit/agents/. Learn more here.
Default agent
You can set the default agent using the default_agent option. This determines which agent is used when none is explicitly specified.
{ "$schema": "https://vikasit.ai/config.json", "default_agent": "plan"}The default agent must be a primary agent (not a subagent). This can be a built-in agent like "build" or "plan", or a custom agent you’ve defined. If the specified agent doesn’t exist or is a subagent, Vikasit Code will fall back to "build" with a warning.
This setting applies across all interfaces: TUI, CLI (vikasit run), desktop app, and GitHub Action.
Sharing
You can configure the share feature through the share option.
{ "$schema": "https://vikasit.ai/config.json", "share": "manual"}This takes:
"manual"- Allow manual sharing via commands (default)"auto"- Automatically share new conversations"disabled"- Disable sharing entirely
By default, sharing is set to manual mode where you need to explicitly share conversations using the /share command.
Commands
You can configure custom commands for repetitive tasks through the command option.
{ "$schema": "https://vikasit.ai/config.json", "command": { "test": { "template": "Run the full test suite with coverage report and show any failures.\nFocus on the failing tests and suggest fixes.", "description": "Run tests with coverage", "agent": "build", "model": "vikasit/flash", }, "component": { "template": "Create a new React component named $ARGUMENTS with TypeScript support.\nInclude proper typing and basic structure.", "description": "Create a new component", }, },}You can also define commands using markdown files in ~/.config/vikasit/commands/ or .vikasit/commands/. Learn more here.
Keybinds
Customize keybinds in tui.json.
{ "$schema": "https://vikasit.ai/tui.json", "keybinds": {}}Snapshot
Vikasit Code uses snapshots to track file changes during agent operations, enabling you to undo and revert changes within a session. Snapshots are enabled by default.
For large repositories or projects with many submodules, the snapshot system can cause slow indexing and significant disk usage as it tracks all changes using an internal git repository. You can disable snapshots using the snapshot option.
{ "$schema": "https://vikasit.ai/config.json", "snapshot": false}Note that disabling snapshots means changes made by the agent cannot be rolled back through the UI.
Autoupdate
Vikasit Code will automatically download any new updates when it starts up. You can disable this with the autoupdate option.
{ "$schema": "https://vikasit.ai/config.json", "autoupdate": false}If you don’t want updates but want to be notified when a new version is available, set autoupdate to "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.
{ "$schema": "https://vikasit.ai/config.json", "formatter": { "prettier": { "disabled": true }, "custom-prettier": { "command": ["npx", "prettier", "--write", "$FILE"], "environment": { "NODE_ENV": "development" }, "extensions": [".js", ".ts", ".jsx", ".tsx"] } }}Learn more about formatters here.
Permissions
By default, vikasit allows all operations without requiring explicit approval. You can change this using the permission option.
For example, to ensure that the edit and bash tools require user approval:
{ "$schema": "https://vikasit.ai/config.json", "permission": { "edit": "ask", "bash": "ask" }}Learn more about permissions here.
Compaction
You can control context compaction behavior through the compaction option.
{ "$schema": "https://vikasit.ai/config.json", "compaction": { "auto": true, "prune": true, "reserved": 10000 }}auto- Automatically compact the session when context is full (default:true).prune- Remove old tool outputs to save tokens (default:true).reserved- Token buffer for compaction. Leaves enough window to avoid overflow during compaction
Watcher
You can configure file watcher ignore patterns through the watcher option.
{ "$schema": "https://vikasit.ai/config.json", "watcher": { "ignore": ["node_modules/**", "dist/**", ".git/**"] }}Patterns follow glob syntax. Use this to exclude noisy directories from file watching.
MCP servers
You can configure MCP servers you want to use through the mcp option.
{ "$schema": "https://vikasit.ai/config.json", "mcp": {}}Plugins
Plugins extend Vikasit Code with custom tools, hooks, and integrations.
Place plugin files in .vikasit/plugins/ or ~/.config/vikasit/plugins/. You can also load plugins from npm through the plugin option.
{ "$schema": "https://vikasit.ai/config.json", "plugin": ["vikasit-helicone-session", "@my-org/custom-plugin"]}Instructions
You can configure the instructions for the model you’re using through the instructions option.
{ "$schema": "https://vikasit.ai/config.json", "instructions": ["CONTRIBUTING.md", "docs/guidelines.md", ".cursor/rules/*.md"]}This takes an array of paths and glob patterns to instruction files. Learn more about rules here.
Disabled providers
You can disable providers through the disabled_providers option.
{ "$schema": "https://vikasit.ai/config.json", "disabled_providers": []}The disabled_providers option 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 the enabled_providers option. When set, only the specified providers will be enabled and all others will be ignored.
{ "$schema": "https://vikasit.ai/config.json", "enabled_providers": ["vikasit"]}If a provider appears in both enabled_providers and disabled_providers, the disabled_providers takes priority for backwards compatibility.
Experimental
The experimental key contains options that are under active development.
{ "$schema": "https://vikasit.ai/config.json", "experimental": {}}Variables
You can use variable substitution in your config files to reference environment variables and file contents.
Env vars
Use {env:VARIABLE_NAME} to substitute environment variables:
{ "$schema": "https://vikasit.ai/config.json", "model": "{env:VIKASIT_MODEL}", "provider": { "vikasit": { "models": {}, "options": { "apiKey": "{env:VIKASIT_API_KEY}" } } }}If the environment variable is not set, it will be replaced with an empty string.
Files
Use {file:path/to/file} to substitute the contents of a file:
{ "$schema": "https://vikasit.ai/config.json", "instructions": ["./custom-instructions.md"], "provider": { "vikasit": { "options": { "apiKey": "{file:~/.secrets/vikasit-key}" } } }}File paths can be:
- Relative to the config file directory
- Or absolute paths starting with
/or~
These are useful for:
- Keeping sensitive data like API keys in separate files.
- Including large instruction files without cluttering your config.
- Sharing common configuration snippets across multiple config files.