Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express...
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
This skill helps you discover and install skills from the reskill ecosystem.
This skill instructs the agent to run CLI commands via reskill, an open-source, Git-based package manager for AI agent skills. Why a specific registry? reskill supports multiple registries. This skill defaults to the Rush community registry (https://rush.zhenguanyu.com/) β the primary public registry for the reskill ecosystem, similar to how npm defaults to https://registry.npmjs.org. Users can override it at any time via --registry, the RESKILL_REGISTRY environment variable, or defaults.publishRegistry in skills.json. CLI execution approach: To avoid downloading remote code on every invocation, we recommend installing reskill globally first: npm install -g reskill If a global installation is not available, npx reskill@latest can be used as a fallback. The agent should check for a global install before falling back to npx. Key Principles: Search β Present β Ask β Install β always show results first, ask the user before installing. Be registry-aware β use the configured registry, tell the user which registry you're searching. Prefer local CLI β use globally installed reskill when available; fall back to npx only if needed.
Use this skill when the user: Asks "how do I do X" where X might be a common task with an existing skill Says "find a skill for X" or "is there a skill for X" Asks "can you do X" where X is a specialized capability Expresses interest in extending agent capabilities Wants to create, write, or publish a skill to a registry Wants to search for tools, templates, or workflows Mentions they wish they had help with a specific domain (design, testing, deployment, etc.)
For these well-known intents, skip the search and directly recommend the corresponding skill: User IntentRecommended SkillCreate, write, or publish a skill to the registry@kanyun/rush-reskill-usage If the skill is not already installed, offer to install it. Then proceed with Step 4 (Determine Target Agents) as usual.
reskill is a Git-based package manager for AI agent skills. It provides declarative configuration, version locking, and seamless synchronization for managing skills across projects and teams. Key commands for skill discovery: reskill find <query> β Search for skills by keyword reskill find <query> --json β Search with machine-readable JSON output reskill install <ref> β Install a skill reskill list β List installed skills reskill info <skill> β Show skill details
CLI resolution: Check if reskill is installed globally. If available, use reskill directly. Otherwise fall back to npx reskill@latest. which reskill Registry resolution (highest to lowest priority): --registry <url> CLI option RESKILL_REGISTRY environment variable defaults.publishRegistry in skills.json Default: https://rush.zhenguanyu.com/ If none of the first three are set, pass --registry https://rush.zhenguanyu.com explicitly. Tell the user which registry you're searching.
When a user asks for help with something, identify: The domain (e.g., React, testing, design, deployment) The specific task (e.g., writing tests, creating animations, reviewing PRs) Whether this is a common enough task that a skill likely exists
Use --json for structured results. Examples below use reskill (substitute npx reskill@latest if not globally installed): reskill find "<query>" --json --registry https://rush.zhenguanyu.com The JSON output has this structure: { "total": 2, "items": [ { "name": "@scope/skill-name", "description": "What this skill does", "latest_version": "1.0.0", "keywords": ["keyword1", "keyword2"], "publisher": { "handle": "author" }, "updated_at": "2025-01-01T00:00:00Z" } ] } IMPORTANT: Use progressive search to maximize results. The registry may not support multi-word fuzzy matching, so follow this strategy: Round 1: Try the natural query first reskill find "frontend design" --json --registry https://rush.zhenguanyu.com If total > 0, proceed to Step 3 (present results). Round 2: Try hyphenated version Skill names often use hyphens. If Round 1 returns 0 results, try connecting keywords with a hyphen: reskill find "frontend-design" --json --registry https://rush.zhenguanyu.com Round 3: Broaden to the most relevant single keyword If still 0 results, pick the most specific keyword from the user's query and search with that alone: reskill find "frontend" --json --registry https://rush.zhenguanyu.com Choose the keyword that best narrows the domain (e.g., prefer "frontend" over "design" because "design" is too broad). Round 4 (optional): Try alternative/synonym keywords If still no results, try synonyms or related terms: "frontend" β "ui", "web", "react" "deploy" β "deployment", "ci-cd", "devops" "test" β "testing", "jest", "playwright" Agent-side filtering When broader searches return multiple results, read each item's description field and filter by relevance to the user's original request. Only present skills whose description genuinely matches what the user needs. Do not present all results blindly. Example flow β user asks "help me with frontend design": 1. find "frontend design" β 0 results 2. find "frontend-design" β 0 results 3. find "frontend" β 3 results 4. Read descriptions β filter β 1 result is relevant to UI design 5. Present that 1 result to user Search query examples: User saysRound 1Round 2 (hyphenated)Round 3 (single keyword)"How do I make my React app faster?""react performance""react-performance""react""Can you help me with PR reviews?""pr review""pr-review""review""I need to create a changelog""changelog"ββ"Help me write better TypeScript""typescript practices""typescript-practices""typescript" Stop as soon as you get relevant results β no need to run all rounds.
When you find relevant skills, present them clearly: The skill name and description The version and author Which registry the result came from (public or private) The install command Then ask the user which one(s) they want to install. Example response: I found a skill that might help! (from registry: rush.zhenguanyu.com) **@scope/react-best-practices** (v1.2.0) React and performance optimization guidelines. To install: reskill install @scope/react-best-practices -y --registry https://rush.zhenguanyu.com Would you like me to install it? If multiple results are found, present the top 2-3 most relevant ones and let the user choose. Once the user confirms (e.g., "install it", "yes", "install 1 and 3"), proceed to install all confirmed skills β no need to ask again for each one.
Before installing, resolve which agent(s) to install to. Follow this priority: Priority 1: User explicitly specified --agent If the user said something like "install to cursor" or "install to claude-code", pass -a <agent> directly β skip all detection. Priority 2: Read skills.json β defaults.targetAgents Look for skills.json in the current directory and up to 3 parent directories. If found, check for defaults.targetAgents: { "defaults": { "targetAgents": ["cursor", "claude-code"] } } If targetAgents is configured, use those agents directly with -a: reskill install <name> -y -a cursor claude-code --registry https://rush.zhenguanyu.com Priority 3: Detect agent directories If no skills.json is found (or it has no targetAgents), scan the current directory and up to 3 parent directories for known agent directories: DirectoryAgent.cursor/cursor.claude/claude-code.codex/codex.windsurf/windsurf.github/skills/copilot.opencode/opencode Note: For GitHub Copilot, check .github/skills/ (not just .github/), since .github/ alone usually contains workflows/issue templates and does not imply Copilot usage. If one or more agent directories are detected, tell the user what was found and confirm before installing: Detected agent directory: .cursor/ Will install to Cursor (.cursor/skills/). Proceed? (or specify a different agent) If the user confirms, install with -a: reskill install <name> -y -a cursor --registry https://rush.zhenguanyu.com If multiple agent directories are detected, list all of them and let the user choose which ones to install to. Priority 4: Ask the user If no agent information is available from any of the above, ask the user which agent(s) to install to: No agent configuration found. Which agent(s) would you like to install this skill to? Supported agents: cursor, claude-code, codex, windsurf, copilot, opencode Then install with the user's chosen agent(s).
# Install to specific agent(s) reskill install <name> -y -a <agents...> --registry https://rush.zhenguanyu.com # Install globally (user-level, available in all projects) reskill install <name> -y -g --registry https://rush.zhenguanyu.com The -y flag skips CLI confirmation prompts. After installation, let the user know the skill is ready and briefly describe what new capabilities it provides.
When constructing search queries, consider these categories: CategoryExample QueriesWeb Developmentreact, nextjs, typescript, css, tailwind, vueTestingtesting, jest, playwright, e2e, unit-testDevOpsdeploy, docker, kubernetes, ci-cd, github-actionsDocumentationdocs, readme, changelog, api-docsCode Qualityreview, lint, refactor, best-practices, clean-codeDesignui, ux, design-system, accessibility, figmaProductivityworkflow, automation, git, project-managementDatadatabase, sql, data-analysis, visualizationSkill Devreskill, publish, create-skill, skill-authoring
Follow the progressive strategy: multi-word β hyphenated β single keyword β synonyms Pick the most specific keyword when narrowing down: prefer "frontend" over "design", prefer "playwright" over "testing" Try alternative terms: "deploy" β "deployment", "ci-cd", "devops" Always read descriptions: when a broad search returns many results, use descriptions to filter relevant ones Skill names use hyphens: remember to try hyphenated versions like "code-review", "best-practices"
If no relevant skills exist after exhausting all search rounds (multi-word β hyphenated β single keyword β synonyms): Acknowledge that no existing skill was found and briefly mention what you searched for Offer to help with the task directly using your general capabilities Suggest the user could create their own skill Example: I searched the registry with several queries ("frontend design", "frontend-design", "frontend") but didn't find a matching skill. I can still help you with this task directly! Would you like me to proceed? If this is something you do often, you could also create your own skill and share it: mkdir my-skill && echo "---\nname: my-skill\n---\n# My Skill" > my-skill/SKILL.md
Before searching for new skills, you can check what's already installed: # List all installed skills reskill list # Get details about a specific skill reskill info <skill-name> This avoids suggesting skills the user already has.
Agent frameworks, memory systems, reasoning layers, and model-native orchestration.
Largest current source with strong distribution and engagement signals.