Files
getsentry__sentry-agent-skills/.github/workflows/release.yml
T
Cody De Arkland f96292df15 docs: Add AGENTS.md with skill authoring guidelines
- Token optimization patterns (tables over prose, ~100-200 lines target)
- Skill structure template with phases and verification
- Self-challenging verification for workflow skills
- Version requirements and troubleshooting table patterns
- Technical accuracy checklist (verify against Sentry docs)

Also update release.yml to include sentry-fix-issues in release notes
2026-01-13 08:59:14 -08:00

57 lines
1.7 KiB
YAML

name: Release Skills Package
on:
push:
branches: [main]
workflow_dispatch:
jobs:
package:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Create skills tarball
run: |
cd skills
tar -czvf ../sentry-agent-skills.tar.gz .
- name: Update latest release
uses: softprops/action-gh-release@v2
with:
tag_name: latest
name: Latest Skills
files: sentry-agent-skills.tar.gz
prerelease: false
make_latest: true
body: |
Automatically updated Sentry agent skills package.
## Installation
Download and extract to your editor's skills directory:
```bash
# Example for Claude Code (project-level)
mkdir -p .claude/skills
curl -L https://github.com/getsentry/sentry-agent-skills/releases/download/latest/sentry-agent-skills.tar.gz | tar -xz -C .claude/skills
# Or use sentry-wizard
npx @sentry/wizard@latest --skills
```
## Included Skills
**Setup:**
- `sentry-nextjs-wizard` - Setup Sentry in Next.js projects
- `sentry-setup-tracing` - Setup Sentry Tracing and Performance Monitoring
- `sentry-setup-logging` - Setup Sentry Logging
- `sentry-setup-metrics` - Setup Sentry Metrics
- `sentry-setup-ai-monitoring` - Setup Sentry AI Agent Monitoring
**Workflow:**
- `sentry-fix-issues` - Find and fix production issues using Sentry MCP
- `sentry-code-review` - Analyze and resolve Sentry comments on GitHub PRs