一键导入
using-superscientist
Use when starting any conversation in a computational science project — establishes harness awareness and checks for existing workflow state
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when starting any conversation in a computational science project — establishes harness awareness and checks for existing workflow state
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when creating, reading, or updating workflow checkpoint files (workflow-state.json, progress.log, init.sh) — the file-centric state system for cross-session computational workflows
Use when a workflow stage subagent has prepared computation scripts and needs to submit the job to a local or HPC backend via DPDispatcher
Use when a workflow plan exists and stages need to be executed sequentially in the current session
Use when the user wants to set up a new computational experiment — before any computation begins, to design the method, stages, and success criteria
Use before marking any workflow stage as completed — verify outputs exist, are valid, and meet success criteria defined in workflow-state.json
Use when starting a new session and workflow-state.json exists in the working directory — recovers full context from checkpoint files before any new work
| name | using-superscientist |
| description | Use when starting any conversation in a computational science project — establishes harness awareness and checks for existing workflow state |
IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
Before any other work:
workflow-state.json in the working directory
superscientist:session-resume immediately| Skill | When to invoke |
|---|---|
superscientist:checkpoint-management | Creating, reading, or updating workflow-state.json, progress.log, init.sh |
superscientist:session-resume | Starting a new session when workflow-state.json exists |
superscientist:experiment-design | User wants to set up a new computational experiment |
superscientist:workflow-planning | Experiment design is approved, needs stage-by-stage plan |
superscientist:executing-workflows | Workflow plan exists and stages need execution |
superscientist:compute-backend | Subagent needs to submit a computation to local or HPC backend via DPDispatcher |
superscientist:systematic-debugging | Any workflow stage fails — simulation, analysis, plotting, environment |
superscientist:result-verification | Before marking any stage as completed |
superscientist:workflow-completion | All workflow stages are completed and verified |
experiment-design → workflow-planning → executing-workflows → workflow-completion
↓ (on failure)
systematic-debugging
↓ (retry)
executing-workflows
Cross-session recovery: session-resume at every session start when workflow exists.
Invoke relevant skills BEFORE any response or action. Even a 1% chance a skill might apply means invoke it.
| Thought | Reality |
|---|---|
| "Let me just run this calculation quickly" | Invoke experiment-design first. |
| "I'll check the results later" | Invoke result-verification now. |
| "This stage looks done" | Invoke result-verification before marking complete. |
| "I know what went wrong" | Invoke systematic-debugging — investigate before fixing. |
| "I'll remember where we left off" | workflow-state.json remembers. Invoke session-resume. |