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
31 changes: 29 additions & 2 deletions warden.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,41 @@ version = 1
[defaults]
runtime = "pi"
model = "openrouter/x-ai/grok-4.5"
effort = "max"
reportOn = "low"
failOn = "off"
failCheck = false
requestChanges = false
# Skip low-signal paths for all skills. Security review still pays to analyze
# files even when the skill prompt would not report findings on them.
# Note: Warden globs do not expand brace patterns.
ignorePaths = [
"**/*.md",
"**/*.mdx",
"**/docs/**",
"**/CHANGELOG*",
"**/README*",
"**/tests/**",
"**/test/**",
"**/__tests__/**",
"**/__mocks__/**",
"**/e2e/**",
"**/fixtures/**",
"**/*.test.*",
"**/*.spec.*",
"**/test_*.py",
"**/*_test.py",
"**/*_test.go",
"**/*.snap",
"**/migrations/meta/**",
"**/*_snapshot.json",
]

[defaults.agent]
effort = "high"

[defaults.auxiliary]
model = "openrouter/moonshotai/kimi-k2.6"
model = "openrouter/openai/gpt-5.6-luna"
effort = "high"

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Unsupported auxiliary effort setting

Medium Severity

effort under [defaults.auxiliary] is not a supported field for that lane. Warden documents effort only on [defaults.agent]; auxiliary accepts model and maxRetries. This key will not control Luna’s reasoning effort as intended, and may fail strict config validation on the org-wide base config.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit ee2e1ad. Configure here.


[[skills]]
name = "security-review"
Expand Down
Loading