docs(skill): add well-known skills discovery endpoint#135
Merged
Conversation
Contributor
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. |
Contributor
|
Contributor
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
Member
|
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>
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.
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
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