Skip to content

Latest commit

 

History

History
97 lines (58 loc) · 3.7 KB

File metadata and controls

97 lines (58 loc) · 3.7 KB

Changelog

[one-shot] 0.4.8

Holistic reviewer overhaul and context management improvements.

New:

  • holistic-review skill that routes to codex:rescue for dueling-model review when available, falling back to a direct subagent
  • Multi-persona holistic reviewer: panel of staff engineers (systems, distributed systems, security, infra ops, product) that discuss findings from different perspectives
  • Tests-first review methodology: reviewer reads tests before implementation code to assess coverage and falsify assumptions
  • Mandatory context compaction after each step's code review — prunes context no longer needed for remaining work

Changed:

  • Implementation steps are now ordered for optimal context management (foundational pieces first, independent work early)
  • Holistic reviewer now reviews across seven dimensions (added test coverage) instead of six
  • Removed redundant final review from execute-one-shot skill — holistic review is now handled by the holistic-review skill invoked from the command
  • PR description quality is now explicitly enforced with troubleshooting guidance for common errors

[autoresearch] 0.3.1

Fixed:

  • Formatting cleanup in autoresearch-create skill (whitespace, JSON readability)

[blank-slate-review] 0.1.1

Fixed:

  • Minor post-release fixes

[quick-plan] 0.1.1

Fixed:

  • Minor post-release fixes

[one-shot] 0.4.0

Use codex for holistic reviewer

New:

  • Uses the /codex:rescue command along with the holistic-reviewer agent to get a true clean room review via dueling models

[blank-slate-review] 0.1.0

Initial release of the blank-slate-review plugin.

New:

  • /blank-slate-review:start command -- validates optional scope and launches the review pipeline
  • execute-review skill -- orchestrates scout, file sampling, fan-out decision, and reviewer dispatch
  • codebase-reviewer agent -- Opus-powered multi-persona panel with seven analysis dimensions, four severity levels, and holistic remediation synthesis

[quick-plan] 0.1.0

Initial release of the quick-plan plugin.

New:

  • /quick-plan:start command -- creates a branch, picks a plan file location, and launches the planning skill
  • devise-a-plan skill -- structured 9-step planning process with specialist subagent dispatch
  • systems-performance agent -- evaluates approaches for hot path efficiency, allocation pressure, and resource usage
  • distributed-systems agent -- investigates codebase structure and evaluates cross-boundary interactions
  • security-engineer agent -- evaluates threat surface changes, trust boundaries, and escalation paths
  • infra-operations agent -- evaluates deployment impact, rollback safety, and observability gaps
  • product-lead agent -- evaluates strategic fit, scope, and future flexibility

[autoresearch] 0.2.0

New:

  • /autoresearch command - start or resume experiment sessions with optional duration limit (/autoresearch 60 for a 60-minute session)
  • maxDurationMinutes config field - wall clock time limit for sessions, useful as a plan quota budget proxy
  • Graceful shutdown procedure - clean state commit and summary when time/iteration limits are reached
  • plugin.json for proper plugin registration

Changed:

  • Loop rules now check stop conditions (time, iterations) before each experiment
  • "What's Been Tried" section in autoresearch.md gets updated on shutdown

[tooling] 0.2.0

New:

  • howto-qmd skill - local semantic search for markdown knowledge bases with keyword, vector, and hybrid search modes

[tooling] 0.1.0

Initial release of the tooling plugin.

New:

  • howto-ast-grep skill - structural code search and rewriting with ast-grep CLI patterns, metavariable syntax, and language-specific examples