skill-exporter
Original:🇺🇸 English
Translated
Generate npx skills add commands to reproduce installed skills. Use when user wants to export, backup, share, or replicate their skills setup on another machine.
5installs
Sourcev5tech/skills
Added on
NPX Install
npx skill4agent add v5tech/skills skill-exporterTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Skill Exporter
Generate commands from current installation.
npx skills addWorkflow
Copy this checklist and track progress:
Export Skills:
- [ ] Step 1: Collect installation data
- [ ] Step 2: Parse and map agent names
- [ ] Step 3: Group by source and agent-set
- [ ] Step 4: Generate commandsStep 1: Collect Installation Data
Run these commands:
bash
npx skills ls -g
cat ~/.agents/.skill-lock.jsonStep 2: Parse and Map Agent Names
Parse output:
npx skills ls -g<skill-name> <path>
Agents: <Agent1>, <Agent2>, ...Extract skill name (first word of non-indented line) and agents (comma-separated after "Agents:").
Map display names to CLI values: See references/agents.md
Step 3: Group by Source and Agent-Set
Lock file path:
~/.agents/.skill-lock.jsonjson
{ "<skill-name>": { "source": "<owner/repo>", ... } }Group skills sharing same source repo AND same agent set into one command.
Step 4: Generate Commands
Command format:
bash
npx skills add <source> -g -y -s <skill1> -s <skill2> -a <agent1> -a <agent2>Error Handling
- Lock file missing: Use only; source repo info will be unavailable
npx skills ls -g - Skill not in lock file: Skip or prompt user for source repo
Example
Input:
docx ~/.agents/skills/docx
Agents: Antigravity, Claude Code
pdf ~/.agents/skills/pdf
Agents: Antigravity, Claude CodeLock: and both have
docxpdf"source": "anthropics/skills"Output:
bash
npx skills add anthropics/skills -g -y -s docx -s pdf -a antigravity -a claude-code