Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion config/claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,14 @@
"worktrunk@worktrunk": true
},
"env": {
"AIKIDO_DISABLE": "true",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

AIKIDO_DISABLE fully disables Aikido Zen rather than silencing its output.

The AIKIDO_DISABLE env var disables Zen entirely — this is the runtime WAF (injection/path-traversal protection), not just noisy log output. This is distinct from SAFE_CHAIN_LOGGING=silent on line 29, which controls Safe Chain's output and whose "silent" value suppresses all Safe Chain output except when malware is blocked, leaving the actual protection intact.

If the intent is only to reduce noise, consider whether fully disabling Zen's runtime protections is acceptable for your Claude Code sessions.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@config/claude/settings.json` at line 23, The AIKIDO_DISABLE setting currently
set to "true" fully disables the Aikido Zen runtime WAF instead of just
silencing its output; change AIKIDO_DISABLE to "false" (or remove it) so Aikido
Zen protections remain active, and if you only want to suppress logs use the
SAFE_CHAIN_LOGGING mechanism (SAFE_CHAIN_LOGGING="silent") instead; update the
AIKIDO_DISABLE value and ensure tests/launch config reference the AIKIDO_DISABLE
and SAFE_CHAIN_LOGGING variables to verify protections remain enabled while logs
are silenced.

"ANTHROPIC_DEFAULT_HAIKU_MODEL": "claude-sonnet-4-6",
"ANTHROPIC_DEFAULT_OPUS_MODEL": "claude-opus-4-6",
"ANTHROPIC_DEFAULT_SONNET_MODEL": "claude-sonnet-4-6",
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1"
"CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS": "1",
"NO_COLOR": "1",
"SAFE_CHAIN_LOGGING": "silent",
"TURBO_NO_UPDATE_NOTIFIER": "1"
},
"extraKnownMarketplaces": {
"cc-marketplace": {
Expand Down
Loading