Agent Skills
› sediman-agent/OpenSkynet
› thermos
thermos
GitHub并行启动两个热核审查子代理,分别进行安全/漏洞审计和代码质量审查。收集差异后综合结果,去重并加权冲突项,最终输出统一结论、高价值发现及不确定性说明。
Trigger Scenarios
需要同时进行安全性和代码质量的双重审查
执行分支审计或PR合并前的全面评估
Install
npx skills add sediman-agent/OpenSkynet --skill thermos -g -y
SKILL.md
Frontmatter
{
"name": "thermos",
"description": "Launch both thermo-nuclear review subagents in parallel, then synthesize their findings. Use for thermos, double thermo review, or combined bug\/security and code-quality branch audits.",
"disable-model-invocation": true
}
Thermos
Run the two thermo review passes as async background subagents in parallel, then synthesize their results.
Workflow
- Determine the review scope from the user request, PR, current branch, or relevant changed files.
- Gather the diff and any file/context excerpts needed for reviewers to evaluate the change without guessing.
- Launch both subagents in the same message with
run_in_background: true:subagent_type: "thermo-nuclear-review-subagent"for bugs, breakages, security, devex regressions, feature-flag leaks, and other branch-audit risks.subagent_type: "thermo-nuclear-code-quality-review-subagent"for maintainability, structure, file-size growth, spaghetti, abstractions, and codebase-health risks.
- Pass each subagent the same scoped diff/file context and ask it to return prioritized findings with file references and evidence.
- After both finish, synthesize the results with findings first, deduplicated across reviewers. Weight overlapping findings more heavily, resolve disagreements with your own judgment, and keep summaries brief.
If individual background summaries are already visible to the user, do not restate them wholesale. Surface the unified verdict, the highest-signal findings, and any remaining uncertainty.
Version History
- c9d8953 Current 2026-07-05 19:54


