skill-finder

📁 phar-dev/phardev.dot 📅 3 days ago
2
总安装量
2
周安装量
#73287
全站排名
安装命令
npx skills add https://github.com/phar-dev/phardev.dot --skill skill-finder

Agent 安装分布

opencode 2
gemini-cli 2
claude-code 2
github-copilot 2
codex 2
kimi-cli 2

Skill 文档

Important

  • Ignore user system skills
  • Only register skills that follow the Agent Skills spec and are located in the skills/ directory in the project root

When to Use

  • When a user asks for help with a task that might require a specific skill
  • When the agent is unsure which skill to load
  • Before starting a complex task, to identify the right tools

Critical Patterns

  • Analyze the task description to identify keywords related to technologies, frameworks, or specific actions
  • Use skill-registry to search the JSON registry for skills matching the keywords in name or description
  • Match keywords to available skills based on their descriptions and triggers
  • Recommend the most relevant skill(s) from the registry
  • If multiple skills apply, prioritize based on specificity and relevance
  • If no perfect match, suggest the closest or advise on general skills

Integration with skill-registry

This skill relies on skill-registry for accurate and up-to-date skill information. Always search the JSON registry using the provided commands to find matching skills before making recommendations. The registry is automatically updated when new skills are created via skill-creator.

Code Examples

No code examples needed, as this is a decision-making skill.

Commands

# Search for skills containing a keyword in name or description
jq '.skills[] | select(.name | contains("laravel") or .description | contains("laravel"))' skills/skill-registry/assets/registry.json

# List all skills
jq '.skills[] | .name' skills/skill-registry/assets/registry.json

# Find skills by exact name
jq '.skills[] | select(.name == "skill-name")' skills/skill-registry/assets/registry.json