Skip to content

luongnv89/skills

Agent Skills

License: MIT PRs Welcome Latest Release GitHub Stars

Ready-Made Skills for AI Coding Agents

Browse the catalog. Pick what you need. Install with one command. Each skill is independent -- no bundle, no framework, no lock-in.

Works with any AI coding tool that supports agent skills -- Claude Code, Cursor, Windsurf, GitHub Copilot, OpenAI Codex, OpenCode, and more.

Browse the catalog | Install a skill


Install

Pick one skill:

npx skills add https://github.com/luongnv89/skills --skill code-review

Pick several:

npx skills add https://github.com/luongnv89/skills --skill code-review --skill auto-push --skill test-coverage

Or grab everything:

npx skills add https://github.com/luongnv89/skills

agent-skill-manager

Use agent-skill-manager (asm) to manage skills across all your AI coding agents from a single TUI/CLI:

npm install -g agent-skill-manager
asm install github:luongnv89/skills
asm search        # Search skills by name or description
asm list          # List all installed skills
Other install methods

Remote install (no clone)

Interactive TUI to pick skills, tools, and scope:

curl -sSL https://raw.githubusercontent.com/luongnv89/skills/main/remote-install.sh | bash

Non-interactive:

curl -sSL https://raw.githubusercontent.com/luongnv89/skills/main/remote-install.sh | bash -s -- \
  --skills "code-review,auto-push" --tools "Claude Code" --scope global

Clone and run locally

git clone https://github.com/luongnv89/skills.git
cd skills && bash install.sh

Skill Catalog

Every skill is standalone. Install one, install ten -- they don't depend on each other.

To install any skill, copy the command below and replace <skill-name> with the skill name from the catalog:

npx skills add https://github.com/luongnv89/skills --skill <skill-name>

Find by Category

Category What it covers
Code Quality Reviews, optimization, testing, usability
Shipping Git push, CI/CD, releases, VS Code publishing
Product Planning Ideas, naming, PRDs, architecture, task breakdown
Frontend and Design UIs, logos, themes, diagrams
Documentation Docs, README, SEO, open source, agent config
App Store ASO, review guideline compliance
Tooling CLI builder, local LLMs, notes, scripts, skill management

Code Quality

Skill Version Effort What it does
code-review 1.0.1 medium Reviews based on Code Smells + The Pragmatic Programmer. Structured reports by severity
code-optimizer 1.2.0 medium Finds bottlenecks, memory leaks, caching gaps, concurrency issues
test-coverage 1.2.0 low Targets untested branches and edge cases in your existing test suite
dont-make-me-think 1.1.0 medium Usability reviews using Krug's principles with visual scorecards

Shipping

Skill Version Effort What it does
auto-push 1.0.0 low Stage, commit, push with secret and large-file detection
devops-pipeline 1.0.0 medium Pre-commit hooks + GitHub Actions for quality gates
release-manager 2.2.0 max Version bump, changelog, tags, GitHub release, PyPI/npm publish
vscode-extension-publisher 1.0.0 high Publish VS Code extensions to the marketplace with CI setup

Product Planning

Skill Version Effort What it does
idea-validator 1.2.2 max Feasibility and market viability feedback before you build
name-checker 1.1.0 max Trademark, domain, social, npm, PyPI, Homebrew, apt -- one pass
prd-generator 1.2.2 max Structured PRDs from a description or validated idea
system-design 1.2.3 max Technical architecture docs with data flow diagrams
tasks-generator 1.2.2 max Sprint-ready task breakdowns from your PRD

Frontend and Design

Skill Version Effort What it does
frontend-design 1.2.0 high Production-grade UIs with usability-first design
logo-designer 1.2.0 medium Professional logos with automatic project context detection
theme-transformer 1.0.0 medium Reskin any UI into cyberpunk, neon, or digital-dark themes
excalidraw-generator 1.2.0 high 25+ diagram types as Excalidraw JSON
drawio-generator 1.0.1 high Draw.io diagrams with multi-page and C4 support
openspec-task-loop 1.0.0 medium Spec-first, one-task-at-a-time implementation loop

Documentation

Skill Version Effort What it does
docs-generator 1.2.0 low Restructure scattered docs into a coherent hierarchy
readme-to-landing-page 2.0.0 high Transform any README into a landing page (PAS, AIDA, StoryBrand)
seo-ai-optimizer 1.0.1 high Technical SEO, structured data, and AI bot accessibility
oss-ready 1.1.0 low LICENSE, CONTRIBUTING, CODE_OF_CONDUCT, GitHub templates
agent-config 1.1.0 medium CLAUDE.md and AGENTS.md following best practices

App Store

Skill Version Effort What it does
aso-marketing 1.1.0 max Full-lifecycle ASO for Apple App Store and Google Play
appstore-review-checker 1.0.0 high Pre-submission audit against 150+ Apple review guidelines

Tooling

Skill Version Effort What it does
cli-builder 1.0.0 high Build production CLI tools via 5-step approval-gated workflow
ollama-optimizer 1.0.1 medium Tune Ollama for max speed based on your GPU/RAM/CPU
note-taker 1.4.1 low Git-backed notes (text, voice, images) with task extraction
install-script-generator 2.0.0 high Cross-platform installers with environment detection
github-issue-creator 1.0.0 medium Issues from screenshots, emails, bug reports -- with PII redaction
opencode-runner 1.2.0 medium Delegate tasks to opencode with free cloud models
context-hub 1.0.0 low Fetch current API/SDK docs before writing integration code
skill-creator 1.1.0 max Create, validate, and package your own skills
skill-inventory-auditor 1.0.0 low Find and remove duplicate skill installations

FAQ

Do I need all the skills? No. Each skill is independent. Install only what you need.

Which AI tools are supported? Any AI coding tool that supports agent skills. Tested with Claude Code, Cursor, Windsurf, GitHub Copilot, OpenAI Codex, and OpenCode. The installer handles file locations and formats automatically.

Can I create my own skills? Yes. Use the skill-creator skill or follow the Contributing Guide.

How is this different from custom prompts? A skill is a structured workflow with references, templates, and quality checks -- version-controlled and shareable. A prompt is a one-off instruction.

Does this affect my runtime code? No. Skills guide your AI agent during development. Nothing to deploy, no runtime dependencies.


Get Started

npx skills add https://github.com/luongnv89/skills --skill code-review

View all skills | Contribute | MIT Licensed


Supported Tool Paths (Manual Installation)
Tool Global path Project path
Claude Code ~/.claude/skills/<skill>/ .claude/skills/<skill>/
Cursor ~/.agents/skills/<skill>/ + .cursor/rules/<skill>.mdc same, relative
Windsurf ~/.agents/skills/<skill>/ + .windsurf/rules/<skill>.md same, relative
GitHub Copilot ~/.agents/skills/<skill>/ + .github/instructions/<skill>.instructions.md same, relative
OpenAI Codex ~/.agents/skills/<skill>/ + ~/.codex/AGENTS.md same, relative
OpenCode ~/.agents/skills/<skill>/ same, relative
Project Structure
.
├── skills/              # Skill source files
│   └── skill-name/
│       ├── SKILL.md     # Skill definition
│       ├── scripts/     # Optional scripts
│       ├── references/  # Optional docs
│       └── assets/      # Optional templates
└── .claude/             # Claude-specific config
Creating New Skills

Use the skill-creator skill or create manually:

---
name: my-skill
version: 1.0.0
description: What it does and when to use it
---

# Instructions for the AI agent...

See CONTRIBUTING.md for detailed guidelines.

Contributing

Contributions are welcome. Read the Contributing Guide and Code of Conduct.

Security

See SECURITY.md for reporting vulnerabilities.

Acknowledgements

Website -- Claude How-To -- Blog

About

Supercharge your AI agents/bots with reusable skills

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages