Claude-skill-registry commerce-engine-setup
Set up and run the StateSet iCommerce engine locally (CLI install, DB init, demo data, sync). Use when bootstrapping an environment, running `stateset-doctor`, or starting `stateset-autonomous`.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/commerce-engine-setup" ~/.claude/skills/majiayu000-claude-skill-registry-commerce-engine-setup && rm -rf "$T"
manifest:
skills/data/commerce-engine-setup/SKILL.mdsource content
Commerce Engine Setup
Set up local iCommerce runtime, CLI tooling, and optional sync.
How It Works
- Install or link the CLI and choose a SQLite database path.
- Initialize sync and keys if you need sequencer replication.
- Seed demo data and verify the environment.
- Start CLI commands or the autonomous engine.
Usage
- Install CLI locally:
cd /home/dom/stateset-icommerce/cli && npm install && npm link - Use
for read-only actions.stateset --db ./store.db "list customers" - Add
for writes and--apply
for checks.stateset-doctor - Seed demo data:
bash /mnt/skills/user/commerce-engine-setup/scripts/seed-demo.sh - Verify setup:
bash /mnt/skills/user/commerce-engine-setup/scripts/verify-setup.sh - Start autonomous mode:
stateset-autonomous start --db ./.stateset/commerce.db
Output
{"status":"ok","db":"./store.db","sync":"disabled","autonomous":"stopped"}
Present Results to User
- Steps completed and any scripts run.
- Database path and whether sync is initialized.
- Autonomous engine status if started.
Troubleshooting
- CLI not found: re-run
or installnpm link
globally.@stateset/cli - Database locked: close other processes using the DB file.
- Sequencer unreachable: verify Docker services and URLs.
References
- references/setup-runbook.md
- /home/dom/stateset-icommerce/examples/README.md
- /home/dom/stateset-icommerce/examples/getting-started-sync.md
- /home/dom/stateset-icommerce/cli/README.md
- /home/dom/stateset-icommerce/cli/bin/stateset-autonomous.js