Installing Products via CLI
Install any MyClaude product with a single command: myclaude install @creator/product-name.
Install any MyClaude product with a single command: myclaude install @creator/product-name.
This tutorial walks you from a fresh machine to a fully installed product. It assumes you have Claude Code already set up.
Prerequisites
| Requirement | Version | Check |
|---|---|---|
| Node.js | ≥ 18 | node --version |
| npm | ≥ 9 | npm --version |
| Claude Code | latest | claude --version |
Install the CLI
$ npm install -g @myclaude-cli/cliExpected output:
added 1 package in 3s
@myclaude-cli/cli@0.1.0 installed globallyConfirm the installation:
$ myclaude --version
# myclaude-cli 0.1.0Log in
$ myclaude loginThe CLI opens your browser to complete authentication via MyClaude. After approving, return to the terminal:
Authenticated as @yourhandleYour session token is stored locally at ~/.myclaude/credentials.json. It does not expire unless you run myclaude logout.
Search for a product
$ myclaude search "code review"@kairo/review-skill ★ 4.9 free skills
@dev/pr-checker ★ 4.7 $4.00 skills
@anya/review-workflow ★ 4.5 $9.00 workflowsFilter by category:
$ myclaude search --category skills "testing"Install a product
Free product:
$ myclaude install @kairo/review-skillInstalling @kairo/review-skill...
Resolved: 1.2.0
Installed to .claude/skills/review-skill/
Done.Paid product — the CLI opens the purchase flow in your browser. After payment completes, installation resumes automatically:
$ myclaude install @dev/pr-checker@dev/pr-checker requires purchase ($4.00)
Opening checkout... [browser opens]
Payment confirmed. Downloading...
Installed to .claude/skills/pr-checker/
Done.Verify the installation
$ myclaude listInstalled products (2)
@kairo/review-skill 1.2.0 skills .claude/skills/review-skill/
@dev/pr-checker 0.9.1 skills .claude/skills/pr-checker/Confirm Claude Code can see the skill:
$ claude skills listThe installed skill should appear. If it does not, run myclaude repair to re-link the files.
Manage installed products
| Command | Action |
|---|---|
myclaude list | Show all installed products |
myclaude update @creator/product | Update to latest version |
myclaude update --all | Update every installed product |
myclaude uninstall @creator/product | Remove product and its files |
myclaude repair | Re-link files that Claude Code cannot see |
myclaude logout | Clear stored credentials |
Related pages
- Browsing & Discovery — find products before installing
- Purchasing Products — how payment works for paid products
- Product Types — understand what each category installs