compile-workbook
스타0
포크1
업데이트2026년 4월 26일 09:29
Compile a workbook project into a preview-ready HTML document
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Compile a workbook project into a preview-ready HTML document
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | compile-workbook |
| description | Compile a workbook project into a preview-ready HTML document |
| disable-model-invocation | true |
Compile a workbook project into a full HTML document with title page, table of contents, and all lessons.
Identify the project: Ask which project to compile if not specified. List available projects:
ls /home/daniel-bo/Desktop/Workbooks/dashboard/projects/
Ensure the dashboard is running: Check if the dev server is up:
curl -s http://localhost:3000 > /dev/null 2>&1 && echo "Running" || echo "Not running"
If not running, start it:
cd /home/daniel-bo/Desktop/Workbooks/dashboard && npm run dev &
Wait a few seconds for it to be ready.
Compile via the API: Hit the compile endpoint:
curl -s "http://localhost:3000/api/projects/<PROJECT_ID>/compile" -o compiled_output.html
Report the result: Tell the user:
dashboard/projects/