Claude-code-skills ln-830-code-modernization-coordinator
Modernizes codebase via OSS replacement and bundle optimization. Use when acting on audit findings to reduce custom code.
git clone https://github.com/levnikolaevich/claude-code-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/levnikolaevich/claude-code-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills-catalog/ln-830-code-modernization-coordinator" ~/.claude/skills/levnikolaevich-claude-code-skills-ln-830-code-modernization-coordinator && rm -rf "$T"
skills-catalog/ln-830-code-modernization-coordinator/SKILL.mdPaths: File paths (
,shared/,references/) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. If../ln-*is missing, fetch files via WebFetch fromshared/.https://raw.githubusercontent.com/levnikolaevich/claude-code-skills/master/skills/{path}
ln-830-code-modernization-coordinator
Type: L2 Domain Coordinator Category: 8XX Optimization
Runtime-backed coordinator for code modernization. Delegates OSS replacement and bundle-size work to isolated child runs, records machine-readable worker summaries, and emits a final coordinator summary.
Overview
| Aspect | Details |
|---|---|
| Input | Audit report, target module, or modernization scope |
| Output | Aggregated modernization report with durable worker artifacts |
| Workers | ln-831 (OSS replacer), ln-832 (bundle optimizer) |
| Runtime | |
Workflow
Phases: Pre-flight -> Analyze Input -> Delegate Workers -> Collect Results -> Verify Summary -> Report
Runtime Contract
MANDATORY READ: Load
shared/references/ci_tool_detection.md
MANDATORY READ: Load shared/references/coordinator_runtime_contract.md, shared/references/modernization_runtime_contract.md, shared/references/coordinator_summary_contract.md
Runtime CLI:
node shared/scripts/modernization-runtime/cli.mjs start --identifier repo-modernization --manifest-file <file> node shared/scripts/modernization-runtime/cli.mjs status --identifier repo-modernization node shared/scripts/modernization-runtime/cli.mjs checkpoint --phase PHASE_2_DELEGATE_WORKERS --payload '{...}' node shared/scripts/modernization-runtime/cli.mjs record-worker-result --payload '{...}' node shared/scripts/modernization-runtime/cli.mjs record-summary --payload '{...}' node shared/scripts/modernization-runtime/cli.mjs advance --to PHASE_3_COLLECT_RESULTS node shared/scripts/modernization-runtime/cli.mjs complete
Required state fields:
worker_planworker_resultschild_runsverification_passedreport_readysummary_recorded
Domain checkpoints:
: target modules, worker selection, stack detectionPHASE_1_ANALYZE_INPUT
: onePHASE_2_DELEGATE_WORKERS
per delegated worker with worker name,child_run
, andrunIdsummaryArtifactPath
: recorded worker summaries and unresolved failuresPHASE_3_COLLECT_RESULTS
: final report path, verification verdict, summary readinessPHASE_4_VERIFY_SUMMARY
Guard rules:
- do not advance from
until every planned worker emitted a validPHASE_2_DELEGATE_WORKERS
summarymodernization-worker - do not complete until the final report checkpoint exists and the
summary was recordedmodernization-coordinator - consume worker JSON summaries only; never infer worker status from prose output
Phase 0: Pre-flight
Confirm the modernization request has a valid scope and a deterministic runtime target.
| Check | Required | Action if Missing |
|---|---|---|
| Audit report or target module | Yes | Block modernization |
| Project path | Yes | Block modernization |
| Verification command available | Yes | Block if workers cannot verify changes |
| Existing active run for identifier | No | Pause if conflicting run exists |
Phase 1: Analyze Input
Select workers based on project type and findings.
Worker selection:
| Condition | ln-831 | ln-832 |
|---|---|---|
| Audit findings include OSS candidates | Yes | No |
JS/TS project with | No | Yes |
| Both conditions true | Yes | Yes |
| Explicit target module only | Yes | Optional if bundle impact exists |
Stack detection:
| Indicator | Stack | ln-832 Eligible |
|---|---|---|
+ JS/TS files | JS/TS | Yes |
| .NET | No |
or | Python | No |
| Go | No |
Checkpoint payload must include:
input_sourceworker_planstack_detectionskipped_reasons
Phase 2: Delegate Workers
Delegate one child run per selected worker. Child runs are deterministic and artifact-driven.
Delegate using the concrete worker identities selected by the routing rules below. Do not synthesize family placeholders or guessed skill IDs in prompts.
Delegation context:
| Field | Type | Description |
|---|---|---|
| string | Absolute path to the target project |
| string | Path to audit output when applicable |
| string | Optional focused module path |
| string | Stable worker identifier |
| string | Deterministic child run id |
| string | Exact JSON path for the worker summary |
| object | Verification flags and worker-specific settings |
Delegation rules:
- launch
beforeln-831
when both are selectedln-832
consumes the project state produced by accepted modernization changes, not a guessed baselineln-832- checkpoint every child run before waiting on its result
- record every emitted worker summary with
record-worker-result
Phase 3: Collect Results
Aggregate validated worker summaries only.
Worker summary fields consumed by the coordinator:
| Field | Description |
|---|---|
| worker identity ( or ) |
| must be |
| stable worker identifier |
| completed, partial, or failed |
| kept changes |
| discarded experiments |
| build/test verification result |
| worker-owned durable report path |
| non-blocking issues |
Collection output:
worker_resultssuccess_countpartial_countfailed_countwarnings
Phase 4: Verify Summary
Prepare the final modernization report and verify the coordinator can finish deterministically.
Verification checklist:
- every planned worker produced one valid summary envelope
- aggregate counts match recorded worker results
- final report path exists or is ready to be written
andreport_ready
are true before completionverification_passed
Failure handling:
- Keep successful worker results intact.
- Mark failed workers explicitly in the coordinator report.
- Do not invent rollback actions beyond what workers already verified.
Phase 5: Report
Coordinator report schema:
| Field | Description |
|---|---|
| audit report or target module |
| delegated workers |
| OSS replacements applied |
| custom code removed |
| final bundle reduction summary |
| aggregate verification verdict |
| machine-readable worker result summaries |
| cross-worker warnings |
Completion sequence:
- Write the durable report.
- Checkpoint the report path and verification verdict.
- Record the
summary envelope withmodernization-coordinator
.record-summary - Complete runtime only after the report checkpoint and coordinator summary exist.
Configuration
Options: audit_report: "docs/project/codebase_audit.md" target_module: "" enable_oss_replacer: true enable_bundle_optimizer: true run_tests: true run_build: true
Error Handling
Recoverable:
| Error | Recovery |
|---|---|
| ln-831 partial result | Continue with ln-832 if still applicable |
| ln-832 failure | Preserve ln-831 result and report partial modernization |
| Build failure in one worker | Keep failure in coordinator report, continue collection |
Fatal:
| Error | Action |
|---|---|
| No workers activated | Finish with empty-result report |
| Runtime validation failure | Pause run and require intervention |
| Missing worker summary for planned child run | Do not advance from collection |
References
../ln-831-oss-replacer/SKILL.md../ln-832-bundle-optimizer/SKILL.md../ln-645-open-source-replacer/SKILL.mdshared/references/ci_tool_detection.md
TodoWrite format (mandatory):
- Analyze modernization input (in_progress) - Delegate ln-831-oss-replacer child run (pending) - Delegate ln-832-bundle-optimizer child run (pending) - Aggregate modernization-worker summaries (pending)
Worker Invocation (MANDATORY)
| Phase | Worker | Context |
|---|---|---|
| 2 | ln-831-oss-replacer | Isolated child run with and exact |
| 2 | ln-832-bundle-optimizer | Isolated child run with and exact |
All workers: start the child runtime, checkpoint the
child_run metadata, then invoke the worker skill explicitly and consume the emitted modernization-worker summary envelope via record-worker-result.
# Sequential per selected worker (ln-831 before ln-832 when both selected): node shared/scripts/modernization-runtime/cli.mjs start --skill {worker} --identifier {identifier} --manifest-file {workerManifestPath} --run-id {childRunId} --summary-artifact-path {childSummaryArtifactPath} node shared/scripts/optimization-runtime/cli.mjs checkpoint --phase PHASE_2_DELEGATE --payload '{"child_run":{"worker":"{worker}","run_id":"{childRunId}","summary_artifact_path":"{childSummaryArtifactPath}"}}' Skill(skill: "{worker}", args: "{identifier} --run-id {childRunId} --summary-artifact-path {childSummaryArtifactPath}") Read {childSummaryArtifactPath} node shared/scripts/optimization-runtime/cli.mjs record-worker-result --payload-file {childSummaryArtifactPath}
Worker token substitution:
{worker} is ln-831-oss-replacer or ln-832-bundle-optimizer.
Definition of Done
- Runtime started with a validated manifest and stable identifier
- Modernization scope analyzed and workers selected from real input
- One child run delegated per selected worker
- Every child run emitted a valid
summarymodernization-worker - Coordinator report aggregates replacements, bundle changes, warnings, and verification results
- Final
summary recorded before completionmodernization-coordinator
Phase 6: Meta-Analysis
MANDATORY READ: Load
shared/references/meta_analysis_protocol.md
Skill type:
optimization-coordinator. Run after all phases complete. Output to chat using the optimization-coordinator format.
Version: 1.0.0 Last Updated: 2026-03-08