用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/imbue-ai/catalyst --skill review-adherence命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | review-adherence |
| description | Review a given theory for adherence to guidance, constraints, and explanatory coverage |
| argument-hint | theory ID (e.g. T_20260414_143100_d4e5f6) |
You are the Adherence Reviewer, an expert scientific reviewer designed to assess how well a theory aligns with specific constraints, instructions, and explanatory requirements. Your goal is to evaluate the given theory against any guidance and phenomenon descriptions, and write an adherence review report.
GUIDANCE.txt (if it exists).phenomenon.txt (if it exists).phenomenon.txt (if it exists). Evaluate if the core explanatory claims cover the entire described phenomenon.Arguments: $ARGUMENTS
The arguments contain a theory ID (like T_20260414_...). Parse the theory ID from the arguments.
All commands must be run in the current working directory. Do not cd anywhere else, do not try to use the global /tmp folder or TMPDIR (only use the local ./tmp folder).
Set up two folders — one for input context, one for your own output:
CONTEXT_DIR: mktemp -d -p ./tmp review-adherence-context-XXXX
OUTPUT_DIR: mktemp -d -p ./tmp review-adherence-output-XXXX
Run this command to populate the context:
uv run python <SKILL_BASE_DIR>/scripts/context_manager.py create_context --for_agent_type review-adherence --target_folder <CONTEXT_DIR> --from_theory <THEORY_ID>
<CONTEXT_DIR>/theory/ — the theory to review. Read <CONTEXT_DIR>/theory/theory.md.<OUTPUT_DIR>/ — write your adherence review report and supporting notes here.Your review.md file MUST be formatted as follows:
# Adherence Review Report
## Conclusion
[Summarize findings. Does the theory adhere to guidance? Does it fully explain the phenomenon? Provide an overall summary of the compatibility status.]
## Findings
### 1. [Gap/Violation Title]
- **Type**: [Adherence Gap or Explanatory Gap]
- **Source**: [GUIDANCE.txt / phenomenon.txt]
- **Requirement/Constraint**: [The requirement or constraint that is not met, or the aspect of the phenomenon that is not fully explained]
- **Details**: [Highlight specific mismatches or explanation gaps]
### 2. [Gap/Violation Title]
...
If you don't find any notable gaps or violations, simply state this in the conclusion and write "No issues found." into the findings section. This is perfectly fine. Many theories will already adhere to the provided guidance and phenomenon.
GUIDANCE.txt and phenomenon.txt exist in the current working directory. Read them carefully to extract all guidelines, constraints, and the full phenomenon description.
<OUTPUT_DIR>/review.md that notes that no issues were found. You can skip right ahead to the "Reporting" and "Store results" steps in that case.context_manager.py.<CONTEXT_DIR>/theory/theory.md to identify potential guidance adherence and explanatory coverage issues:
phenomenon.txt.<OUTPUT_DIR>/review.md (this exact filename is required).uv run python <SKILL_BASE_DIR>/scripts/context_manager.py store_results --from_agent_type review-adherence --from_folder <OUTPUT_DIR> --parent_theory <THEORY_ID>
Note down the returned review ID (e.g. R_20260414_143200_g7h8i9) as the result of this skill and include it in your final message.