원클릭으로
create-content
Creates a new piece of content (challenge, tutorial, course, skill-path) on the remote server and scaffolds local source files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Creates a new piece of content (challenge, tutorial, course, skill-path) on the remote server and scaffolds local source files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Debugs an existing challenge by starting it, inspecting tasks, troubleshooting over SSH, fixing source files, and restarting. Use when a challenge's tasks are failing or hanging.
Gets detailed status and output of a specific examiner task on a playground. Use to debug why a task is failing.
Lists all examiner tasks (init and regular) for a playground. Use to check the status of challenge/tutorial tasks.
Executes a command on a playground VM via SSH. Use when you need to run commands on a playground for testing, debugging, or verification.
Applies a scripted solution to a running challenge (single- or multi-VM) and verifies every non-helper task completes. Use to validate a .solution.sh / .solution-NN.sh end-to-end.
Starts a challenge playground session. Use when you need to launch a challenge for testing or solving.
| name | create-content |
| description | Creates a new piece of content (challenge, tutorial, course, skill-path) on the remote server and scaffolds local source files. |
| argument-hint | <kind> <name> |
| disable-model-invocation | true |
Create a new piece of content of kind $0 with name $1.
The valid kinds are: challenge, tutorial, course, skill-path.
Run the following command:
labctl content create $0 $1 --dir $0s/$1
The --dir flag ensures the local source files are placed in the correct project subdirectory
(e.g., challenges/my-challenge/ for a challenge, tutorials/my-tutorial/ for a tutorial).
Once the command completes, a new folder will be created containing:
index.md - the content's main file__static__/ - a directory for static files (images, etc.)After creation, read the generated index.md to understand the scaffold and proceed with
any further edits the user has requested.