English | 简体中文
skillman is a CLI-first toolkit for managing prompt skills across projects and agents.
North star:
- Complete the end-to-end skill lifecycle: install -> publish/archive -> update.
- Make cross-project skill bootstrapping fast and repeatable via profile.
- Version:
v1(CLI implemented) v2API layer: planned
- Manage markets from local filesystem and Git repositories.
- Install one skill to multiple agents (
codex/claude/gemini) in one command. - Snapshot and apply skill profiles across projects.
- Archive local skill changes back to a Git market and open PR automatically.
- Update markets and sync installed skills with conflict-aware behavior.
- Remove markets with copy/link handling and unmatched-agent reporting.
- Node.js >= 20
- npm >= 10
git clone git@github.com:mindfn/skillman.git
cd skillman
npm install
npm run build
npm testnpm pack
npm install -g --offline ./skillman-0.1.0.tgz --prefix /tmp/skillman-global
/tmp/skillman-global/bin/skillman --help# register projects
skillman project add /path/to/project-a
skillman project add /path/to/project-b
# add markets
skillman market add /path/to/local-market --type fs --name local-fs
skillman market add git@github.com:mindfn/skills-test.git --type git --name git-test
# install one skill to multiple agents
skillman skill install git-test:test-skill --agent codex --agent claude --agent gemini --mode copy --force
# profile snapshot/apply
skillman profile snapshot --name team-default --project-root /path/to/project-a
skillman profile apply --name team-default --project-root /path/to/project-b --force
# archive skill back to git market and auto-create PR
skillman archive /path/to/project/.codex/skills/my-skill --market git-test --dest my-skill- Full v1 CLI audit:
docs/test-evidence/2026-03-05-v1-cli-full-audit - Fix validation audit:
docs/test-evidence/2026-03-05-v1-cli-fixes
- See CONTRIBUTING.md
- Commit style: Conventional Commits (
feat:,fix:,docs:, ...)