.github/skills/docs-seeker/SKILL.md
--- name: docs-seeker description: Search library/framework documentation via llms.txt (context7.com). Use for API docs, GitHub repository analysis, technical documentation lookup, latest library features. Common pattern use case: "How to use [component] in [library]?", "How can I integrate [component] in [library]?", "How to setup [component] in [library]?". --- # docs-seeker Skill ## Prerequisites - Setup CONTEXT7_API_KEY in .env file with your API key from context7.com. - Setup `context7-m
npx skillsauth add sonht1109/vscode-copilot-kit .github/skills/docs-seekerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
context7-mcp server running locally.Detect User Intent: Only use if the user query indicates they are looking for documentation or code examples related to a specific library, framework, or API. Look for keywords like "how to use", "integrate", "setup", "documentation", "API reference", etc. If yes, proceed to step 2. If no, skip this skill.
Prepare query: From the user query, extract the library/framework name. Also, update the query to specifically ask for code examples if not already included. Output:
{
"query": "<prepared_query>",
"library": "<library_name>"
}
[
{
"id": "/facebook/react",
"name": "React",
"description": "A JavaScript library for building user interfaces",
"totalSnippets": 1250,
"trustScore": 95,
"benchmarkScore": 88,
"versions": ["v18.2.0", "v17.0.2"]
}
]
Get the top 3 results with highest trustScore and benchmarkScore. For each result, extract the id field as library_id to use in next step until you get relevant documentation in step 4.
{
"libraryId": "<library_id>",
"query": "<prepared_query>",
"type": "json", // or txt
}
development
This skill focuses on writing/designing effective and comprehensive tests for code. It emphasizes the importance of covering various scenarios, including happy cases, error cases, edge cases, and input validation. The skill also highlights the need to write tests based on expected correct behavior rather than current implementation, and to maintain a high level of coverage (at least 80%).
content-media
Use when complex problems require systematic step-by-step reasoning with ability to revise thoughts, branch into alternative approaches, or dynamically adjust scope. Ideal for multi-stage analysis, design planning, problem decomposition, or tasks with initially unclear scope. DO NOT use when single-step answers suffice.
tools
--- name: sentry 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. Primary workflow: given a short issue ID (e.g. PROJECT-123), fetch full bug report with description and stack trace. --- # Sentry CLI Skill This skill handles Sentry CLI operations: authentication, issue lookup by short ID, event details, and bug report g
documentation
Use when doing tasks related to markdown files, such as editing README.md or other documentation files.