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