MyClaude Docs
MyClaude Docs

Getting Started

Buyers

Product TypesBrowsing & DiscoveryPurchasing ProductsInstalling Products via CLIInstalling Products via WebManaging Installed ProductsRatings and ReviewsMessagingRankingsTroubleshooting

Creators

CLI

API

Agent Integration

Developers

Security

Legal

Buyers

Installing Products via CLI

Install any MyClaude product with a single command: myclaude install @creator/product-name.

TutorialBeginner

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

RequirementVersionCheck
Node.js≥ 18node --version
npm≥ 9npm --version
Claude Codelatestclaude --version

Install the CLI

$ npm install -g @myclaude-cli/cli

Expected output:

added 1 package in 3s
@myclaude-cli/cli@0.1.0 installed globally

Confirm the installation:

$ myclaude --version
# myclaude-cli 0.1.0

Log in

$ myclaude login

The CLI opens your browser to complete authentication via MyClaude. After approving, return to the terminal:

Authenticated as @yourhandle

Your 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   workflows

Filter by category:

$ myclaude search --category skills "testing"

Install a product

Free product:

$ myclaude install @kairo/review-skill
Installing @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 list
Installed 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 list

The installed skill should appear. If it does not, run myclaude repair to re-link the files.

Manage installed products

CommandAction
myclaude listShow all installed products
myclaude update @creator/productUpdate to latest version
myclaude update --allUpdate every installed product
myclaude uninstall @creator/productRemove product and its files
myclaude repairRe-link files that Claude Code cannot see
myclaude logoutClear 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

Purchasing Products

Purchase paid products on MyClaude via Stripe Checkout. Creators receive 92% of each sale.

Installing Products via Web

Install MyClaude products directly from the web interface at myclaude.sh — no CLI required.

On this page

PrerequisitesInstall the CLILog inSearch for a productInstall a productVerify the installationManage installed productsRelated pages