@ceyhuncicek/skills
v1.0.0
Published
CLI to manage Claude Code skills for ~/.claude/skills/
Readme
@ceyhuncicek/skills
CLI to install and manage personal Claude Code skills.
Install
npm install -g @ceyhuncicek/skills
# or use directly with npx (no install needed):
npx @ceyhuncicek/skills <command>Commands
skills list # Show all bundled skills and versions
skills add <name> # Install a skill to ~/.claude/skills/
skills remove <name> # Remove an installed skill
skills update <name> # Update an installed skill to latest version
skills installed # Show installed skills and update statusAvailable Skills
| Skill | Description |
|-------|-------------|
| pipeline | Multi-agent dev pipeline (PM → parallel Coders → Reviewer) |
| deep-pipeline | Deep research pipeline with dual-PM planning and research agents |
| story-writer | Write short stories with professional craft and structure |
| text-fixer | Fix text to be natural, clear, and human-sounding |
Usage Examples
# See what's available
npx @ceyhuncicek/skills list
# Install a skill
npx @ceyhuncicek/skills add pipeline
# Check installed skills for updates
npx @ceyhuncicek/skills installed
# Update a skill to latest version
npx @ceyhuncicek/skills update pipeline
# Remove a skill
npx @ceyhuncicek/skills remove pipelinePublishing a New Version
To release updated skill content:
- Edit
skills/<name>/SKILL.mdand bumpversion:in the frontmatter - Run:
npm version patch
npm publish --access publicUsers get the update by running:
npx @ceyhuncicek/skills update <name>Development
# Test locally without installing
node bin/skills.js list
node bin/skills.js add pipeline
node bin/skills.js installed
node bin/skills.js remove pipelineFirst-Time Publish
npm login
npm publish --access public