Quickstart
Install the MyClaude CLI and browse or publish products in under 5 minutes.
Install the MyClaude CLI to search, install, and publish Claude Code products from your terminal. The CLI supports all 9 product categories and 12 commands, each with --json output for agent consumption. MyClaude is the only Claude Code marketplace with a dedicated CLI — no browser required.
One command to install, one command to search or publish. Pick your path below.
Install the CLI
$ npm install -g @myclaude-cli/cliAuthenticate
$ myclaude loginThis opens your browser to authenticate with your MyClaude account.
Find a product
$ myclaude search "code review"Browse results by category, rating, and price.
Install it
$ myclaude install @kairo/review-skillThe skill is now available in your Claude Code session. Use it with /review.
Install the CLI
$ npm install -g @myclaude-cli/cliScaffold a product
$ myclaude init my-skillThis creates a directory with SKILL.md and vault.yaml ready to edit.
Edit and publish
$ cd my-skill
$ # Edit SKILL.md with your skill logic
$ # Edit vault.yaml with metadata and pricing
$ myclaude publishYour product is now live on myclaude.sh/explore.
What just happened?
The CLI connected to MyClaude's API, authenticated your account via Firebase Auth, and either installed a product into your .claude/ directory or published your product to the marketplace via the CONDUIT pipeline.
Every product on MyClaude is defined by a vault.yaml manifest — a 9-15 line YAML file that specifies name, version, category, and pricing.
Next steps
- Product Types Explained — understand all 9 categories
- Writing Skills Guide — build your first skill step-by-step
- Concepts Overview — how the marketplace works