Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pip-wheel-metadata
.claude/
.serena
.tool-versions
.agents

# for running AWS Lambda tests using AWS SAM
sam.template.yaml
24 changes: 24 additions & 0 deletions agents.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Auto-generated by dotagents. Do not edit.
version = 1

[skills.code-review]
source = "getsentry/skills"
resolved_url = "https://github.com/getsentry/skills.git"
resolved_path = ".agents/skills/code-review"
commit = "300f87e68926c4a89d664d730e87c2375ab6d215"
integrity = "sha256-EQagBxdNIvqA8Ugvd1fdagQTbR+TJLsV2W7D5jIHqzc="

[skills.find-bugs]
source = "getsentry/skills"
resolved_url = "https://github.com/getsentry/skills.git"
resolved_path = ".agents/skills/find-bugs"
commit = "300f87e68926c4a89d664d730e87c2375ab6d215"
integrity = "sha256-FWmCLdOj+x+XffiEg7Bx19drylVypeKz8me9OA757js="

[skills.skill-scanner]
source = "getsentry/skills"
resolved_url = "https://github.com/getsentry/skills.git"
resolved_path = ".agents/skills/skill-scanner"
commit = "300f87e68926c4a89d664d730e87c2375ab6d215"
integrity = "sha256-GNsYjlwxSCozFOMv1K2hMfXOy4PynX/KSN0vP9WSnhU="

18 changes: 18 additions & 0 deletions agents.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version = 1
# Managed skills are gitignored; collaborators must run 'dotagents install'.
gitignore = true

[trust]
allow_all = true
Comment thread
ericapisani marked this conversation as resolved.

[[skills]]
name = "code-review"
source = "getsentry/skills"

[[skills]]
name = "find-bugs"
source = "getsentry/skills"

[[skills]]
name = "skill-scanner"
source = "getsentry/skills"
Loading