一键导入
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