Power your ability.
Omniskills is a many-skill bank for AI agents: install one workflow skill tree, call one entry skill with a goal, and give your agent the right roles, playbooks, and verification habits for the problem in front of it. The point is simple: 3x your ability without manually juggling every specialist skill.
Start with Startup Goal when you want to move a company-building goal through many role workflows instead of manually juggling every skill: CEO, CTO, Product Manager, Engineering Manager, Founding Engineer, and QA Lead.
Install the full startup goal workflow:
npx omniskills@latest install startup-goalThen ask your agent to run the entry skill with a goal:
$startup-goal I have an AI bookkeeping idea; help me choose the wedge and ship a v1 in two weeks
The alias points to the checked-in workflow bundle:
npx omniskills@latest install 'https://github.com/0xroylee/getsuperpower.git#examples/workflows/startup-goal'Install individual startup roles when you want one specialist workflow:
npx omniskills@latest install ceo
npx omniskills@latest install cto
npx omniskills@latest install product-manager
npx omniskills@latest install engineering-manager
npx omniskills@latest install founding-engineer
npx omniskills@latest install qa-leadRestart your agent after installing skills so it reloads the new entry skills.
Use the registry view to pick an Omniskills workflow, inspect its role workflow, and copy the install command.
| Omniskills workflow | Entry skill | What it helps with |
|---|---|---|
| Startup Goal | $startup-goal |
Route a company-building goal through strategy, product, architecture, delivery, implementation, and QA role subagents. |
| CEO | $ceo |
Direction, hard tradeoffs, fundraising/customer framing, and company decisions. |
| CTO | $cto |
Architecture, domain model, platform direction, and engineering risk. |
| Product Manager | $product-manager |
Product discovery, PRDs, acceptance criteria, roadmap tradeoffs, and issue slicing. |
| Engineering Manager | $engineering-manager |
Delivery sequencing, execution risk, quality gates, blocker triage, and engineering process. |
| Founding Engineer | $founding-engineer |
The smallest correct implementation change: tests, debugging, review, and verification. |
| QA Lead | $qa-lead |
Release-risk review, acceptance checks, regression focus, reproduction gaps, and verification evidence. |
Each workflow is still just files you can inspect: a workflow.json, README,
and local skills. The power comes from installing the skill tree once and then
calling the entry skill that knows which companion skills to use.
Some Omniskills workflows also expose a loop runner for goals that should keep moving
until the goal is done. A loop is resumable workflow state: loop start creates
a run, loop status shows where it is, and loop advance returns the next suggested action.
The runtime is action-only. It records state and returns the next suggested action; it does not silently execute tools or shell commands for the agent.
Try the loop-capable product-development workflow:
npx omniskills@latest loop start grilled-product-dev --json
npx omniskills@latest loop status grilled-product-dev --latest --json
npx omniskills@latest loop advance grilled-product-dev --run <run-id> --jsonThat shape is useful for complex work: clarify the goal, move one action forward, verify evidence, and keep advancing until the goal is done.
Omniskills workflows can compose local skills, bundled skills, and external skill packs:
- Matt Pocock skills for TDD, review, design pressure-testing, domain modeling, PRDs, and issue slicing.
- Superpowers skills for brainstorming, planning, execution, and verification.
- Ponytrail evidence for file-change rationale, verification, and rollback
context in workflows that declare
pony-trail. - More workflow packs are coming.
omniskills install uses each workflow skill's repo metadata to fetch
missing external skills through the Skills CLI. For example,
{ "source": "superpowers:brainstorming", "repo": "obra/superpowers" }
keeps the original skill name in source and installs it with
npx skills add obra/superpowers --skill brainstorming.
If automatic bootstrap fails, run the package install through Omniskills and retry:
npx omniskills@latest skills install mattpocock/skillsnpx omniskills@latest install <alias-or-path-or-git-url>
npx omniskills@latest list
npx omniskills@latest deps <source>
npx omniskills@latest lock <source>
npx omniskills@latest loop <start|status|log|advance|summary> <source>
npx omniskills@latest remove <workflow-name>
npx omniskills@latest init <name>
npx omniskills@latest validate <source>
npx omniskills@latest skills install
npx omniskills@latest skills updateRun npx omniskills@latest --help or
npx omniskills@latest <command> --help for detailed usage.
The older bundle and workflow commands still work as compatibility aliases.
Start with the Create Your Own Workflow guide if you want to author and share a workflow bundle.
Create a new Omniskills workflow:
npx omniskills@latest init release-reviewThis creates:
release-review/
workflow.json
README.md
skills/
release-review/
SKILL.md
custom-review/
SKILL.md
skills/release-review/SKILL.md is the entry skill. Edit it when you want
users to call one skill that coordinates many sub-skills.
Install the authoring helper if you want an agent to help design bundle skills:
npx omniskills@latest skills install creating-bundle-skillsThen ask your agent to use:
$creating-bundle-skills create an Omniskills workflow for release review
Validate before sharing:
npx omniskills@latest validate ./release-review
npx omniskills@latest deps ./release-reviewThe full guide is in docs/workflow-author-guide.md.
| Example | Use it for | Notes |
|---|---|---|
examples/workflows/startup-goal |
Install a realistic startup operating bench around one goal. | Includes $startup-goal, $ceo, $cto, $product-manager, $engineering-manager, $founding-engineer, and $qa-lead. |
examples/workflows/ceo |
Company direction, strategy, tradeoffs, and decision mapping. | Uses Matt Pocock decision and grilling skills. |
examples/workflows/cto |
Architecture, domain model, technical risk, and review. | Uses Matt Pocock architecture/review skills. |
examples/workflows/product-manager |
Discovery, PRD, issue slicing, and product planning. | Uses Superpowers plus Matt Pocock PRD/issue skills. |
examples/workflows/engineering-manager |
Delivery sequencing, quality gates, and execution risk. | Uses planning, TDD, diagnosing, and review skills. |
examples/workflows/founding-engineer |
Implementation, tests, debugging, review, and final verification. | Uses $implement as the implementation role. |
examples/workflows/qa-lead |
Acceptance checks, regression focus, and release verification. | Uses review, diagnosing, and verification skills. |
examples/workflows/grilled-product-dev |
Goal loops for shaping product-development work into an approved plan. | Provides loop start, loop status, and loop advance. |
examples/workflows/openspec-superpowers |
Compatibility/demo workflow for OpenSpec delivery. | Kept for one release while the role catalog becomes the primary example set. |
examples/workflows/development-design-delivery |
Compatibility/demo workflow for product-minded engineering. | Richer composition example with Ponytrail evidence. |
examples/workflows/real-engineering |
Compatibility/demo workflow combining RTK, Ponytrail, Superpowers, and Matt Pocock skills. | Fetches Matt Pocock skills if missing. |
examples/workflows/release-review |
Compatibility/demo workflow for release-risk review. | Good minimal example. |
By default, the CLI writes installed workflow records under your home directory:
~/
.getsuperpower/
workflows/
Use --dir <project> when you intentionally want a project-local workflow
record.
Keep project-local .getsuperpower/ folders out of git unless you
intentionally want to share installed workflow records.
bun install
bun run build
bun test
bun run check
bun scripts/smoke-public-git-install.tsLanding app:
cd landing
bun install
bun run dev
bun run buildThe canonical package and CLI binary are named omniskills. The legacy
getsuperpower binary remains available as a compatibility alias.

