Compare commits

..

3 Commits

Author SHA1 Message Date
Bryan Thompson
d38ce61a4a Add twilio-developer-kit plugin 2026-05-06 11:25:30 -05:00
Daisy S. Hollman
06f52cd3ac cwc-makers: curl+tar fallback when git is missing (#1731)
/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
2026-05-05 18:04:20 -07:00
Daisy S. Hollman
574a879067 Add cwc-makers plugin: /maker-setup Cardputer onboarding (#1730)
* Add cwc-makers plugin: /keep-thinking Cardputer onboarding

Packages the Code-with-Claude Makers (claude.com/cwc-makers) Cardputer
experience as a one-command flow for event attendees:

- commands/keep-thinking.md: user entry point — clones
  moremas/build-with-claude and runs the m5-onboard provisioning flow
- skills/m5-onboard/SKILL.md: vendored from upstream onboard/SKILL.md;
  Installation section replaced with clone-location note; explicit
  'relay physical button steps to user' directive added
- skills/cardputer-buddy/SKILL.md: post-onboarding app iteration

All three are user-invocable; /keep-thinking is the intended entry
point. Skill content is Apache-2.0 from the upstream repo.

Linear: CC-1975

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

🏠 Remote-Dev: homespace

* Rename /keep-thinking → /start-making

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

🏠 Remote-Dev: homespace

* Rename /start-making → /maker-setup

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

🏠 Remote-Dev: homespace
2026-05-05 17:16:30 -07:00
4 changed files with 74 additions and 14 deletions

View File

@@ -2014,6 +2014,69 @@
"source": "./external_plugins/terraform",
"homepage": "https://github.com/anthropics/claude-plugins-public/tree/main/external_plugins/terraform"
},
{
"name": "twilio-developer-kit",
"description": "Twilio Skills provide procedural knowledge for AI coding agents — which APIs to use, in what order, and what to avoid. Covers SMS, Voice, WhatsApp, Verify, SendGrid, Compliance, and 30+ products.",
"author": {
"name": "Twilio"
},
"category": "development",
"source": {
"source": "url",
"url": "https://github.com/twilio/ai.git",
"sha": "137c4679855d31115a8509b93a3887b8bb317da9"
},
"strict": false,
"skills": [
"./skills/sendgrid/twilio-sendgrid-account-setup",
"./skills/sendgrid/twilio-sendgrid-deliverability-advisor",
"./skills/sendgrid/twilio-sendgrid-email-send",
"./skills/sendgrid/twilio-sendgrid-email-settings",
"./skills/sendgrid/twilio-sendgrid-engagement-quality",
"./skills/sendgrid/twilio-sendgrid-inbound-parse",
"./skills/sendgrid/twilio-sendgrid-suppressions",
"./skills/sendgrid/twilio-sendgrid-webhooks",
"./skills/twilio/twilio-account-setup",
"./skills/twilio/twilio-call-recordings",
"./skills/twilio/twilio-cli-reference",
"./skills/twilio/twilio-compliance-onboarding",
"./skills/twilio/twilio-compliance-traffic",
"./skills/twilio/twilio-conference-calls",
"./skills/twilio/twilio-content-template-builder",
"./skills/twilio/twilio-conversations-classic-api",
"./skills/twilio/twilio-debugging-observability",
"./skills/twilio/twilio-email-deliverability-advisor",
"./skills/twilio/twilio-iam-auth-setup",
"./skills/twilio/twilio-identity-verification-advisor",
"./skills/twilio/twilio-lookup-phone-intelligence",
"./skills/twilio/twilio-marketing-promotions-advisor",
"./skills/twilio/twilio-messaging-channel-advisor",
"./skills/twilio/twilio-messaging-overview",
"./skills/twilio/twilio-messaging-services",
"./skills/twilio/twilio-messaging-webhooks",
"./skills/twilio/twilio-notifications-alerts-advisor",
"./skills/twilio/twilio-numbers-senders",
"./skills/twilio/twilio-organizations-setup",
"./skills/twilio/twilio-rcs-messaging",
"./skills/twilio/twilio-regulatory-compliance-bundles",
"./skills/twilio/twilio-reliability-patterns",
"./skills/twilio/twilio-security-api-auth",
"./skills/twilio/twilio-security-compliance-hipaa",
"./skills/twilio/twilio-security-hardening",
"./skills/twilio/twilio-send-message",
"./skills/twilio/twilio-sms-isv-setup",
"./skills/twilio/twilio-sms-send-message",
"./skills/twilio/twilio-taskrouter-routing",
"./skills/twilio/twilio-verify-send-otp",
"./skills/twilio/twilio-voice-conversation-relay",
"./skills/twilio/twilio-voice-outbound-calls",
"./skills/twilio/twilio-voice-twiml",
"./skills/twilio/twilio-webhook-architecture",
"./skills/twilio/twilio-whatsapp-manage-senders",
"./skills/twilio/twilio-whatsapp-send-message"
],
"homepage": "https://www.twilio.com"
},
{
"name": "typescript-lsp",
"description": "TypeScript/JavaScript language server for enhanced code intelligence",

View File

@@ -31,7 +31,7 @@ Then ask Claude to build whatever you want next — a magic 8-ball, a pixel pet,
## Prerequisites
Python 3.10+ and git on the host machine. The onboarding scripts auto-install `esptool` on first run; `pyserial` is vendored in the upstream repo.
Python 3.10+ on the host machine (git is optional — `/maker-setup` falls back to a curl+tar download if it's missing). The onboarding scripts auto-install `esptool` on first run; `pyserial` is vendored in the upstream repo.
## License

View File

@@ -1,10 +1,15 @@
---
description: Onboard a Code-with-Claude Makers Cardputer — clone the build-with-claude repo, flash firmware, and install the Claude Buddy apps.
description: Onboard a Code-with-Claude Makers Cardputer — fetch the build-with-claude repo, flash firmware, and install the Claude Buddy apps.
disable-model-invocation: true
---
The user has a Cardputer-Adv from claude.com/cwc-makers plugged in over USB-C.
1. Clone or update https://github.com/moremas/build-with-claude in the current directory.
2. Invoke the `m5-onboard` skill and follow it to run `onboard/scripts/onboard.py --apps buddy` from the clone, surfacing the download-mode button prompt to the user.
1. Get https://github.com/moremas/build-with-claude into a `build-with-claude/` directory under cwd:
- If `git` is available: `git clone` (or `git pull` if it already exists).
- If `git` is **not** available: don't install it. Download the GitHub tarball instead — `curl` and `tar` ship 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`
- Re-running `/maker-setup` later just re-downloads (~500KB) — no update mechanism needed.
2. Invoke the `m5-onboard` skill and follow it to run `onboard/scripts/onboard.py --apps buddy` from inside `build-with-claude/`, surfacing the download-mode button prompt to the user.
3. When done, tell the user how to launch Claude Buddy and ask what they want to build next (see the `cardputer-buddy` skill for iterating).

View File

@@ -130,17 +130,9 @@ Once `m5-onboard go` finishes at the `DONE` banner, the device is ready to use o
`onboard.py` runs a preflight check at startup: if `esptool` (or, in the rare prune-vendor case, `pyserial`) is missing, it lists what's needed and asks the user whether to install now. On `Y` (or Enter) it runs `python -m pip install --user <missing>` in the current interpreter, then verifies. Inside a venv the `--user` flag is dropped so the install lands in the venv's site-packages. Non-interactive callers (piped stdin) get a manual-install hint instead of a prompt.
Python itself has to exist before this skill can do anything — you can't bootstrap an interpreter from inside one. Same story for `git` (needed once, to clone the skill and bundle repos). Claude's responsible for detecting both and installing whatever's missing *before* running any `scripts/*.py` invocation. Detection is just running `python3 --version` / `python --version` and `git --version` — if either fails, Claude fetches them with the host's native package manager before anything else.
Python itself has to exist before this skill can do anything — you can't bootstrap an interpreter from inside one. `git` is **not** required — the `/maker-setup` command falls back to downloading the GitHub tarball with `curl`+`tar` (both pre-installed on macOS, Linux, and Windows 10+) when `git --version` fails. Claude's responsible for detecting Python and installing it if missing *before* running any `scripts/*.py` invocation. Detection is just running `python3 --version` / `python --version` — if it fails, Claude fetches Python with the host's native package manager before anything else.
**Per-OS dependency bootstrap (Claude's responsibility if missing):**
*Git:*
- **Windows** — `winget install -e --id Git.Git --silent --accept-source-agreements --accept-package-agreements`. Adds `git.exe` to PATH; may need a new shell for it to be visible.
- **macOS** — `/usr/bin/git` ships with Xcode Command Line Tools; `git --version` on a fresh macOS triggers the tools installer automatically. If you want to avoid the GUI prompt, install via `xcode-select --install` (still opens a dialog) or `brew install git`.
- **Linux** — `sudo apt-get install -y git` / `sudo dnf install -y git` / `sudo pacman -S --noconfirm git`.
*Python:*
**Per-OS Python bootstrap (Claude's responsibility if missing):**
- **Windows** — `winget install -e --id Python.Python.3.13 --silent --accept-source-agreements --accept-package-agreements`. Takes ~30 seconds, no UI, gets PATH right. If the current shell can't see `python` afterwards, tell the user to close and reopen the terminal (Windows updates PATH only on new shells).
- **macOS** — Python 3 is usually pre-installed as `/usr/bin/python3` on any current macOS (shipped by Apple). If for some reason it isn't, `brew install python@3.13` via Homebrew is the go-to; if Homebrew itself is missing, offer to install it via `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"` (but only if the user confirms — Homebrew is a larger commitment than winget).