From predictive-mind
Run a cheap, reversible real probe to ground a belief instead of hallucinating. Use when dreamer confidence is low or when you catch yourself guessing about repository state.
How this skill is triggered — by the user, by Claude, or both
Slash command
/predictive-mind:probeThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
World Models research observation: when the learned dynamics model (M)
World Models research observation: when the learned dynamics model (M) is unreliable, prefer a cheap real probe over an imagined rollout. This skill is that safety valve.
/probeThe following are side-effect-free (or trivially reversible) and are pre-approved in this skill's allowlist:
| Intent | Probe |
|---|---|
| What changed locally? | git status, git diff, git log -5 --oneline |
| What branch am I on? | git branch --show-current |
| What's in this directory? | ls -la <path> |
| Type check without emit | tsc --noEmit |
| What tests exist? | pytest --collect-only -q |
| Are there lint errors? | ruff check <path>, eslint --no-fix <path> |
| Is this dep installed? | npm ls <pkg>, node --version, python --version |
| Is this tool on PATH? | which <cmd> |
/reflect next)./probe is NOT forFor everything else, use /predict then run the action normally.
$ARGUMENTS — the question you want grounded, in one sentence.
Your response should:
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub jason-hchsieh/predictive-mind --plugin predictive-mind