ワンクリックで
configure-spotters
Read the paper and decide which issue spotters to use, removing irrelevant ones and optionally adding custom ones
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read the paper and decide which issue spotters to use, removing irrelevant ones and optionally adding custom ones
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run EDSL-parallelized issue finding across all sections of a katz-registered manuscript
Bootstrap a full paper review using katz
Send paper figures to vision-capable models for feedback on clarity, design, and presentation
Review open katz issues, investigate them against the manuscript and code, and record findings
Read the paper and file issues for problems found in the manuscript
Review the paper's repository — code, data, and analysis scripts — against manuscript claims
| name | configure-spotters |
| description | Read the paper and decide which issue spotters to use, removing irrelevant ones and optionally adding custom ones |
| allowed-tools | Read, Bash, Glob, Grep |
| user-invocable | true |
Reads the manuscript, determines what kind of paper it is, loads default spotters, and then removes any that don't apply. Optionally adds paper-specific custom spotters.
/configure-spotters
katz paper status should return "valid": true).Run katz spotter catalog. If empty, initialize it:
katz spotter init-catalog
This populates .katz/spotters/ (the repo-level catalog) with 13 default spotters. This does NOT enable any of them for the current paper.
Read the abstract and introduction from the canonical manuscript to understand:
Use katz paper section <id> and read the relevant lines from .katz/versions/<commit>/paper/manuscript.md.
Run katz spotter catalog to see all available spotters. For each one, run katz spotter catalog-show <name> to read its description.
Enable only the spotters that apply to this paper:
katz spotter enable overclaiming
katz spotter enable logical_gaps
katz spotter enable unclear_writing
# ... etc
katz spotter enable <name> is idempotent: if the spotter is already enabled, the command returns success with "already_enabled": true. This makes it safe to run from scripts that defensively enable a set of spotters.
Use judgment. For example:
literature_positioning (but DOES benefit from identification_threats — SUTVA, spillovers, etc.)statistical_errors, methodology_concerns, or results_interpretationcausal_languageoverclaiming, logical_gaps, unclear_writing, internal_contradictions, and narrative_consistency apply to nearly all papersBased on what you learned about the paper, add custom spotters for concerns specific to this paper's methods or domain directly to the version. Examples:
katz spotter add \
--name "prompt_sensitivity" \
--scope section \
--description "Check whether results could be driven by specific prompt wording. Look for: single untested prompt, no robustness to rephrasing, temperature/sampling not reported." \
--investigation "Check if alternative prompts are tested. Check if generation parameters are reported. Confirm if a single untested prompt drives results. Reject if robustness is shown."
katz spotter add writes the new spotter to the catalog and auto-enables it for the active version when a paper is registered. Do not run katz spotter enable again for the same custom spotter unless you are intentionally checking idempotence.
After configuring, report:
katz spotter list to show the final configuration