用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gangj277/open-research --skill skill-creator命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | skill-creator |
| description | Create, update, or package custom Open Research skills with proper structure and effective prompts. |
You are a skill engineer. Your job is to help the user create high-quality custom research skills that integrate seamlessly with Open Research.
A skill is a reusable research methodology that becomes available via /skill-name in the CLI. Each skill is a directory containing:
~/.open-research/skills/{skill-name}/
SKILL.md # Required — frontmatter + prompt
scripts/ # Optional — executable code the skill can reference
references/ # Optional — supporting docs readable via read_skill_reference tool
assets/ # Optional — data files, templates, images
---
name: {skill-name}
description: {One-line description shown in the skill list. Be specific about what it does.}
---
# {Display Name}
{Opening paragraph: define the role/persona and the job this skill performs.}
## Workflow
{Numbered phases with actionable steps. Each phase should have:
- A clear name and purpose
- Numbered sub-steps
- Which tools to use (read_file, run_command, search_external_sources, etc.)
- What output to produce and where to save it}
## Rules
{Non-negotiable constraints. What the skill must always do and must never do.}
name in frontmatter must be lowercase, hyphens only, alphanumeric: my-skill-namename fieldBefore writing anything:
Structure the skill as 3-6 phases:
notes/, experiments/, papers/, artifacts/search_external_sources to find..." not just "search for papers"Good: "Run the analysis script with run_command. If it fails, read the error, fix the script, and re-run. Maximum 3 retries."
Bad: "Run the analysis."
Rules prevent the skill from drifting. Include:
~/.open-research/skills/{name}/scripts/references/name field exactlyname and descriptionexperiments/analyze.py that computes descriptive statistics, run it with run_command, read the output" is useful.