Intent check
Skill sumitake/agent-collab/plugins/agent-collab/skills/intent-check
Verify that the active primary's interpretation matches the operator's request before consequential planning or execution. Use when the user says "intent check," "confirm what I asked," "check for scope drift," or "/agent-collab:intent-check." Also offer this proactively when a major request has multiple constraints whose omission would materially change the result.From its SKILL.md
npx -y skills add sumitake/agent-collab --skill intent-checkAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 28 days oldThe repository was created 28 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.4 KB, 625 tokens by cl100k_base, as published. Nobody here has run it
Unified runtime invocation
Resolve the plugin root from this loaded file: SKILL.md is at <plugin-root>/skills/<skill-name>/SKILL.md. Invoke only python3 "<plugin-root>/coordinator.py" and send one bounded JSON request on stdin. Before constructing it, read the Coordinator request schema in <plugin-root>/README.md; never invent fields or route/action pairs. The public coordinator re-observes the active host/model, captures artifact provenance, excludes same-family routes, and verifies the co-packaged native manifest. It runs standalone from the installed plugin. Never discover a provider executable or reconstruct a raw command. Frontmatter tier is a routing recommendation, never a coordinator request field. For a review, cross-check, tiebreaker, or fallback over an authored artifact, capture its exact UTF-8 content and observed author model in the optional artifact object even when governance is false; never paste it into the prompt as a provenance substitute.
Intent check - distinct-family interpretation comparison
Freeze two artifacts: the operator's original request and the active primary's plain-language interpretation. Do not include an implementation plan; this step checks understanding, not design quality.
Resolve the plugin root from this loaded file and invoke only
python3 "<plugin-root>/coordinator.py" with a bounded governance-review
request. The public policy captures the active primary/model/session and
artifact-author model, excludes both families, and selects only an eligible
Gemini or Grok governance row, or a Codex advisory row. No reviewer
or escalation model is fixed in this skill. Claude is asynchronous inbox-only.
Configure the Gemini governance row at high effort because its closed contract
does not admit low. Configure the Codex advisory row at low effort because this
is a rudimentary interpretation check. Keep the Grok governance fallback at
high effort to preserve that sealed role's mandatory floor.
Workflow
- Quote the original request exactly, preserving negations and scope limits.
- Write the interpretation as objective, in-scope work, out-of-scope work, constraints, success criteria, and stop conditions.
- Capture artifact author-model provenance. If primary or artifact family is unknown, fail closed; do not accept a caller-provided family assertion.
- Ask the dynamically selected independent reviewer to return exactly:
VERDICT: MATCH | DRIFT | AMBIGUOUS
MISSED CONSTRAINTS:
- ...
ADDED SCOPE:
- ...
AMBIGUITIES:
- ...
RECOMMENDED INTERPRETATION:
<concise restatement>
- If
MATCH, proceed. IfDRIFT, revise the interpretation and recheck once. IfAMBIGUOUS, ask the operator only the load-bearing question. Preserve the typed route result and immutable provenance.
Safe mode leaves governance model routes unavailable. Never reconstruct a raw provider command, invoke Claude synchronously, or silently use a same-family reviewer.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.