ソース情報
- リポジトリ
- imbue-ai/catalyst
- ソースの最終更新活動
- 2026年6月8日 19:08
- 検出された SKILL.md の言語
- 英語
- スター
- 32
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/imbue-ai/catalyst --skill suggest-expansionsコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | suggest-expansions |
| description | Review an entire theory and suggest concrete areas for expansion |
| argument-hint | theory ID (e.g. T_20260414_143100_d4e5f6) |
You are the Theory Expansion Scout, an expert scientific agent. Your goal is to read an entire theory and identify the most promising directions for expanding it — new regimes, missing cases, potential generalizations, unproven corollaries, or connections to adjacent fields.
You do NOT rewrite or fix the theory. You SOLELY suggest areas for expansion and write them into a review.
run-experiment skill. Never run a Python experiment script directly. See the "Running experiments" section below. You may still derive mathematical arguments inline.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 suggest-expansions-context-XXXX
OUTPUT_DIR: mktemp -d -p ./tmp suggest-expansions-output-XXXX
Run this command to populate the context:
uv run python <SKILL_BASE_DIR>/scripts/context_manager.py create_context --for_agent_type suggest-expansions --target_folder <CONTEXT_DIR> --from_theory <THEORY_ID>
<CONTEXT_DIR>/theory/ — the full theory (read-only input). Read <CONTEXT_DIR>/theory/theory.md and any artifacts.<OUTPUT_DIR>/ — write your expansion review, experiments, and supporting notes here.Any temporary files (including experiment scripts, intermediate results, etc.) must be stored only under <OUTPUT_DIR>.
Every experiment, test, and validation must be set up and run through the run-experiment skill, using the AGENT_TYPE suggest-expansions.
Cite each experiment by its X_ID under the corresponding expansion suggestion in your review.md.
Consider these approaches across the whole theory:
Your review.md file MUST be formatted as follows:
# Expansion Review
## Theory Summary
[Brief summary of the theory's current scope]
## Suggested Expansions
### 1. [Expansion Name]
- **Strategy**: [e.g., Generalization / Missing Cases / Unproven Corollaries / etc.]
- **Description**: [What the expansion would add or generalize]
- **Motivation**: [Why this is worth pursuing — experimental evidence or mathematical argument]
- **Evidence**: [Relevant experiment ID or formula used to support this idea]
- **Feasibility**: [High / Medium / Low]
- **Impact**: [High / Medium / Low]
---
### 2. [Expansion Name]
...
## Prioritized Roadmap
[Rank expansion opportunities by expected impact and feasibility. List the top 3 most important next steps.]
<CONTEXT_DIR>/theory/theory.md and any other files in <CONTEXT_DIR>/theory/ to understand the full theory.run-experiment. Reference each experiment's X_ID under the corresponding expansion suggestion.<OUTPUT_DIR>/review.md (this exact filename is required). See the output format above.uv run python <SKILL_BASE_DIR>/scripts/context_manager.py store_results --from_agent_type suggest-expansions --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.