ワンクリックで
setup
Clone Strudel repo, install dependencies, and start the dev server. Use when setting up the project for the first time.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Clone Strudel repo, install dependencies, and start the dev server. Use when setting up the project for the first time.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | setup |
| description | Clone Strudel repo, install dependencies, and start the dev server. Use when setting up the project for the first time. |
Execute these steps in order:
Check prerequisites:
node --version # must be >= 18
pnpm --version # must be installed
If pnpm is missing, run npm install -g pnpm.
Clone from Codeberg (NOT GitHub — the GitHub mirror is archived):
git clone https://codeberg.org/uzu/strudel.git
Install dependencies:
cd strudel && pnpm i
Start dev server:
pnpm dev
This runs jsdoc-json generation first, then starts the Astro dev server for the REPL.
Verify: Open the URL shown in terminal (usually http://localhost:4321). The Strudel REPL should load.
Tell the user to open the browser and try typing sound("bd sd hh sd") in the REPL, then press Ctrl+Enter to hear a basic drum pattern.
If any step fails, diagnose before proceeding. Common issues:
nvm use 18 or install Node 20+lsof -i :4321rm -rf node_modules && pnpm i