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 Web

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

How-To Guide

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

The web install path is useful when you want to inspect a product before installing, when you are on a machine without the CLI, or when you prefer a visual workflow.

Prerequisites

RequirementWhy
MyClaude accountRequired for downloads and purchases
Claude Code installedThe products you install extend Claude Code
File system accessYou will extract files into your project's .claude/ directory

Install a free product

  1. Visit myclaude.sh/explore and find the product you want.
  2. Click the product card to open its detail page.
  3. Click Download. Your browser downloads a ZIP file.
  4. Extract the ZIP into the correct .claude/ subdirectory for the product type (see the file locations table below).
  5. Verify Claude Code can see the product by running claude skills list or opening a new Claude Code session.

Example — installing a skill called review-skill:

# After downloading review-skill.zip from the product page
$ unzip review-skill.zip -d .claude/skills/review-skill/

The product page always states which directory the product belongs in. Follow that path exactly.

Install a paid product

  1. Visit the product page on myclaude.sh.
  2. Click Buy. MyClaude redirects you to Stripe Checkout.
  3. Complete payment using card, Apple Pay, or Google Pay.
  4. Stripe confirms the payment. MyClaude creates an order tied to your account.
  5. The product page now shows Download instead of Buy. Click it.
  6. Your browser downloads the ZIP via a signed URL valid for 5 minutes.
  7. Extract the ZIP into the correct .claude/ subdirectory.

You can re-download a purchased product at any time from the same product page or from your dashboard.

File locations by product type

Each product type installs to a specific directory inside your project:

CategoryInstall directory
Skills.claude/skills/{product-name}/
Squads.claude/squads/{product-name}/
Agents.claude/agents/{product-name}/
Workflows.claude/workflows/{product-name}/
Design Systems.claude/design-systems/{product-name}/
Prompts.claude/prompts/{product-name}/
CLAUDE.mdProject root or .claude/
ApplicationsStandalone directory per product instructions

CLI vs web install

DimensionCLI (myclaude install)Web (myclaude.sh)
SpeedOne command, fully automatedManual download and extract
File placementAutomatic — correct directory every timeManual — you choose the path
Updatesmyclaude update checks and appliesRe-download from product page
Paid productsOpens checkout, resumes install after paymentSeparate download step after payment
Dependency resolutionAutomaticManual — read product docs
Offline useRequires internet for installDownload ZIP once, install offline later
Best forDay-to-day installs, automation, CIInspecting before installing, no-CLI environments

When to use web install

  • Evaluating a product. The web detail page shows the full description, version history, file list, ratings, and reviews. Useful for inspecting before committing.
  • No CLI available. If you cannot install the myclaude CLI (restricted machine, corporate policy), the web path works without it.
  • One-time installs. For a single product you plan to manage manually, the web flow is sufficient.

For everything else — especially if you install more than a couple of products — the CLI is faster and handles file placement, updates, and dependency resolution automatically.

Troubleshooting

Download button does not appear after purchase. Allow up to 30 seconds for the Stripe webhook to confirm your order. Refresh the product page. If the button still does not appear after 2 minutes, check your dashboard for the order record.

Extracted files are not detected by Claude Code. Confirm the files are in the correct .claude/ subdirectory. The directory name must match the product slug. Restart your Claude Code session after placing the files.

ZIP file is corrupted. Re-download from the product page. Signed URLs expire after 5 minutes — if the download was interrupted, request a fresh URL by clicking Download again.

Related pages

  • Installing via CLI — automated install from the terminal
  • Purchasing Products — how payment and order confirmation work
  • Product Types — understand what each category installs
  • Managing Products — update, list, and uninstall products

Installing Products via CLI

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

Managing Installed Products

List, update, and uninstall MyClaude products in your Claude Code environment.

On this page

PrerequisitesInstall a free productInstall a paid productFile locations by product typeCLI vs web installWhen to use web installTroubleshootingRelated pages