From Sentry Workflows
Print the two ready-to-paste Claude Routine prompts (and matching `/schedule` commands) that wire the Sentry fix-issue and groom-stale workflows into cloud routines. Use when the user says "set up Sentry routines", "schedule Sentry workflows", or "how do I run this on a schedule".
How this skill is triggered — by the user, by Claude, or both
Slash command
/sentry-workflows:install-routinesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The Sentry workflow skills run locally in Claude Code. To run them on a schedule, in CI, or in response to GitHub events, copy them into Claude Routines (cloud-hosted autonomous sessions).
The Sentry workflow skills run locally in Claude Code. To run them on a schedule, in CI, or in response to GitHub events, copy them into Claude Routines (cloud-hosted autonomous sessions).
This skill prints the two routine prompts and the /schedule commands you can run from any Claude Code CLI session.
Before printing anything, check and report status of:
https://claude.ai/customize/connectors. The Sentry connector must be enabled so cloud routines can call the same mcp__sentry__* tools the plugin uses locally./web-setup if not already connected.jshchnz/sentry-workflows-plugin repo (or a fork) is the one you want routines to clone, so the skill bodies live in .claude/skills/ of the cloned repo. If your routine should run inside your own application repo, copy plugin/skills/ into your repo's .claude/skills/ directory first and commit it.Print the contents of:
${CLAUDE_PLUGIN_ROOT}/../routines/fix-issue.routine.md${CLAUDE_PLUGIN_ROOT}/../routines/groom-stale.routine.mdin fenced code blocks, prefixed by a short note: "These prompts are self-contained — they reference the Sentry MCP by tool name. Paste them into the Instructions box at https://claude.ai/code/routines, or use /schedule from the CLI as shown below."
/schedule commandsThen print:
# Run fix-issue every weekday morning
/schedule daily at 9am: paste-the-fix-issue-routine-prompt-here
# Run groom-stale weekly on Mondays
/schedule weekly on Monday at 8am: paste-the-groom-stale-routine-prompt-here
Explain that /schedule opens an interactive wizard and the easier path is usually the web UI at claude.ai/code/routines, where the user pastes the prompt, picks a repository, and selects triggers from a form.
For users who want fix-issue to react to a pull_request.opened event (e.g. a labeled issue triggers an auto-fix attempt), print this variant of the fix-issue routine:
"Set the GitHub trigger to
pull_request.openedwith label filtersentry-fix. The routine prompt remains identical — Claude will look at the Sentry issue ID in the PR body."
claude.ai/code/routines programmatically. The user must create routines through the official UI or /schedule.npx claudepluginhub jshchnz/sentry-workflows-plugin --plugin sentry-workflowsCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.