skillaug
v1.3.1
Published
Universal skills loader for AI coding agents - install and load Anthropic SKILL.md format skills in any agent
Maintainers
Readme
SkillAug
The closest implementation matching Claude Code's skills system — same prompt format, same marketplace, same folders, just using CLI instead of tools.
npm i -g skillaug
skillaug install huydepzai121/skill/.claude/skills
skillaug syncAuthor: Nguyễn Thế Huy
What Is This?
SkillAug brings Anthropic's skills system to all AI coding agents (Claude Code, Cursor, Windsurf, Aider).
For Claude Code users:
- Install skills from any GitHub repo, not just the marketplace
- Share skills across multiple agents
- Version control your skills in your repo
For other agents (Cursor, Windsurf, Aider):
- Get Claude Code's skills system universally
- Access Anthropic's marketplace skills via GitHub
- Use progressive disclosure (load skills on demand)
How It Matches Claude Code Exactly
SkillAug replicates Claude Code's skills system with 100% compatibility:
✅ Same prompt format — <available_skills> XML with skill tags
✅ Same marketplace — Install from anthropics/skills
✅ Same folders — Uses .claude/skills/ by default
✅ Same SKILL.md format — YAML frontmatter + markdown instructions
✅ Same progressive disclosure — Load skills on demand, not upfront
Only difference: Claude Code uses Skill tool, SkillAug uses skillaug read <name> CLI command.
Advanced: Use --universal flag to install to .agent/skills/ for Claude Code + other agents sharing one CLAUDE.md.
Quick Start
1. Install
npm i -g skillaug2. Install Skills
# Install from custom skills repository (interactive selection, default: project)
skillaug install huydepzai121/skill/.claude/skills
# Or install from any GitHub repo
skillaug install your-org/custom-skills3. Sync to CLAUDE.md
skillaug syncDone! Your agent now has skills with the same <available_skills> format as Claude Code.
4. Update Skills (Optional)
skillaug updateAutomatically checks and updates all installed skills from their source repositories.
How It Works (Technical Deep Dive)
Claude Code's Skills System
When you use Claude Code with skills installed, Claude's system prompt includes:
<skills_instructions>
When users ask you to perform tasks, check if any of the available skills below can help complete the task more effectively.
How to use skills:
- Invoke skills using this tool with the skill name only (no arguments)
- When you invoke a skill, you will see <command-message>The "{name}" skill is loading</command-message>
- The skill's prompt will expand and provide detailed instructions
Important:
- Only use skills listed in <available_skills> below
- Do not invoke a skill that is already running
</skills_instructions>
<available_skills>
<skill>
<name>pdf</name>
<description>Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms...</description>
<location>plugin</location>
</skill>
<skill>
<name>xlsx</name>
<description>Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis...</description>
<location>plugin</location>
</skill>
</available_skills>How Claude uses it:
- User asks: "Extract data from this PDF"
- Claude scans
<available_skills>→ finds "pdf" skill - Claude invokes:
Skill("pdf") - SKILL.md content loads with detailed instructions
- Claude follows instructions to complete task
SkillAug's System (Identical Format)
SkillAug generates the exact same <available_skills> XML in your CLAUDE.md:
<skills_system priority="1">
## Available Skills
<!-- SKILLS_TABLE_START -->
<usage>
When users ask you to perform tasks, check if any of the available skills below can help complete the task more effectively.
How to use skills:
- Invoke: Bash("skillaug read <skill-name>")
- The skill content will load with detailed instructions
- Base directory provided in output for resolving bundled resources
Usage notes:
- Only use skills listed in <available_skills> below
- Do not invoke a skill that is already loaded in your context
</usage>
<available_skills>
<skill>
<name>pdf</name>
<description>Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms...</description>
<location>project</location>
</skill>
<skill>
<name>xlsx</name>
<description>Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis...</description>
<location>project</location>
</skill>
</available_skills>
<!-- SKILLS_TABLE_END -->
</skills_system>How agents use it:
- User asks: "Extract data from this PDF"
- Agent scans
<available_skills>→ finds "pdf" skill - Agent invokes:
Bash("skillaug read pdf") - SKILL.md content is output to agent's context
- Agent follows instructions to complete task
Side-by-Side Comparison
| Aspect | Claude Code | SkillAug |
|--------|-------------|------------|
| System Prompt | Built into Claude Code | In CLAUDE.md |
| Invocation | Skill("pdf") tool | skillaug read pdf CLI |
| Prompt Format | <available_skills> XML | <available_skills> XML (identical) |
| Folder Structure | .claude/skills/ | .claude/skills/ (identical) |
| SKILL.md Format | YAML + markdown | YAML + markdown (identical) |
| Progressive Disclosure | Yes | Yes |
| Bundled Resources | references/, scripts/, assets/ | references/, scripts/, assets/ (identical) |
| Marketplace | Anthropic marketplace | GitHub (huydepzai121/skill) |
Everything is identical except the invocation method.
The SKILL.md Format
Both use the exact same format:
---
name: pdf
description: Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms.
---
# PDF Skill Instructions
When the user asks you to work with PDFs, follow these steps:
1. Install dependencies: `pip install pypdf2`
2. Extract text using the extract_text.py script in scripts/
3. For bundled resources, use the base directory provided in the skill output
4. ...
[Detailed instructions that Claude/agent follows]Progressive disclosure: The full instructions load only when the skill is invoked, keeping your agent's context clean.
Why CLI Instead of MCP?
MCP (Model Context Protocol) is Anthropic's protocol for connecting AI to external tools and data sources. It's great for:
- Database connections
- API integrations
- Real-time data fetching
- External service integration
Skills (SKILL.md format) are different — they're for:
- Specialized workflows (PDF manipulation, spreadsheet editing)
- Bundled resources (scripts, templates, references)
- Progressive disclosure (load instructions only when needed)
- Static, reusable patterns
Why not implement skills via MCP?
Skills are static instructions, not dynamic tools MCP is for server-client connections. Skills are markdown files with instructions.
No server needed Skills are just files. MCP requires running servers.
Universal compatibility CLI works with any agent (Claude Code, Cursor, Windsurf, Aider). MCP requires MCP support.
Follows Anthropic's design Anthropic created skills as SKILL.md files, not MCP servers. We're implementing their spec.
Simpler for users
skillaug install anthropics/skillsvs "configure MCP server, set up authentication, manage server lifecycle"
MCP and skills solve different problems. SkillAug implements Anthropic's skills spec (SKILL.md format) the way it was designed — as progressively-loaded markdown instructions.
Claude Code Compatibility
You can use both Claude Code plugins and SkillAug project skills together:
In your <available_skills> list:
<skill>
<name>pdf</name>
<description>...</description>
<location>plugin</location> <!-- Claude Code marketplace -->
</skill>
<skill>
<name>custom-skill</name>
<description>...</description>
<location>project</location> <!-- SkillAug from GitHub -->
</skill>They coexist perfectly. Claude invokes marketplace plugins via Skill tool, SkillAug skills via CLI. No conflicts.
Advanced: Universal Mode for Multi-Agent Setups
Problem: If you use Claude Code + other agents (Cursor, Windsurf, Aider) with one CLAUDE.md, installing to .claude/skills/ can create duplicates with Claude Code's marketplace plugins.
Solution: Use --universal to install to .agent/skills/ instead:
skillaug install huydepzai121/skill/.claude/skills --universalThis installs skills to .agent/skills/ which:
- ✅ Works with all agents via CLAUDE.md
- ✅ Doesn't conflict with Claude Code's native marketplace plugins
- ✅ Keeps Claude Code's
<available_skills>separate from CLAUDE.md skills
When to use:
- ✅ You use Claude Code + Cursor/Windsurf/Aider with one CLAUDE.md
- ✅ You want to avoid duplicate skill definitions
- ✅ You prefer
.agent/for infrastructure (keeps.claude/for Claude Code only)
When not to use:
- ❌ You only use Claude Code (default
.claude/skills/is fine) - ❌ You only use non-Claude agents (default
.claude/skills/is fine)
Priority order: SkillAug searches 4 locations in priority order:
./.agent/skills/(project universal)~/.agent/skills/(global universal)./.claude/skills/(project)~/.claude/skills/(global)
Skills with same name only appear once (highest priority wins).
Commands
skillaug install <source> [options] # Install from GitHub (interactive)
skillaug update [-y] # Update all skills from source repositories
skillaug sync [-y] # Update CLAUDE.md (interactive)
skillaug list # Show installed skills
skillaug read <name> # Load skill (for agents)
skillaug manage # Remove skills (interactive)
skillaug remove <name> # Remove specific skillFlags
--global— Install globally to~/.claude/skills(default: project install)--universal— Install to.agent/skills/instead of.claude/skills/(advanced)-y— Skip interactive selection (for scripts/CI)-f, --force— Force overwrite existing skills without confirmation
Installation Modes
Default (recommended):
skillaug install huydepzai121/skill/.claude/skills
# → Installs to ./.claude/skills (project, gitignored)Global install:
skillaug install huydepzai121/skill/.claude/skills --global
# → Installs to ~/.claude/skills (shared across projects)Universal mode (advanced):
skillaug install huydepzai121/skill/.claude/skills --universal
# → Installs to ./.agent/skills (for Claude Code + other agents)Force overwrite (for reinstall):
skillaug install huydepzai121/skill/.claude/skills -y -f
# → Skip all prompts and automatically overwrite existing skills
# → Useful for reinstalling all skills at onceUpdate skills (recommended):
skillaug update
# → Automatically checks for updates from source repositories
# → Only updates skills that have new commits
# → Preserves metadata and tracks versionsInteractive by Default
All commands use beautiful TUI by default:
Install:
skillaug install huydepzai121/skill/.claude/skills
# → Checkbox to select which skills to install
# → Shows skill name, description, size
# → All checked by default
# Skip all prompts and force overwrite
skillaug install huydepzai121/skill/.claude/skills -y -f
# → No interactive selection
# → Automatically overwrite existing skillsSync:
skillaug sync
# → Checkbox to select which skills to include in CLAUDE.md
# → Pre-selects skills already in CLAUDE.md
# → Empty selection removes skills sectionManage:
skillaug manage
# → Checkbox to select which skills to remove
# → Nothing checked by default (safe)Example Skills
From custom skills repository:
- xlsx — Spreadsheet creation, editing, formulas, data analysis
- docx — Document creation with tracked changes and comments
- pdf — PDF manipulation (extract, merge, split, forms)
- pptx — Presentation creation and editing
- canvas-design — Create posters and visual designs
- mcp-builder — Build Model Context Protocol servers
- skill-creator — Detailed guide for authoring skills
Browse all: github.com/huydepzai121/skill
Creating Your Own Skills
Minimal Structure
my-skill/
└── SKILL.md
---
name: my-skill
description: What this does and when to use it
---
# Instructions in imperative form
When the user asks you to X, do Y...With Bundled Resources
my-skill/
├── SKILL.md
├── references/
│ └── api-docs.md # Supporting documentation
├── scripts/
│ └── process.py # Helper scripts
└── assets/
└── template.json # Templates, configsIn your SKILL.md, reference resources:
1. Read the API documentation in references/api-docs.md
2. Run the process.py script from scripts/
3. Use the template from assets/template.jsonThe agent sees the base directory when loading the skill:
Loading: my-skill
Base directory: /path/to/.claude/skills/my-skill
[SKILL.md content]Publishing
- Push to GitHub:
your-username/my-skill - Users install with:
skillaug install your-username/my-skill
Authoring Guide
Use skill-creator for detailed guidance:
skillaug install huydepzai121/skill/.claude/skills
skillaug read skill-creatorThis loads comprehensive instructions on:
- Writing effective skill descriptions
- Structuring instructions for agents
- Using bundled resources
- Testing and iteration
Requirements
- Node.js 20.6+ (for ora dependency)
- Git (for cloning repositories)
License
Apache 2.0
Attribution
Implements Anthropic's Agent Skills specification.
Not affiliated with Anthropic. Claude, Claude Code, and Agent Skills are trademarks of Anthropic, PBC.
