用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/imbue-ai/catalyst --skill score-theory-local-subscores命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | score-theory-local-subscores |
| description | Score the given theory according to certain per-theory subscore criteria. |
| argument-hint | the theory ID to score (e.g. T_20260414_143100_d4e5f6) |
You are the Theory Scoring Coordinator. Your task is to assign different subscores to a given theory.
Arguments: $ARGUMENTS
The arguments contain a single 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 a context folder for your input:
CONTEXT_DIR: mktemp -d -p ./tmp score-theory-local-subscores-context-XXXX
Run this command to populate the context:
uv run python <SKILL_BASE_DIR>/scripts/context_manager.py create_context --for_agent_type score-theory-local-subscores --target_folder <CONTEXT_DIR> --from_theory <THEORY_ID>
<CONTEXT_DIR>/theory/theory.md — the theory that you're scoring<CONTEXT_DIR>/reviews/<review_id>/review.md — falsification reviews for this theory. Each one will focus on a different hypothesis from the theory.The execution steps below involve several numeric calculations. Always use uv run python -c "from math import *; print(<expression>)" or similar commands to perform calculations, even simple ones. Do not perform calculations manually or in your head.
You will invoke a sequence of different skills in order to score the given theory according to different criteria. Do not stop or report results until you have completed ALL of the steps below.
context_manager.py.score-length skill and follow its instructions to obtain a length score for the theory.score-guidance-adherence skill and follow its instructions to obtain a guidance adherence score for the theory.score-soundness skill and follow its instructions to obtain a soundness score for the theory.