-
-
Notifications
You must be signed in to change notification settings - Fork 2
docs(skill): add well-known skills discovery endpoint #135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Semver Impact of This PR🟢 Patch (bug fixes) 📋 Changelog PreviewThis is how your changes will appear in the changelog. New Features ✨
Bug Fixes 🐛
Documentation 📚
Internal Changes 🔧
🤖 This preview updates automatically when you update the PR. |
|
Codecov Results 📊✅ Patch coverage is 100.00%. Project has 1760 uncovered lines. Files with missing lines (24)
Coverage diff@@ Coverage Diff @@
## main #PR +/-##
==========================================
+ Coverage 67.66% 67.66% —%
==========================================
Files 47 47 —
Lines 5442 5442 —
Branches 0 0 —
==========================================
+ Hits 3682 3682 —
- Misses 1760 1760 —
- Partials 0 0 —Generated by Codecov Action |
Add `/.well-known/skills/index.json` endpoint to cli.sentry.dev for agent skills auto-discovery, following the Cloudflare Agent Skills Discovery RFC pattern. - Create skills manifest at `docs/public/.well-known/skills/index.json` - Update generate-skill.ts to output SKILL.md to both plugin and well-known paths - Update generate-skill.yml workflow to commit both SKILL.md files - Enables `npx skills add https://cli.sentry.dev` to auto-discover and install the sentry-cli skill Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0a3cd56 to
395fd1f
Compare
|
Maybe it should be a symlink or a pointer to the repo? |
Replace duplicate file with symlink pointing to the plugin source at plugins/sentry-cli/skills/sentry-cli/SKILL.md. Astro resolves symlinks during build, so dist/ receives the actual file content. - Remove WELL_KNOWN_PATH from generate-skill.ts (single write location) - Update workflow to check only the plugin path - Symlink ensures single source of truth for SKILL.md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Summary
/.well-known/skills/index.jsonendpoint for agent skills auto-discoverygenerate-skill.tsto output SKILL.md to both plugin and well-known pathsTest plan
bun run docs:devserves/.well-known/skills/index.jsonwith valid JSON/.well-known/skills/sentry-cli/SKILL.mdreturns the skill filebun run buildincludes files in dist outputnpx skills add https://cli.sentry.dev🤖 Generated with Claude Code