Loading...
Loading...
Use when the user wants to set up spec-driven development (OpenSpec + superpowers-bridge) in a project, or when initializing a new project that needs the SDD workflow. Idempotent. Runs the bundled scripts/run.sh.
npx skill4agent add 9ashwin/openspec-boot openspec-bootsuperpowers-bridgeopenspec initopenspec/superpowers-bridge<project>/openspec/schemas/superpowers-bridge/--useropenspec schema validate superpowers-bridgeopenspec schema which superpowers-bridgesuperpowers-bridgeopenspec/config.yaml/opsx:new--schemaCLAUDE.mdAGENTS.mdobra/superpowersopenspec//opsx:newopenspec schemassuperpowers-bridgeopenspec/schemas/superpowers-bridge/openspec/config.yamlspec-drivensuperpowers-bridgeopenspec initscripts/run.shSKILL.mdcd <project-root>
SCRIPT=""
for c in ~/.claude/skills/openspec-boot/scripts/run.sh \
~/.agents/skills/openspec-boot/scripts/run.sh \
~/.codex/openspec-boot/skills/openspec-boot/scripts/run.sh \
~/.openspec-boot/skills/openspec-boot/scripts/run.sh; do
[ -x "$c" ] && SCRIPT="$c" && break
done
[ -n "$SCRIPT" ] || { echo "openspec-boot script not found"; exit 1; }
bash "$SCRIPT" "$@"openspec-bootPATHinstall.shcd <project-root>
openspec-boot "$@"# default: project-local schema, prompts on CLAUDE.md inject + default schema
bash <run.sh>
# automate everything (CI, scripted setup)
bash <run.sh> --inject --default-schema=superpowers-bridge
# skip the CLAUDE.md/AGENTS.md fragment but still set default schema
bash <run.sh> --no-inject
# leave openspec/config.yaml schema field alone
bash <run.sh> --no-default
# explicitly pass --tools to `openspec init` (default: claude when non-interactive)
bash <run.sh> --tools=claude,codex
# preview without doing anything
bash <run.sh> --dry-run
# refresh the cached schemas source (one-time per machine, not per project)
bash <run.sh> --update--helpopenspecnpm i -g @fission-ai/openspecgitopenspec initopenspec//opsx:new my-feature # uses superpowers-bridge by default
/opsx:new my-feature --schema spec-driven # opt-out for a lighter run/opsx:new my-feature --schema superpowers-bridgeopenspec CLI not foundnpm i -g @fission-ai/openspecSchema validation failsFragment injection requested but CLAUDE.md / AGENTS.md absent--injectSuperpowers not detectedsuperpowers-bridgespec-drivenobra/superpowerssuperpowers-bridgeREADME.md