feat: Add dotagents skill management and expand warden#108695
Merged
feat: Add dotagents skill management and expand warden#108695
Conversation
JoshFerge
reviewed
Feb 20, 2026
JoshFerge
approved these changes
Feb 20, 2026
Member
JoshFerge
left a comment
There was a problem hiding this comment.
one small q about npm vs pnpm semantics but lgtm
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
Introduce dotagents for managing shared agent skills across the repo. Skills are moved from .claude/skills/ to .agents/skills/ with a symlink for backwards compatibility. Remote skills from getsentry/skills and getsentry/warden-sentry are declared in agents.toml with integrity verification via agents.lock. - Add agents.toml and agents.lock for skill declarations - Move existing skills to .agents/skills/ directory - Add warden skill with CLI reference docs - Add .envrc check to prompt devenv sync when skills missing - Add dotagents install step to devenv/sync.py Co-Authored-By: Claude <[email protected]>
- Use pnpm dlx instead of npx (JoshFerge review) - Make agent skills install non-fatal since private skill repos may not be accessible in CI environments - Fix .envrc check to test for a managed skill dir (commit/) instead of top-level .agents/skills/ which exists in-repo with local skills Co-Authored-By: Claude <[email protected]>
shutil.which("pnpm") without a path argument searches the inherited
process PATH, but pnpm is installed in .devenv/bin/ by devenv. Use
the same binroot path that run_procs adds to the child PATH.
Co-Authored-By: Claude <[email protected]>
e3795a0 to
48d7553
Compare
Add paths and ignorePaths to sentry-backend-bugs (src/sentry/**/*.py) and sentry-javascript-bugs (static/**/*.{ts,tsx,js,jsx}) so they only run on relevant file changes instead of the entire repo. Co-Authored-By: Claude <[email protected]>
Member
Author
|
fixed one more miss (i forgot to add the skills to warden, which currently manages them separately, but its ok atm) |
1 task
priscilawebdev
pushed a commit
that referenced
this pull request
Feb 24, 2026
Introduces [dotagents](https://github.com/getsentry/dotagents) for managing shared agent skills across the repo. This moves skills from `.claude/skills/` to `.agents/skills/` (with a symlink for backwards compatibility) and declares remote skill dependencies in `agents.toml` with integrity verification via `agents.lock`. Remote skills are sourced from `getsentry/skills` and `getsentry/warden-sentry`. Running `devenv sync` will automatically install them via `npx @sentry/dotagents install --frozen`. Key changes: - `agents.toml` / `agents.lock` — skill declarations and integrity lockfile - `.agents/skills/` — new canonical location for skills (`.claude/skills` is now a symlink) - `.agents/skills/warden/` — new local warden skill with CLI reference docs - `.envrc` — check for missing skills and prompt `devenv sync` - `devenv/sync.py` — add `dotagents install` to the sync pipeline - Adds new synthesized bug finder skills for warden Collaborators need to run `devenv sync` (or `npx @sentry/dotagents install`) to populate gitignored managed skills. --------- Co-authored-by: Claude <[email protected]>
mchen-sentry
pushed a commit
that referenced
this pull request
Feb 24, 2026
Introduces [dotagents](https://github.com/getsentry/dotagents) for managing shared agent skills across the repo. This moves skills from `.claude/skills/` to `.agents/skills/` (with a symlink for backwards compatibility) and declares remote skill dependencies in `agents.toml` with integrity verification via `agents.lock`. Remote skills are sourced from `getsentry/skills` and `getsentry/warden-sentry`. Running `devenv sync` will automatically install them via `npx @sentry/dotagents install --frozen`. Key changes: - `agents.toml` / `agents.lock` — skill declarations and integrity lockfile - `.agents/skills/` — new canonical location for skills (`.claude/skills` is now a symlink) - `.agents/skills/warden/` — new local warden skill with CLI reference docs - `.envrc` — check for missing skills and prompt `devenv sync` - `devenv/sync.py` — add `dotagents install` to the sync pipeline - Adds new synthesized bug finder skills for warden Collaborators need to run `devenv sync` (or `npx @sentry/dotagents install`) to populate gitignored managed skills. --------- Co-authored-by: Claude <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Introduces dotagents for managing shared agent skills across the repo. This moves skills from
.claude/skills/to.agents/skills/(with a symlink for backwards compatibility) and declares remote skill dependencies inagents.tomlwith integrity verification viaagents.lock.Remote skills are sourced from
getsentry/skillsandgetsentry/warden-sentry. Runningdevenv syncwill automatically install them vianpx @sentry/dotagents install --frozen.Key changes:
agents.toml/agents.lock— skill declarations and integrity lockfile.agents/skills/— new canonical location for skills (.claude/skillsis now a symlink).agents/skills/warden/— new local warden skill with CLI reference docs.envrc— check for missing skills and promptdevenv syncdevenv/sync.py— adddotagents installto the sync pipelineCollaborators need to run
devenv sync(ornpx @sentry/dotagents install) to populate gitignored managed skills.