mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-05-09 21:32:39 +00:00
/maker-setup now falls back to GitHub's tarball endpoint when git isn't on PATH, instead of detouring through a package-manager git install. curl and tar ship with macOS, Linux, and Windows 10 1803+ out of the box, so this is zero-install on every target platform — and a CwC attendee just needs the files once to flash a device, not git history. - maker-setup.md: git-clone fast path, curl|tar (Unix) / curl+tar+ Rename-Item (PowerShell) fallback, normalizes the -main suffix - m5-onboard/SKILL.md: drop git from required deps + per-OS git bootstrap block; keep Python bootstrap - README: git now listed as optional Linear: CC-1975 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> 🏠 Remote-Dev: homespace
1.4 KiB
1.4 KiB
description, disable-model-invocation
| description | disable-model-invocation |
|---|---|
| Onboard a Code-with-Claude Makers Cardputer — fetch the build-with-claude repo, flash firmware, and install the Claude Buddy apps. | true |
The user has a Cardputer-Adv from claude.com/cwc-makers plugged in over USB-C.
- Get https://github.com/moremas/build-with-claude into a
build-with-claude/directory under cwd:- If
gitis available:git clone(orgit pullif it already exists). - If
gitis not available: don't install it. Download the GitHub tarball instead —curlandtarship with macOS, Linux, and Windows 10+ out of the box:- macOS / Linux:
curl -L https://github.com/moremas/build-with-claude/archive/refs/heads/main.tar.gz | tar xz && mv build-with-claude-main build-with-claude - Windows (PowerShell):
curl.exe -L -o bwc.zip https://github.com/moremas/build-with-claude/archive/refs/heads/main.zip; tar -xf bwc.zip; Rename-Item build-with-claude-main build-with-claude
- macOS / Linux:
- Re-running
/maker-setuplater just re-downloads (~500KB) — no update mechanism needed.
- If
- Invoke the
m5-onboardskill and follow it to runonboard/scripts/onboard.py --apps buddyfrom insidebuild-with-claude/, surfacing the download-mode button prompt to the user. - When done, tell the user how to launch Claude Buddy and ask what they want to build next (see the
cardputer-buddyskill for iterating).