원클릭으로
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