create-agent-skills
v1.1.7
Published
CLI tool to install Agent Skills for AI coding assistants
Downloads
38
Maintainers
Readme
Agent Skills CLI
CLI tool to install Agent Skills for AI coding assistants.
Installation
npx create-agent-skills@latestOr install globally:
npm install -g create-agent-skills@latestUsage
Run the CLI and follow the interactive prompts:
npx create-agent-skills@latestOptions
Install Location
Workspace-.agent/skills/(project-specific)Global-~/.gemini/antigravity/skills/(all projects)
Skill Selection
- Use
Spaceto toggle skills - Use
ato toggle all - Use
ito invert selection - Press
Enterto confirm
- Use
Available Skills
| Skill | Description |
|-------|-------------|
| code-review | Reviews code for bugs, style, and security issues |
| create-agent-skill | Helps create new skills following guidelines |
| flutter-clean-arch | Flutter Clean Architecture using BLoC, Dio, and GetIt |
| git-commit | Writes conventional commit messages |
| git-pr | Creates well-structured pull requests |
| git-review | Reviews PRs for code quality and best practices |
| landing-page-slider | Landing pages with integrated slider for presentations |
| lumi-tester | Guide for extending the Lumi Tester framework |
| project-documentation | Generates comprehensive documentation for existing projects |
| remotion | Create videos programmatically in React |
| rust-backend | Build backend services with Rust and Clean Architecture |
| tailwindcss-v4 | Tailwind CSS v4 setup and migration guide |
| tauri-v2 | Build desktop apps with Tauri v2 + React |
| testing | Helps write unit, integration, and E2E tests |
| threejs | Complete Three.js development guide |
Creating New Skills
See SKILL_GUIDELINES.md for the complete guide.
Quick Start
mkdir -p .agent/skills/my-skillCreate SKILL.md with:
---
name: my-skill
description: What this skill does. Use when...
---
# My Skill
Instructions for the agent...Folder Structure
.agent/skills/<skill-name>/
├── SKILL.md # Main instructions (REQUIRED)
├── scripts/ # Helper scripts (optional)
├── examples/ # Reference implementations (optional)
└── resources/ # Templates and other assets (optional)Development
# Clone the repo
git clone https://github.com/Nghi-NV/create-agent-skills.git
cd create-agent-skills
# Install dependencies
npm install
# Run locally
node bin/cli.jsLicense
MIT
