Guide
Get started with FlareSkill
Init a project, search the registry, install a skill, and pin versions with a lockfile.
FlareSkill treats agent instructions as packages. You search a catalog, install a skill into Cursor, Claude Code, or Codex, and share the same versions with your team.
Install the CLI
You do not need a global install. Use npx:
npx flareskill initinit prepares the project so later installs have a place to land.
Find a skill
Browse the registry or search from the terminal:
npx flareskill search reactOpen a skill page for the exact install command, version, tags, and source path on GitHub.
Install
npx flareskill install senior-react-engineer --agent cursorOmit --agent if you want FlareSkill to detect the project. Use --agent claude or --agent codex when you know the target. Global installs go to the matching home directory.
Keep the team in sync
Project installs write flareskill.lock with versions and checksums.
npx flareskill outdatedshows driftnpx flareskill updatemoves pins forwardnpx flareskill installwith no arguments syncs from the lockfile and fails if a checksum no longer matches the registry
That is the whole loop: search, install, lock, repeat.