From qe-framework
Searches skills.sh for skills and installs them as Claude Code skills. Handles global and local installation with automatic Q-prefixing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/qe-framework:Qfind-skillsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Searches the skills.sh ecosystem for skills, analyzes the original SKILL.md, and directly creates them as Claude Code skills.
Searches the skills.sh ecosystem for skills, analyzes the original SKILL.md, and directly creates them as Claude Code skills.
Analyze the user's request and search skills.sh.
# Method 1: Search skills.sh via WebFetch
WebFetch https://skills.sh/ "Find skill listings related to the search term"
# Method 2: npx skills find (if CLI is available)
npx skills find [query]
Fetch the original SKILL.md from GitHub for the found skill.
# Fetch SKILL.md content via GitHub raw URL
curl -s https://raw.githubusercontent.com/<owner>/<repo>/main/skills/<skill-name>/SKILL.md
Or via WebFetch:
WebFetch https://github.com/<owner>/<repo>/blob/main/skills/<skill-name>/SKILL.md
MUST use AskUserQuestion tool (do NOT output as plain text):
~/.claude/skills/<skill-name>/SKILL.md — available in all projects.claude/skills/<skill-name>/SKILL.md — available in the current project onlyAnalyze the original content and convert it into a Claude Code-compatible SKILL.md file.
Conversion Rules:
---)Q prefix to the skill name (to distinguish user custom skills)npx skills add commands with direct file creation# Global installation
mkdir -p ~/.claude/skills/Q<skill-name>
# Create SKILL.md using the Write tool
# Local installation
mkdir -p .claude/skills/Q<skill-name>
# Create SKILL.md using the Write tool
# Verify file exists
ls -la ~/.claude/skills/Q<skill-name>/SKILL.md # global
ls -la .claude/skills/Q<skill-name>/SKILL.md # local
After installation, inform the user of:
/Q<skill-name> from the next session| Category | Search Keywords |
|---|---|
| Web Development | react, nextjs, typescript, css, tailwind |
| Testing | testing, jest, playwright, e2e |
| DevOps | deploy, docker, kubernetes, ci-cd |
| Documentation | docs, readme, changelog, api-docs |
| Code Quality | review, lint, refactor, best-practices |
| Design | ui, ux, design-system, accessibility |
| Productivity | workflow, automation, git |
vercel-labs/skills, ComposioHQ/awesome-claude-skills/Qcommand-creator)npx claudepluginhub inho-team/qe-framework --plugin qe-frameworkCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.