Skip to content

Commit d8d0a49

Browse files
committed
meta: Add dotagents configuration
Set up dotagents to manage shared agent skills. Skills are now stored under .agents/skills/ (vendor-neutral) with a .claude/skills symlink for backwards compatibility. agents.toml declares dependencies on getsentry/dotagents and getsentry/sentry-for-ai skill sources.
1 parent e2dce0b commit d8d0a49

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

.claude/skills

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../.agents/skills

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,6 @@ spy.log
3232

3333
# Local Claude Code settings that should not be committed
3434
.claude/settings.local.json
35+
# Auto-generated by dotagents — do not commit these files.
36+
agents.lock
37+
.agents/.gitignore

agents.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version = 1
2+
agents = ["claude", "cursor"]
3+
4+
[trust]
5+
github_orgs = [ "getsentry" ]
6+
7+
8+
[[skills]]
9+
name = "dotagents"
10+
source = "getsentry/dotagents"
11+
12+
[[skills]]
13+
name = "*"
14+
source = "getsentry/sentry-for-ai"

0 commit comments

Comments
 (0)