npx claudepluginhub kiringyj/claude-workbench --plugin coreThis skill uses the workspace's default tool permissions.
Review the project's `TODO.md` and update it to reflect the current state of the codebase. If no `TODO.md` exists, create one from scratch based on known planned work.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Reviews prose for communication issues impeding comprehension, outputs minimal fixes in a three-column table per Microsoft Writing Style Guide. Useful for 'review prose' or 'improve prose' requests.
Review the project's TODO.md and update it to reflect the current state of the codebase. If no TODO.md exists, create one from scratch based on known planned work.
The TODO.md file follows a strict two-layer format:
# TODO
> **Done** = implementation merged, **Verified** = manually tested / snapshot-covered.
## Record Format
Each category section contains:
1. **Summary table** with three columns:
- **Done** (`[x]`/`[ ]`) — implementation merged into codebase
- **Verified** (`[x]`/`[ ]`) — manually tested or snapshot-covered
- **Item** — short task description
2. **Detail subsection** (`### Item Name`) per task, containing:
- **File(s):** relevant source path(s)
- Bullet list: CLI interface, behavior, key implementation notes
A single markdown table listing all items with their status:
| Done | Verified | Item |
|:----:|:--------:|------|
| [x] | [x] | Feature A |
| [x] | [ ] | Feature B |
| [ ] | [ ] | Feature C |
Done [x] have their implementation merged into the codebase.Verified [x] have been manually tested or have snapshot/test coverage.--- horizontal rule from the detail subsections.One ### Item Name subsection per table row, containing:
**File:** for one, **Files:** for many)TODO.md at the project root. If it does not exist, note that a new one will be created.[ ] to [x] for Done when implementation is merged; flip [ ] to [x] for Verified when tests or manual verification exist.File(s): paths are accurate and descriptions match current implementation.TODO.md.git add TODO.md.