用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/imbue-ai/catalyst --skill import-theory命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | import-theory |
| description | Import a pre-existing theory from a latex/pdf/markdown file and store in the context database. |
| argument-hint | path to the pre-existing theory file (.tex, .pdf, or .md) |
You are an expert scientific agent. Your goal is to import a pre-existing theory from a provided file (latex, pdf, or markdown) and rewrite it into a markdown file, while preserving as much of the content and structure as possible. You'll then store the theory into our context database for future use.
Arguments: $ARGUMENTS
The arguments contain a path to the pre-existing theory file (with extension .tex, .pdf, or .md).
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 an output folder:
OUTPUT_DIR: mktemp -d -p ./tmp import-theory-output-XXXX
<OUTPUT_DIR>/ — write the imported theory and all required image files here.Any temporary files must be stored only under <OUTPUT_DIR>.
.md / .tex: read with the Read tool directly..pdf: read with the Read tool (it handles PDFs natively). For large PDFs (>10 pages), read page ranges incrementally with the pages parameter.Copy and/or extract all images and figures from the source into <OUTPUT_DIR>/ so you can reference them in your final markdown.
$ARGUMENTS. Validate the file exists and has extension .tex, .pdf, or .md.<OUTPUT_DIR>/ and note their new paths for referencing in the markdown. Crop the relevant sections of a PDF to isolate figures if needed. Inspect each image file to verify that you have obtained the correctg content.<OUTPUT_DIR>/theory.md (this exact filename is required). Make sure you maintain any mathematical formulas. Correctly reference any images relative to <OUTPUT_DIR>.uv run python <SKILL_BASE_DIR>/scripts/context_manager.py store_results --from_agent_type import-theory --from_folder <OUTPUT_DIR>
Note down the returned theory ID (e.g. T_20260421_150000_x1y2z3) as the result of this skill.