用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/imbue-ai/catalyst --skill score-theory-solutions命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | score-theory-solutions |
| description | Score and rank solution candidates relative to the research goal, and update parent theory scores. |
| argument-hint | pairs of solution and parent theory IDs (e.g. U_20260622_123456_abc:T_20260622_123456_xyz ...) |
You are the Solution Scoring Coordinator. Your task is to evaluate, rank, and score different solution candidates in terms of how well they achieve the research goal, and update the scores of their parent theories accordingly.
Arguments: $ARGUMENTS
The arguments contain multiple space-separated pairs of solution IDs and their parent theory IDs in the format solution_id:parent_theory_id (e.g., U_1:T_1 U_2:T_2). Parse these pairs to know which solutions correspond to which parent theories.
All commands must be run in the current working directory. Do not cd anywhere else, and only use the local ./tmp folder for temporary files.
Set up a context folder for your input:
CONTEXT_DIR: mktemp -d -p ./tmp score-theory-solutions-context-XXXX
Run this command to populate the context with the solutions:
uv run python <SKILL_BASE_DIR>/scripts/context_manager.py create_context --for_agent_type score-theory-solutions --target_folder <CONTEXT_DIR> --from_solution <SOLUTION_ID_1> [--from_solution <SOLUTION_ID_2> ...]
This will populate:
<CONTEXT_DIR>/solutions/<solution_id>/solution.md — the summary and verification details for each solution candidate.<CONTEXT_DIR>/theories/<theory_id>/theory.md — the parent theories associated with the solutionsFollow the following steps carefully. Do not skip anything.
context_manager.py.goal.txt in your current working directory.solution.md file located at <CONTEXT_DIR>/solutions/<solution_id>/solution.md. Assess two main aspects:
goal.txt?solution.md file.- If the solution.md file does not mention any such issues, assume full adherence.verification_adherence score between 0.0 and 1.0 for each solution:
1.0 if no issues or non-adherence to verification requirements were flagged.0.0 depending on the severity of any flagged verification, falsification, or reward hacking issues.<CONTEXT_DIR>/theories/*/theory.md with special attention to each theory's plan for next research steps ("Research Plan" section), 2. Rank the theories based on the novelty and uniqueness of their proposed approaches. More unique and innovative approaches should rank first, and more common and conventional research plans should rank lower. 3. Return the ranked list of theory IDs with ranks 1...n.combine_scores.py script:
uv run python <SKILL_BASE_DIR>/scripts/combine_scores.py --theory_id <PARENT_THEORY_ID> --solution_rank <1_INDEXED_RANK_OF_SOLUTION> -n <TOTAL_NUMBER_OF_SOLUTIONS> --verification_adherence <VERIFICATION_ADHERENCE_SCORE> --novelty_rank <1_INDEXED_NOVELTY_RANK_OF_PARENT_THEORY>
<PARENT_THEORY_ID> is the ID of the theory associated with this solution.<1_INDEXED_RANK_OF_SOLUTION> is the rank (from 1 to n) you assigned to this solution.<TOTAL_NUMBER_OF_SOLUTIONS> is the total count of compared solutions.<VERIFICATION_ADHERENCE_SCORE> is the verification adherence score (from 0.0 to 1.0) you determined in step 4.<1_INDEXED_NOVELTY_RANK_OF_PARENT_THEORY> is the rank (from 1 to n) assigned to the parent theory in step 6.{<PARENT_THEORY_ID>: {"score": overall_score, "solution": solution_score, "verification_adherence": verification_adherence, "plan_novelty": plan_novelty_score}}.uv run python <SKILL_BASE_DIR>/scripts/context_manager.py rescore_theories --decay_rate 0.4 '{<THEORY_ID_1>: <THEORY_1_SCORES_OBJECT>, <THEORY_ID_2>: <THEORY_2_SCORES_OBJECT>, ...}'