Skip to content

Commit cfd2441

Browse files
committed
chore(warden): add warden.toml to project
Initial configuration for [warden](https://github.com/getsentry/warden).
1 parent d813f5c commit cfd2441

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

warden.toml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Warden Configuration
2+
# https://github.com/getsentry/warden
3+
#
4+
# Warden reviews code using AI-powered skills triggered by GitHub events.
5+
# Skills live in .agents/skills/ or .claude/skills/
6+
#
7+
# Add skills with: warden add <skill-name>
8+
9+
version = 1
10+
11+
# Default settings inherited by all skills
12+
[defaults]
13+
# Severity levels: critical, high, medium, low, info
14+
# failOn: minimum severity that fails the check
15+
failOn = "high"
16+
# reportOn: minimum severity that creates PR annotations
17+
reportOn = "medium"
18+
19+
# Skills define what to analyze and when to run
20+
# Add skills with: warden add <skill-name>
21+
#
22+
# Example skill with path filters and triggers:
23+
#
24+
# [[skills]]
25+
# name = "security-review"
26+
# paths = ["src/**/*.ts", "src/**/*.tsx"]
27+
# ignorePaths = ["**/*.test.ts", "**/__fixtures__/**"]
28+
#
29+
# [[skills.triggers]]
30+
# type = "pull_request"
31+
# actions = ["opened", "synchronize", "reopened"]
32+
33+
[[skills]]
34+
name = "code-review"
35+
36+
[[skills.triggers]]
37+
type = "pull_request"
38+
actions = ["opened", "synchronize", "reopened"]
39+
40+
[[skills]]
41+
name = "find-bugs"
42+
43+
[[skills.triggers]]
44+
type = "pull_request"
45+
actions = ["opened", "synchronize", "reopened"]

0 commit comments

Comments
 (0)