npx claudepluginhub dylanliiii/shipyard --plugin VengineerThis skill is limited to using the following tools:
**Purpose**: Resolve all TODO comments using parallel processing.
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.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Purpose: Resolve all TODO comments using parallel processing.
First, identify the scope:
Search for TODO comments in code files using Grep with pattern: (?i)TODO|FIXME|XXX
For each TODO found:
Present a comprehensive list of all TODOs with their context:
## Found N TODOs
### TODO 1: [Brief description]
**Location:** `path/to/file.ext:line`
**Context:**
\`\`\`language
// Surrounding code context
// With the TODO highlighted
\`\`\`
### TODO 2: ...
Ask the user if they want to proceed with resolving all the TODOs:
"Found N TODOs. Do you want to proceed with resolving them? If yes, I'll use parallel processing to handle them efficiently."
Use AskUserQuestion to get confirmation before proceeding.
Create a TodoWrite list of all TODOs. Analyze dependencies:
Example mermaid diagram:
graph TD
A[TODO: Rename variable X] --> B[TODO: Update references to X]
C[TODO: Add new function] --> D[TODO: Write tests]
B --> D
For each TODO that has no outstanding dependencies, spawn a general-purpose agent in parallel using the Task tool.
Example with 3 independent TODOs:
Launching parallel resolution agents for independent TODOs...
1. Spawning agent for TODO 1
2. Spawning agent for TODO 2
3. Spawning agent for TODO 3
Each Task should use subagent_type general-purpose with a prompt that includes:
After all parallel agents complete:
TODO, FIXME, XXX