
LaunchMyStore
from LaunchMyStore
LaunchMyStore MCP server (130+ tools): manage products, orders, customers, themes, apps, functions, analytics for an entire e-commerce store via natural language.
LaunchMyStore β Universal Agent Skill
A single /launchmystore skill that turns plain-English intent into the
right LaunchMyStore surface β the lms CLI, App Bridge SDK, WASM
Functions, Aqua themes, or the LaunchMyStore MCP server.
Built on the open SKILL.md standard, so the same skill works
identically in:
Claude Code Β· Claude.ai Β· the Claude API Β· OpenAI Codex Β· Cursor Β· Gemini CLI Β· Windsurf Β· Antigravity Β· Aider Β· OpenCode Β· OpenClaw Β· Kilo Code Β· Augment Β· Hermes Agent Β· Mistral Vibe β anywhere SKILL.md is supported.
Nothing in the skill is Claude-specific. If a host AI can read SKILL.md
and follow Markdown instructions, this skill works.
- Build apps & extensions β scaffold, push, deploy with
lms - Embed UI in the admin β Toast / Modal / ResourcePicker via App Bridge
- Ship WASM Functions β 6 types (discount, shipping, cart transform, payment, delivery, order validation) compiled locally with Javy
- Author themes β Aqua (Liquid dialect) sections, blocks, snippets, metafields
- Operate a store with AI β 130+ MCP tools (products, orders, customers, themes, analytics)
Canonical developer docs: https://docs.launchmystore.io
What's inside
skill/
βββ SKILL.md # Intent router (~2 KB)
βββ references/ # Loaded by the host AI on demand
β βββ 01-quickstart.md
β βββ 02-building-an-app.md
β βββ 03-cli-reference.md
β βββ 04-app-bridge.md
β βββ 05-extensions.md # 14 extension types
β βββ 06-functions.md # All 6 WASM Function types
β βββ 07-merchant-mcp.md # 130+ MCP tools, organized by domain
β βββ 08-aqua-themes.md # Sections / blocks / groups / snippets / metafields
β βββ 09-beginner-walkthroughs.md
β βββ 10-troubleshooting.md
βββ examples/
β βββ cart-transform/ # All 6 function types
β βββ discount-function/
β βββ shipping-rate/
β βββ payment-customization/
β βββ delivery-customization/
β βββ order-validation/
β βββ theme-section/ # Full sections/hero.liquid with schema
β βββ theme-block/ # App-supplied .aqua + .schema.json
β βββ theme-group/ # sections/header-group.json + layout hook
β βββ theme-snippet/ # Reusable product-card snippet
β βββ app-bridge/ # Admin block using Toast + Picker + SessionToken
β βββ mcp-prompts.md
βββ .claude-plugin/marketplace.jsonWhat the skill routes to
| You say | Skill loads | You get |
|---|---|---|
| "I want to build my first app" | 02-building-an-app.md | lms app create walkthrough |
lms <something> | 03-cli-reference.md | Full CLI surface + flags |
| "toast / modal / picker / session token" | 04-app-bridge.md | Vanilla + React SDK + 21 actions |
| "theme block / checkout extension / admin block" | 05-extensions.md | 14 extension types + scaffold commands |
| "discount / shipping rate / cart transform / WASM" | 06-functions.md | All 6 types + local Javy compile flow |
| "add a product / list orders / manage my store" | 07-merchant-mcp.md | 130+ MCP tools by domain + workflows |
| "Aqua / Liquid / section / snippet / metafields" | 08-aqua-themes.md | Theme authoring + Liquid + metafield drops |
| "I'm new" / no clear intent | 01-quickstart.md β 09-beginner-walkthroughs.md | Routing decision tree + plain-English recipes |
Contributing
Issues + PRs welcome at https://github.com/LaunchMyStore/skill.
License
MIT β see LICENSE.
npm install -g @launchmystore/claude-skillInstall
Pick the path that matches your host AI. They all end up with the same
SKILL.md + references/ + examples/ on disk.
Claude Code
/plugin marketplace add LaunchMyStore/skill
/plugin install launchmystore@launchmystoreOr via npm:
npm install -g @launchmystore/claude-skillOr manual clone:
git clone https://github.com/LaunchMyStore/skill ~/.claude/skills/launchmystoreClaude.ai
Download the latest release zip and upload it as a Skill in Settings β Capabilities β Skills.
Anthropic Claude API
Bundle the SKILL.md + references/ + examples/ into your skill folder
when calling the Messages API with tools: [{ type: 'skill', ... }]. See
https://docs.anthropic.com/en/docs/build-with-claude/skills.
OpenAI Codex
git clone https://github.com/LaunchMyStore/skill ~/.codex/skills/launchmystoreCodex reads ~/.codex/skills/<name>/SKILL.md automatically.
Cursor
git clone https://github.com/LaunchMyStore/skill ~/.cursor/skills/launchmystore(Or drop a Cursor Rule pointing to the cloned SKILL.md.)
Gemini CLI
git clone https://github.com/LaunchMyStore/skill ~/.gemini/skills/launchmystoreOpenClaw
git clone https://github.com/LaunchMyStore/skill ~/.openclaw/workspace/skills/launchmystore
openclaw gateway restartWindsurf / Antigravity / Aider / OpenCode / Kilo Code / Augment / Hermes / Mistral Vibe
Each tool reads SKILL.md from its own skills directory (typically
~/.<tool>/skills/<name>/ β Mistral Vibe uses ~/.vibe/skills/<name>/).
Clone the repo into that directory.
Universal install (every tool at once)
Set SKILLS_HOME=~/.skills (the agentskills.io standard) and install once:
npm install -g @launchmystore/claude-skillThe postinstall script copies the skill to every supported tool
directory it can detect on your machine, plus ~/.skills/launchmystore/ as
the canonical universal location.
Then in your AI of choice, try:
/launchmystore I want to build my first app
/launchmystore add a 10% discount when cart over $100
/launchmystore show me my orders from last week
/launchmystore write a theme section that shows trending productsNo common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.