Configuration
Settings live in .enigma.json (global ~/.enigma.json, overridden by a repo-local one). Set them with enigma config <key> <value>, the interactive menu (enigma config), or the dashboard. Add -g / -l to target global or local.
| Key | Values | Default | What it does |
|---|---|---|---|
commit-emoji | on / off | on | Leading gitmoji on commit subjects. |
output-style | off / lite / full / ultra | off | Compress the agent’s chat prose (memory-file section; restart the agent). |
minimal-code | off / lite / full / ultra | full | Anti-overengineering intensity for code the agent writes. |
permission-bypass | on / off | on | Skip the agent’s approval prompts (a deliberate security downgrade). |
auto-sync | on / off | on | Refresh deployed skills when launching a tool through enigma. |
remote-skills | on / off | on | Fetch skills newer than the bundled set from GitHub. |
skill-update-policy | overwrite / keep | overwrite | On update, replace a skill you edited locally, or keep your edits. |
usage-api | on / off | off | Fetch the real usage %/reset from Anthropic via your local Claude Code login. |
parallel-subagents | on / off | off | Allow the agent to fan out sub-agents in parallel. |
auto-lint | on / off | off | Lint edited files via a post-write hook. |
compress | on / off | off | Register the context-compression MCP server in your agents. |
dashboard | off / on-demand / always | off | Local management dashboard mode. |
dashboard-port | <0-65535> | 0 | Preferred dashboard port (0 = auto: 80, then 24282). Restart the dashboard to apply. |
proxy | on / off | off | Route enigma claude through a local measuring proxy. |
prompt-secret-guard | on / off | off | Scan outgoing prompts for secrets (via the proxy). |
prompt-secret-mode | redact / reject | redact | What the guard does on a detected secret. |
usage-stats | on / off | off | Read your Claude Code transcripts for real token usage and cost. |
recall | on / off | off | Build a searchable local memory of your coding sessions from transcripts; exposed to agents over MCP. |
recall-llm | on / off | off | Enrich recall observations with an LLM via your local Claude login (Claude Code only; uses a little quota). |
gate | on / off | off | Enable the experimental AI quality gate (the /gate command and enigma gate). When on, agents auto-drive the gate after finishing work on a feature branch - no need to ask or run enigma gate init; opt out per project with gate: false in that repo’s .enigma.json. See Quality gate. |
gh-telemetry | enabled / disabled | disabled | GitHub CLI usage analytics. |
token-price | <usd> | 0 | $ per 1M input tokens for dashboard money estimates (0 = per-source defaults). |
token-speed | <tok/s> | 0 | Prefill speed for dashboard time estimates (0 = default). |
enigma config compress on
enigma config minimal-code ultra
enigma config dashboard always
/improve
A slash command deployed to every agent (it runs inside the agent, not the CLI). Two modes: implement edits a focused area, advisor is read-only and writes self-contained plans for another agent to execute.
/improve ui # implement: ui | security | performance | seo | refactor
/improve audit # advisor (read-only): audit | quick | deep | branch | next | plan ...