Rename /keep-thinking → /start-making

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

🏠 Remote-Dev: homespace
This commit is contained in:
Daisy Hollman 2026-05-06 00:14:03 +00:00
parent cb7ed888dd
commit 622aa3e665
No known key found for this signature in database
6 changed files with 7 additions and 7 deletions

View File

@ -595,7 +595,7 @@
}, },
{ {
"name": "cwc-makers", "name": "cwc-makers",
"description": "Onboard a Code-with-Claude Makers Cardputer with one /keep-thinking command — clones the build-with-claude repo, flashes UIFlow firmware, and installs the Claude Buddy app bundle.", "description": "Onboard a Code-with-Claude Makers Cardputer with one /start-making command — clones the build-with-claude repo, flashes UIFlow firmware, and installs the Claude Buddy app bundle.",
"version": "1.0.0", "version": "1.0.0",
"author": { "author": {
"name": "Anthropic", "name": "Anthropic",

View File

@ -1,7 +1,7 @@
{ {
"name": "cwc-makers", "name": "cwc-makers",
"version": "1.0.0", "version": "1.0.0",
"description": "Seamless onboarding for the Code-with-Claude Makers Cardputer: one /keep-thinking command clones the build-with-claude repo, flashes UIFlow firmware, and installs the Claude Buddy app bundle onto a freshly-plugged-in M5Stack Cardputer-Adv.", "description": "Seamless onboarding for the Code-with-Claude Makers Cardputer: one /start-making command clones the build-with-claude repo, flashes UIFlow firmware, and installs the Claude Buddy app bundle onto a freshly-plugged-in M5Stack Cardputer-Adv.",
"author": { "author": {
"name": "Anthropic", "name": "Anthropic",
"email": "support@anthropic.com" "email": "support@anthropic.com"

View File

@ -4,7 +4,7 @@ Seamless onboarding for the [Code-with-Claude Makers](https://claude.com/cwc-mak
## What it does ## What it does
Plug in your M5Stack Cardputer-Adv over USB-C, type `/keep-thinking`, and Claude will: Plug in your M5Stack Cardputer-Adv over USB-C, type `/start-making`, and Claude will:
1. Clone [`moremas/build-with-claude`](https://github.com/moremas/build-with-claude) 1. Clone [`moremas/build-with-claude`](https://github.com/moremas/build-with-claude)
2. Detect the device, flash UIFlow 2.0 firmware, and install the Claude Buddy + Hello + Snake app bundle 2. Detect the device, flash UIFlow 2.0 firmware, and install the Claude Buddy + Hello + Snake app bundle
@ -23,11 +23,11 @@ Then ask Claude to build whatever you want next — a magic 8-ball, a pixel pet,
| Path | Type | User-invocable | Purpose | | Path | Type | User-invocable | Purpose |
|------|------|----------------|---------| |------|------|----------------|---------|
| `commands/keep-thinking.md` | slash command | ✅ `/keep-thinking` | Entry point — clone repo + run full onboarding | | `commands/start-making.md` | slash command | ✅ `/start-making` | Entry point — clone repo + run full onboarding |
| `skills/m5-onboard/` | skill | ✅ `/m5-onboard` | Full provisioning playbook (detect, flash, install, every gotcha) | | `skills/m5-onboard/` | skill | ✅ `/m5-onboard` | Full provisioning playbook (detect, flash, install, every gotcha) |
| `skills/cardputer-buddy/` | skill | ✅ `/cardputer-buddy` | Iterate on apps after onboarding (push, tail, REPL) | | `skills/cardputer-buddy/` | skill | ✅ `/cardputer-buddy` | Iterate on apps after onboarding (push, tail, REPL) |
`/keep-thinking` is the intended entry point; the skills are also auto-triggered by Claude when relevant. Skill content is vendored from the upstream repo so Claude has the domain knowledge in-context without symlinking anything into `~/.claude/skills/`. `/start-making` is the intended entry point; the skills are also auto-triggered by Claude when relevant. Skill content is vendored from the upstream repo so Claude has the domain knowledge in-context without symlinking anything into `~/.claude/skills/`.
## Prerequisites ## Prerequisites

View File

@ -1,6 +1,6 @@
--- ---
name: cardputer-buddy name: cardputer-buddy
description: Iterate on the Cardputer-Adv MicroPython app bundle (Claude Buddy, Snake, Hello) after the device is already provisioned via m5-onboard. Use when the user wants to add a new app, push a single changed .py without re-flashing, watch device serial logs, or run a one-shot REPL command. Trigger on "add an app", "push to the cardputer", "tail the device", "run on the device", or follow-up work after /keep-thinking. description: Iterate on the Cardputer-Adv MicroPython app bundle (Claude Buddy, Snake, Hello) after the device is already provisioned via m5-onboard. Use when the user wants to add a new app, push a single changed .py without re-flashing, watch device serial logs, or run a one-shot REPL command. Trigger on "add an app", "push to the cardputer", "tail the device", "run on the device", or follow-up work after /start-making.
--- ---
# Cardputer Buddy app bundle # Cardputer Buddy app bundle

View File

@ -9,7 +9,7 @@ This skill automates the full cold-start workflow for an M5Stack ESP32 device: d
## Where the scripts live ## Where the scripts live
This skill ships as part of the `cwc-makers` plugin for reference, but the executable scripts and the `buddy/` app bundle live in a local clone of https://github.com/moremas/build-with-claude (the `/keep-thinking` command creates this clone). Run every `scripts/*.py` invocation below from inside that clone's `onboard/` directory so `--apps buddy` resolves to the sibling `buddy/device/` payload. This skill ships as part of the `cwc-makers` plugin for reference, but the executable scripts and the `buddy/` app bundle live in a local clone of https://github.com/moremas/build-with-claude (the `/start-making` command creates this clone). Run every `scripts/*.py` invocation below from inside that clone's `onboard/` directory so `--apps buddy` resolves to the sibling `buddy/device/` payload.
## When to use ## When to use