This release adds 3 notable features for engineering teams evaluating rollout.
✓ No known CVEs patched in this version
Topics
+2 more
Summary
AI summaryUpdates v2.25.0 — 2026-05-28, Minimal Loading Discipline, and Workflow Hand-off Rules across a mixed release.
Changes in this release
| Type | Severity | Summary | CVE |
|---|---|---|---|
| Feature | Low |
Added Triage Gate section to CLAUDE.md request classifier for depth‑based pipeline selection. Added Triage Gate section to CLAUDE.md request classifier for depth‑based pipeline selection. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added Escalation guard to stop and reclassify if scope grows during workflow execution. Added Escalation guard to stop and reclassify if scope grows during workflow execution. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added Reproduction Requirement gate in agents/coordinator.md before bug‑fix implementation. Added Reproduction Requirement gate in agents/coordinator.md before bug‑fix implementation. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added Baseline Establishment step in agents/coordinator.md to run full validation set before refactoring. Added Baseline Establishment step in agents/coordinator.md to run full validation set before refactoring. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added Structured Findings Format with severity tiers and mandatory Summary block to skills/great_cto/SKILL.md. Added Structured Findings Format with severity tiers and mandatory Summary block to skills/great_cto/SKILL.md. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added explicit hand‑off transition table to agents/coordinator.md prohibiting silent workflow class switches. Added explicit hand‑off transition table to agents/coordinator.md prohibiting silent workflow class switches. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added shared/safety-rules.md with five safety rule variants matched to workflow classes. Added shared/safety-rules.md with five safety rule variants matched to workflow classes. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added per‑class loading rules in skills/great_cto/memory-index.md to load only needed knowledge. Added per‑class loading rules in skills/great_cto/memory-index.md to load only needed knowledge. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added agents/coordinator.md multi‑agent orchestrator with DECOMPOSE→CLASSIFY→DISPATCH→MONITOR→SYNTHESIZE→VERIFY lifecycle. Added agents/coordinator.md multi‑agent orchestrator with DECOMPOSE→CLASSIFY→DISPATCH→MONITOR→SYNTHESIZE→VERIFY lifecycle. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added commands/skillify.md interactive 6‑question interview to capture repeating patterns as SKILL.md files. Added commands/skillify.md interactive 6‑question interview to capture repeating patterns as SKILL.md files. Source: llm_adapter@2026-05-28 Confidence: high |
— |
| Feature | Low |
Added skills/great_cto/memory-index.md template with 200‑line cross‑session knowledge index and three‑level compression protocol. Added skills/great_cto/memory-index.md template with 200‑line cross‑session knowledge index and three‑level compression protocol. Source: granite4.1:30b@2026-05-28-audit Confidence: low |
— |
| Feature | Low |
Updated dispatch semantics in skills/great_cto/SKILL.md to clarify Fork vs Spawn, Never Delegate Understanding, and concurrency safety. Updated dispatch semantics in skills/great_cto/SKILL.md to clarify Fork vs Spawn, Never Delegate Understanding, and concurrency safety. Source: granite4.1:30b@2026-05-28-audit Confidence: low |
— |
| Feature | Low |
Updated context compression protocol in commands/save.md to include micro‑compact format, phase summary, and checkpoint levels. Updated context compression protocol in commands/save.md to include micro‑compact format, phase summary, and checkpoint levels. Source: granite4.1:30b@2026-05-28-audit Confidence: low |
— |
| Feature | Low |
Updated validation hierarchy reference in commands/doctor.md to a 7‑layer priority from Security down to SEO. Updated validation hierarchy reference in commands/doctor.md to a 7‑layer priority from Security down to SEO. Source: granite4.1:30b@2026-05-28-audit Confidence: low |
— |
| Feature | Low |
Added 'effort: low | medium | high' frontmatter field to all 13 SKILL.md files for effort estimation. Added 'effort: low | medium | high' frontmatter field to all 13 SKILL.md files for effort estimation. Source: granite4.1:30b@2026-05-28-audit Confidence: low |
— |
Full changelog
v2.25.0 — 2026-05-28
agent-workflows patterns: triage gate, structured findings, hand-off rules
Inspired by franklioxygen/agent-workflows.
Triage Gate — depth-based pipeline selection
- Added Triage Gate section to
CLAUDE.mdrequest classifier — classifies SIMPLE CODE (Tiny/Small/Medium) and COMPLEX CODE (Small/Medium/Large) before pipeline runs - Added Escalation guard: if scope grows during work → stop and reclassify; do not continue with under-powered process
Reproduction Requirement — bug-fix gate
- Added Reproduction Requirement to
agents/coordinator.md— before any implementation agent edits code for a bug fix, must establish: failing automated test, failing repro command, or explicit infeasibility note. "It would take effort" is NOT infeasible. - Blocks implementation packet until repro packet completes
Baseline Establishment — refactoring gate
- Added Baseline Establishment to
agents/coordinator.md— run full validation set (tests + lint + build) before refactoring edits; record pass/fail. Separates new regressions from pre-existing failures.
Structured Findings Format — review output standard
- Added Structured Findings Format to
skills/great_cto/SKILL.md— Critical/Major/Minor/Nit severity tiers with Location/Problem/Why it matters/Recommended fix/Status fields - Added mandatory Summary block (APPROVED/BLOCKED verdict) to all review output
- Critical + Major findings block merge and gate:ship
Workflow Hand-off Rules
- Added explicit hand-off transition table to
agents/coordinator.md— INCIDENT→BUG-FIX, BUG-FIX→Feature, SIMPLE→COMPLEX, Cleanup→Refactoring, etc. - Silent workflow class switches are explicitly prohibited; always notify CTO with reason
Per-workflow Safety Rules
- Added
shared/safety-rules.md— five safety rule variants: Standard Coding, Review-Only, Behavior-Preserving, Cleanup, Incident Response - Each rule matched to the workflow class that should use it
Scope Escalation Guards
- Added scope escalation guard to coordinator anti-patterns: "scope creep is low risk" → stop + reclassify
Minimal Loading Discipline
- Added per-class loading rules to
skills/great_cto/memory-index.md— load only what the active workflow needs; per-class breakdown (QUESTION, SIMPLE CODE Tiny, INCIDENT)
ag-kit patterns: coordinator, skillify, memory index (v2.24.1 content shipped in v2.25.0)
-
Added
agents/coordinator.md— multi-agent orchestrator with DECOMPOSE→CLASSIFY→DISPATCH→MONITOR→SYNTHESIZE→VERIFY lifecycle, Work Packet List format, Fork vs Spawn semantics -
Added
commands/skillify.md— interactive 6-question interview to capture repeating patterns as SKILL.md files -
Added
skills/great_cto/memory-index.md— 200-line cross-session knowledge index template with 3-level compression protocol -
Added Request classifier section to
CLAUDE.md— 8-class routing (QUESTION/SURVEY/SIMPLE CODE/COMPLEX CODE/DESIGN/SLASH CMD/INCIDENT/COORDINATE) -
Updated dispatch semantics in
skills/great_cto/SKILL.md— Fork vs Spawn, Never Delegate Understanding, concurrency safety -
Updated context compression protocol in
commands/save.md— micro-compact, phase summary, checkpoint levels -
Updated validation hierarchy reference in
commands/doctor.md— 7-layer priority (Security → Schema → Tests → Lint → Performance → UX/A11y → SEO) -
Updated all 13 SKILL.md files — added
effort: low | medium | highfrontmatter field -
Add one bullet per shipped feature.
-
Cite ADRs introduced (if any).
-
Mention test counts and opt-out flags.
Weekly OSS security release digest.
The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.
No spam, unsubscribe anytime.
Share this release
About great_cto
Engineering-management layer of 34 specialist AI agents covering the full SDLC (architect, PM, senior-dev, reviewer, QA, security, devops, L3-support + 18 archetype-specific reviewers) with auto-detected archetypes and compliance gates (PCI-DSS, HIPAA, FedRAMP, GDPR, EU AI Act). Runs in Claude Code, Cursor, Codex CLI, Aider, and Continue via AGENTS.md + MCP. MIT.
Related context
Related tools
Earlier breaking changes
- v2.32.0 Removed AgentShield scanner and its CLI commands.
Beta — feedback welcome: [email protected]