Skip to content

Commit b052bbc

Browse files
sergicalclaude
andauthored
docs(skill): add well-known skills discovery endpoint (#135)
## Summary - Add `/.well-known/skills/index.json` endpoint for agent skills auto-discovery - Update `generate-skill.ts` to output SKILL.md to both plugin and well-known paths - Follows the [Cloudflare Agent Skills Discovery RFC](https://github.com/cloudflare/agent-skills-discovery-rfc) pattern ## Test plan - [x] Verify `bun run docs:dev` serves `/.well-known/skills/index.json` with valid JSON - [x] Verify `/.well-known/skills/sentry-cli/SKILL.md` returns the skill file - [x] Verify `bun run build` includes files in dist output - [ ] After deploy, test with `npx skills add https://cli.sentry.dev` 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 45e5c5e commit b052bbc

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"skills": [
3+
{
4+
"name": "sentry-cli",
5+
"description": "Guide for using the Sentry CLI to interact with Sentry from the command line. Use when the user asks about viewing issues, events, projects, organizations, making API calls, or authenticating with Sentry via CLI.",
6+
"files": ["SKILL.md"]
7+
}
8+
]
9+
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../../../plugins/sentry-cli/skills/sentry-cli/SKILL.md

0 commit comments

Comments
 (0)