Install, manage, and share skills across every major coding agent — Claude Code, Cursor, Copilot, and more.
Search and import skills from skills.sh, GitHub, or local sources. Deploy to multiple agents at once. Keep everything organized and up to date.
Installing skills one by one breaks down at scale:
- Repos contain multiple related skills, but you install them separately
- Different agents expect different locations
- Updates drift silently
- Unmanaged folders accumulate
- Nobody tracks what's actually deployed
skill-flow preserves the workflow group. One source remains one cohesive unit—inspect it, select skills, deploy to multiple targets, update cleanly, and always know your state.
- Grouped source management: local, Git, and skills.sh sources all flow through the same import model.
- Multi-agent deployment: deploy one selected skill set to Claude Code, Codex, Cursor, Gemini CLI, OpenCode, OpenClaw, Windsurf, and more.
- Interactive config flow: Ink-based TUI for add/config flows, selection state, review, and repair.
- Desktop app on macOS 15+: SwiftUI main window, import view, detail panel, settings, and menu bar quick config.
- Explicit state:
manifest.jsonstores intent,lock.jsonstores resolved inventory and deployments. - Bridge protocol: machine-readable desktop/helper entrypoint via
skill-flow bridge --json. - Repair and diagnosis:
doctor,repair-source,repair-state, andrepair-targetscover the parts that usually rot first.
| Menu Bar | Import |
|---|---|
![]() |
![]() |
| Detail | Settings |
|---|---|
![]() |
![]() |
npm install -g skill-flow
skill-flow --helpOr run without a global install:
npx skill-flow --helpSkill Flow Desktop currently relies on a few external command-line tools on the target Mac:
node20 or newer is required to launch the bundled desktop helpergitis required for non-GitHub Git sourcesnpxis required for skills.sh imports
If the desktop app detects a missing dependency, it will surface an actionable error and point back to this section.
# Add a source
skill-flow add garrytan/gstack
# Review installed workflow groups
skill-flow list
# Open the interactive config UI
skill-flow config
# Search installed skills, built-in catalogs, and skills.sh
skill-flow find browser
# Update one source or all sources
skill-flow update garrytan-gstack
skill-flow update --all
# Diagnose drift or broken projections
skill-flow doctorThe desktop app and helper tooling talk to the CLI through a versioned JSON protocol:
printf '%s' '{"protocolVersion":"1.0","command":"list"}' | skill-flow bridge --jsonskill-flow add <source> supports:
- local folders
owner/repoGitHub shorthand- full HTTPS Git URLs
- SSH Git URLs
- GitHub tree URLs
clawhub:<slug>[@version]
Examples:
skill-flow add ~/code/my-skills
skill-flow add garrytan/gstack
skill-flow add https://github.com/garrytan/gstack.git
skill-flow add git@github.com:garrytan/gstack.git
skill-flow add https://github.com/garrytan/gstack/tree/main/skills
skill-flow add clawhub:example/skill-pack
skill-flow add clawhub:example/skill-pack@1.2.3Use --path <repoSubpath> when the repo is large but your default selection should start from one subtree.
Current built-in targets:
- Claude Code
- Codex
- Cursor
- GitHub Copilot
- Gemini CLI
- OpenCode
- OpenClaw
- Pi
- Windsurf
- Roo Code
- Cline
- Amp
- Kiro
Target paths can be overridden with SKILL_FLOW_TARGET_* environment variables.
| Command | What it does |
|---|---|
add <source> |
Import a source and choose skills/targets |
list |
Show workflow groups and current health |
find <query> / search <query> |
Search installed skills, built-in Git catalogs, and skills.sh |
config |
Open the interactive configuration UI |
update [sourceId] --all |
Refresh one source or all registered sources |
doctor |
Diagnose drift, missing paths, and projection problems |
repair-source [sourceId] --all |
Rebuild source checkout metadata |
repair-state [sourceId] --all |
Rebuild source-side state |
repair-targets [sourceId] --all |
Repair projected target contents |
uninstall <sourceIds...> |
Remove groups and their deployments |
bridge --json |
Execute machine protocol requests |
skill-flow keeps one state root, defaulting to ~/.skillflow/.
manifest.json: what you wantlock.json: what is actually installedsource/local/*: imported local or adopted unmanaged sourcessource/git/*: Git source cachesource/clawhub/*: skills.sh source cachecatalog/git/*: built-in Git catalog cache
Target directories are deployment outputs, not the source of truth.
By default, state lives under ~/.skillflow/. manifest.json records the workflow you want, lock.json records the resolved inventory and deployments, and the source/* directories cache imported sources.
skill-flow treats target directories as deployment outputs. The selected skills for a workflow group are projected there from state, so you should treat those files as generated results rather than edit them as the source of truth.
Start with skill-flow doctor when something looks wrong and you want a diagnosis first. Use repair-source when source checkout metadata is broken, repair-state when source-side state needs rebuilding, and repair-targets when deployed target contents have drifted from the current state.
.
├── apps
│ ├── cli/ # published npm package and CLI entrypoint
│ └── desktop-mac/ # SwiftUI desktop app for macOS 15+
├── packages
│ ├── core-engine/ # inventory, deployment, doctor, bootstrap services
│ ├── domain/ # domain models and core types
│ ├── integration/ # Git, GitHub, skills.sh, path, naming integrations
│ ├── query/ # shared runtime and bridge-facing orchestration
│ ├── shared-types/ # bridge protocol types
│ ├── storage/ # manifest, lock, preferences, cache persistence
│ └── tui/ # Ink add/find/config UI
├── docs/ # architecture, contributor docs, references, plans
└── releases/ # release notes
npm install
npm run build
npm testCLI dev loop:
npm run -w skill-flow dev -- --helpDesktop dev loop:
npm run build
cd apps/desktop-mac
swift build
swift testDebugging the desktop shell against a local CLI build:
export SKILL_FLOW_DESKTOP_HELPER_OVERRIDE=/absolute/path/to/apps/cli/dist/cli.jsUnsigned desktop packaging:
scripts/release/package-desktop-mac.sh --arch arm64
scripts/release/package-desktop-mac.sh --arch x86_64
scripts/release/package-desktop-mac.sh --arch universalOpen-source macOS release flow:
scripts/release/package-desktop-mac.sh --arch universal
scripts/release/package-desktop-mac-zip.sh universal
scripts/release/generate-sha256.sh universalUnsigned macOS install notes:
- Download
Skill-Flow-universal.dmgfrom GitHub Releases, copySkill Flow.apptoApplications, then open it once with Finder'sOpenaction if Gatekeeper blocks it. - If macOS still marks the app as quarantined, run:
xattr -dr com.apple.quarantine "/Applications/Skill Flow.app"Apache License 2.0. See LICENSE.




