mirror of
https://github.com/cursor/plugins.git
synced 2026-09-14 20:00:00 +08:00
5080d38e4c
Thermos is a new plugin that packages thermo-nuclear branch review: - thermo-nuclear-review (skill) — deep security/correctness audit - thermo-nuclear-code-quality-review (skill) — harsh maintainability audit - thermos (skill) — orchestrator that runs both reviews in parallel with shared diff context and synthesizes findings - Two Task subagents (one per review skill) for diff-scoped audits The code-quality review previously lived in cursor-team-kit. Moved it into Thermos alongside the new deep-review rubric so the two reviewers sit together with their orchestrator. cursor-team-kit bumped to 1.2.0 with a pointer to the new plugin. Marketplace and root README updated with the new entry. Co-authored-by: Cursor <cursoragent@cursor.com>
2.0 KiB
2.0 KiB
Thermos plugin
Thermo-nuclear branch review for Cursor agents: deep correctness and security audits, harsh maintainability rubrics, and parallel subagent orchestration.
Installation
/add-plugin thermos
Architecture
flowchart TB
subgraph L2["Orchestrator"]
TH[thermos]
end
subgraph L1["Subagents"]
SNR[thermo-nuclear-review-subagent]
SNCQ[thermo-nuclear-code-quality-review-subagent]
end
DIFF[git diff + file contents]
subgraph L0["Skills"]
TNR[thermo-nuclear-review]
TNCQ[thermo-nuclear-code-quality-review]
end
TH --> SNR
TH --> SNCQ
SNR --> TNR
SNR --> DIFF
SNCQ --> TNCQ
SNCQ --> DIFF
Skills
| Skill | Description |
|---|---|
thermo-nuclear-review |
Deep branch audit (bugs, breakages, security, devex, feature-gate leaks). |
thermo-nuclear-code-quality-review |
Strict maintainability audit (code-judo, 1k-line rule, spaghetti, boundaries). |
thermos |
Run both review subagents in parallel and synthesize findings. |
Agents
| Agent | Description |
|---|---|
thermo-nuclear-review-subagent |
Task subagent for deep review rubric (diff-scoped). |
thermo-nuclear-code-quality-review-subagent |
Task subagent for code-quality rubric (diff-scoped). |
Typical usage
Double review (thermos):
- Gather
git diff main...HEADand full contents of changed files. - Invoke both subagents in one message with
run_in_background: true. - Synthesize prioritized, deduped findings.
Single skill: invoke thermo-nuclear-review or thermo-nuclear-code-quality-review in the main agent, or the matching subagent after gathering diff context.
Migration from cursor-team-kit
cursor-team-kit previously included only thermo-nuclear-code-quality-review. That skill and agent now live in Thermos alongside deep review and thermos. Remove the old thermo entries from team-kit when you install this plugin to avoid duplicates.
License
MIT