debug-interactive-choice-probe
Debug-only interactive probe that asks one multiple-choice question, accepts any reply, and then finishes with a result JSON.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Debug-only interactive probe that asks one multiple-choice question, accepts any reply, and then finishes with a result JSON.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Draft a LaTeX literature review section. Use this skill when user wants to create an introduction and/or related work section for a research paper. Ensure you can access to the Zotero library through zotero-bridge CLI.
Debug-only ACP sequence probe step that runs a configurable countdown script before producing a structured result with handoff verification.
Dynamic HTML generator for literature deep-reading. Use when the user wants to read a paper in depth. Ensure you can access to the Zotero library through zotero-bridge CLI.
Prepare the context for create topic synthesis workflow. Use this skill when user wants to create a new topic. DO NOT invoke unless you can access to the Zotero library through zotero-bridge CLI.
Draft the topic-level core synthesis and knowledge graph completion based on the analysis context from the prepare phase. Use this skill after create/update-topic-synthesis-prepare. DO NOT invoke this skill directly.
Assess library coverage & evidence reliability, propose collection supplementation, and generate the final summary of a topic. Use this skill after topic-synthesis-core-enrichment. DO NOT invoke this skill directly.
| name | debug-interactive-choice-probe |
| description | Debug-only interactive probe that asks one multiple-choice question, accepts any reply, and then finishes with a result JSON. |
This skill is only for Zotero Agents debug workflows. Do not write Zotero items, notes, preferences, or external files.
Run only in interactive mode.
ui_hints.kind = "choose_one" and provide
three options.__SKILL_DONE__ set to
true and must match assets/output.schema.json after the marker is
removed by the runtime.Use this exact pending shape on the first turn:
{
"__SKILL_DONE__": false,
"message": "Debug interactive probe: choose any option to continue.",
"ui_hints": {
"kind": "choose_one",
"prompt": "Choose any option. The workflow will finish regardless of your answer.",
"hint": "Any answer is accepted.",
"options": [
"Alpha",
"Beta",
"Gamma"
]
}
}
After the user replies, return JSON matching this shape:
{
"__SKILL_DONE__": true,
"kind": "debug_interactive_choice_probe_result",
"ok": true,
"accepted_any_reply": true,
"message": "Debug interactive probe completed after one user reply.",
"warnings": []
}
Do not include prose outside the JSON object.