A growing collection of reusable skills for Codex, Claude Code, and other Agent Skills-compatible coding agents.
Use the open skills CLI to browse and install skills from this repository:
npx skills@latest add lwh950901/skillsInstall every skill globally for a specific agent:
npx skills@latest add lwh950901/skills -g -a codex --skill '*'
npx skills@latest add lwh950901/skills -g -a claude-code --skill '*'Install one skill:
npx skills@latest add lwh950901/skills \
--skill find-github-ai-projectsOmit -g for project-local installation.
| Skill | Use it for | Default result |
|---|---|---|
find-github-projects |
Discover and evaluate GitHub projects across technical domains | 5 evidence-backed recommendations with risks, modification ideas, and a development plan |
find-github-ai-projects |
Find AI application and full-stack AI projects worth adapting | 5 portfolio-grade recommendations with AI, product, and full-stack differentiation paths |
Both skills use live GitHub data, cap user-requested results at 20, and give community signals such as stars a 25% weight instead of treating popularity as quality.
| Agent or installation | General projects | AI application projects |
|---|---|---|
| Codex standalone skill | $find-github-projects |
$find-github-ai-projects |
| Claude Code standalone skill | /find-github-projects |
/find-github-ai-projects |
| Claude Code native plugin | /elvis-skills:find-github-projects |
/elvis-skills:find-github-ai-projects |
Examples:
$find-github-projects find 5 TypeScript dashboard projects worth adapting
/find-github-ai-projects find 8 RAG or agent projects suitable for a portfolio
The repository root is also a Codex plugin named elvis-skills. For local development:
codex plugin marketplace add /absolute/path/to/skills
codex plugin add elvis-skills@local-skillsStart a new Codex thread after installing or updating the plugin.
Optional Codex prompt aliases live in prompts/:
/prompts:find-project/prompts:find-ai-project
After the repository is available on GitHub:
claude plugin marketplace add lwh950901/skills
claude plugin install elvis-skills@elvis-skillsFor local plugin development:
claude --plugin-dir .The current skills include a Python standard-library scanner backed by the live GitHub API. Set GITHUB_TOKEN for higher limits.
Useful flags:
--cache-ttl-hours 6
--no-cache
--enrich-release
--include-readme
--enrich
--wait-on-rate-limit
Run all repository tests:
npm testValidate universal skill discovery:
npx skills@latest add . --listValidate native plugin manifests:
claude plugin validate .
python3 /path/to/plugin-creator/scripts/validate_plugin.py .Each skill is self-contained under skills/<skill-name>/ with its own SKILL.md, references, and scripts.