Installing Products via Web
Install MyClaude products directly from the web interface at myclaude.sh — no CLI required.
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
| Requirement | Why |
|---|---|
| MyClaude account | Required for downloads and purchases |
| Claude Code installed | The products you install extend Claude Code |
| File system access | You will extract files into your project's .claude/ directory |
Install a free product
- Visit myclaude.sh/explore and find the product you want.
- Click the product card to open its detail page.
- Click Download. Your browser downloads a ZIP file.
- Extract the ZIP into the correct
.claude/subdirectory for the product type (see the file locations table below). - Verify Claude Code can see the product by running
claude skills listor 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
- Visit the product page on myclaude.sh.
- Click Buy. MyClaude redirects you to Stripe Checkout.
- Complete payment using card, Apple Pay, or Google Pay.
- Stripe confirms the payment. MyClaude creates an order tied to your account.
- The product page now shows Download instead of Buy. Click it.
- Your browser downloads the ZIP via a signed URL valid for 5 minutes.
- 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:
| Category | Install 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.md | Project root or .claude/ |
| Applications | Standalone directory per product instructions |
CLI vs web install
| Dimension | CLI (myclaude install) | Web (myclaude.sh) |
|---|---|---|
| Speed | One command, fully automated | Manual download and extract |
| File placement | Automatic — correct directory every time | Manual — you choose the path |
| Updates | myclaude update checks and applies | Re-download from product page |
| Paid products | Opens checkout, resumes install after payment | Separate download step after payment |
| Dependency resolution | Automatic | Manual — read product docs |
| Offline use | Requires internet for install | Download ZIP once, install offline later |
| Best for | Day-to-day installs, automation, CI | Inspecting 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