원클릭으로
mdz-language
When interpreting MDZ documents, load this skill to understand the syntax.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
When interpreting MDZ documents, load this skill to understand the syntax.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
When orchestrating tasks, load this core skill first to understand the general methodology.
When creating or working on a work package (WP), load this skill to get templates and understand the WP lifecycle.
When it would yield better results to explore mulitple approaches to a problem, load this skill to orchestrate multiple agents using a diverge and converge strategy.
When a solution needs simplifying, load this skill with the map-reduce skill to find its essence.
When testing web UI, load this skill to take screenshots and interact with elements.
When exploring alternatives, load this skill to generate diverse ideas and avoid the consensus center.
| name | mdz-language |
| description | When interpreting MDZ documents, load this skill to understand the syntax. |
MDZ extends Markdown with a logic layer for LLM evaluation. It interleaves Host Text (raw Markdown) and MDZ Blocks (statements).
ALL CAPS.- to preserve indentation in editors.$var = value or $var: Type = value$array << valueTYPE Name = "enum" | "val" or TYPE Name = (String, Number)Number (1, 1.5), String ("text", "fmt #{var}"), Array<T> (["a", "b"]), Tuple<T...> (("a", 1)), Link (~/path, #anchor), Lambda (x => x).$summary = the main argument).FOR Loop
FOR $item IN $list DO
...
END
WHILE Loop
WHILE $x > 0 DO
...
END
IF Conditional
IF $x = 1 AND $y != 2 THEN
...
ELSE
...
END
CASE Switch
CASE $status
WHEN "draft" THEN ...
WHEN "published" THEN ...
ELSE ...
END
Block/Prose Wrapper
DO
Raw prose here
END
SPAWN (Delegate)
SPAWN ~/agent/name TO instruction text
SPAWN ~/agent/name WITH #anchor
ASYNC SPAWN ...
USE (Tool/Skill)
USE ~/skill/name TO instruction
USE ~/skill/name WITH
param1: value
=, !=AND, OR, NOTIF, WHILE, WHEN). Elsewhere is text.FOR $file IN $files
- IF $file = "important.txt" THEN
SPAWN ~/agent/analyzer WITH $file
- ELSE
$status = skip this file
- END
END
$summary = summarize the conversation
USE ~/skill/logger WITH
message: $summary