From getsentry-dotagents
Manages agent skill dependencies in agents.toml via npx CLI: init projects, add/remove/install/list/sync skills from GitHub for Claude Code, Cursor, VS Code.
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin getsentry-dotagentsThis skill uses the workspace's default tool permissions.
Manage agent skill dependencies declared in `agents.toml`. dotagents resolves, installs, and symlinks skills so multiple agent tools (Claude Code, Cursor, Codex, VS Code, OpenCode) discover them from `.agents/skills/`.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Manage agent skill dependencies declared in agents.toml. dotagents resolves, installs, and symlinks skills so multiple agent tools (Claude Code, Cursor, Codex, VS Code, OpenCode) discover them from .agents/skills/.
Always use npx @sentry/dotagents to run commands. For example: npx @sentry/dotagents sync.
Read the relevant reference when the task requires deeper detail:
| Document | Read When |
|---|---|
| references/cli-reference.md | Full command options, flags, examples |
| references/configuration.md | Editing agents.toml, source formats, trust, MCP, hooks, wildcards, scopes |
| references/config-schema.md | Exact field names, types, and defaults |
# Initialize a new project (interactive TUI)
npx @sentry/dotagents init
# Add a skill from GitHub
npx @sentry/dotagents add getsentry/skills find-bugs
# Add multiple skills at once
npx @sentry/dotagents add getsentry/skills find-bugs code-review commit
# Add all skills from a repo
npx @sentry/dotagents add getsentry/skills --all
# Add a pinned skill
npx @sentry/dotagents add getsentry/warden@v1.0.0
# Install all dependencies from agents.toml
npx @sentry/dotagents install
# List installed skills
npx @sentry/dotagents list
| Command | Description |
|---|---|
npx @sentry/dotagents init | Initialize agents.toml and .agents/ directory |
npx @sentry/dotagents install | Install all skills from agents.toml |
npx @sentry/dotagents add <specifier> | Add a skill dependency |
npx @sentry/dotagents remove <name> | Remove a skill |
npx @sentry/dotagents sync | Reconcile state (adopt orphans, repair symlinks, fix configs) |
npx @sentry/dotagents list | Show installed skills and their status |
npx @sentry/dotagents mcp | Add, remove, or list MCP server declarations |
npx @sentry/dotagents trust | Add, remove, or list trusted sources |
npx @sentry/dotagents doctor | Check project health and fix issues |
All commands accept --user to operate on user scope (~/.agents/) instead of the current project.
For full options and flags, read references/cli-reference.md.
| Format | Example | Description |
|---|---|---|
| GitHub shorthand | getsentry/skills | Owner/repo (resolves to GitHub HTTPS) |
| GitHub pinned | getsentry/warden@v1.0.0 | With tag, branch, or commit |
| GitHub SSH | git@github.com:owner/repo.git | SSH clone URL |
| GitHub HTTPS | https://github.com/owner/repo | Full HTTPS URL |
| Git URL | git:https://git.corp.dev/team/skills | Any non-GitHub git remote |
| Local path | path:./my-skills/custom | Relative to project root |
.agents/skills/ is the canonical home for all installed skillsagents.toml declares dependencies; agents.lock tracks managed skills.claude/skills/, .cursor/skills/ point to .agents/skills/name = "*" installs all skills from a source, with optional exclude list[trust] section restricts which sources are allowed[[hooks]] declarations write tool-event hooks to each agent's config--user flag manages skills in ~/.agents/ shared across all projects