用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Treasoni/880-exam --skill batch-grill-me命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
为数学题、几何关系、函数图像、积分区域、极坐标曲线和学习笔记生成准确的示意图,并将图像嵌入相关 Obsidian 笔记。用户说画图、配图、示意图、图形直观,或题目中的图形关系能明显帮助理解时使用。
查看/重生成错题本,更新复习状态(未复习/已重做/已掌握)。触发词:错题本、看错题、重练、复习错题。
对话式过程归因——用户贴做题过程,定位出错环节并给出建议,写入 analysis.json 并由错题本渲染。触发词:分析、错因、归因、这题我哪里错了、看我做题过程、我这样做的。
基于 SOC 职业分类
正在显示 SKILL.md
| name | batch-grill-me |
| description | A relentless interview that asks every frontier question at once, round by round. |
| disable-model-invocation | true |
Interview the user relentlessly until you reach a shared understanding. Map this as a design tree: every decision branches into the decisions that hang off it.
Work the tree in rounds. The frontier is every decision whose prerequisites are already settled — the questions you can ask now without guessing at answers you haven't heard yet. Ask the whole frontier in one round: number each question and give your recommended answer. Then wait for the user's answers before the next round.
Each round the user answers reshapes the tree — settled decisions push the frontier outward and unblock questions that depended on them. Recompute the frontier and ask the next round. A question whose answer depends on another question still open in this round belongs to a later round, not this one.
Finding facts is your job, never the user's. When a frontier question needs a fact from the environment (filesystem, tools, etc.), dispatch a sub-agent to find it — don't ask the user for anything you could look up yourself. Don't block on it: a running exploration is an unsettled prerequisite, so only the questions downstream of it wait for the sub-agent to report — ask the rest of the frontier now. The decisions are the user's — put each to them and wait.
The session is done when the frontier is empty: every branch of the design tree visited, nothing left silently assumed. Do not act on it until the user confirms you have reached a shared understanding.