with one click
ln-830-code-modernization-coordinator
// Modernizes codebase via OSS replacement and bundle optimization. Use when acting on audit findings to reduce custom code.
// Modernizes codebase via OSS replacement and bundle optimization. Use when acting on audit findings to reduce custom code.
[HINT] Download the complete skill directory including SKILL.md and all related files
| name | ln-830-code-modernization-coordinator |
| description | Modernizes codebase via OSS replacement and bundle optimization. Use when acting on audit findings to reduce custom code. |
| disable-model-invocation | true |
| license | MIT |
Paths: File paths (
references/,../ln-*) are relative to this skill directory.
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.
| 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 | .hex-skills/modernization/runtime/runs/{run_id}/ |
Phases: Pre-flight -> Analyze Input -> Delegate Workers -> Collect Results -> Verify Summary -> Report
MANDATORY READ: Load references/ci_tool_detection.md
MANDATORY READ: Load references/coordinator_runtime_contract.md, references/modernization_runtime_contract.md, references/coordinator_summary_contract.md
Runtime CLI:
node references/scripts/modernization-runtime/cli.mjs start --identifier repo-modernization --manifest-file <file>
node references/scripts/modernization-runtime/cli.mjs status --identifier repo-modernization
node references/scripts/modernization-runtime/cli.mjs checkpoint --phase PHASE_2_DELEGATE_WORKERS --payload '{...}'
node references/scripts/modernization-runtime/cli.mjs record-worker-result --payload '{...}'
node references/scripts/modernization-runtime/cli.mjs record-summary --payload '{...}'
node references/scripts/modernization-runtime/cli.mjs advance --to PHASE_3_COLLECT_RESULTS
node references/scripts/modernization-runtime/cli.mjs complete
Required state fields:
worker_planworker_resultschild_runsverification_passedreport_readysummary_recordedDomain checkpoints:
PHASE_1_ANALYZE_INPUT: target modules, worker selection, stack detectionPHASE_2_DELEGATE_WORKERS: one child_run per delegated worker with worker name, runId, and summaryArtifactPathPHASE_3_COLLECT_RESULTS: recorded worker summaries and unresolved failuresPHASE_4_VERIFY_SUMMARY: final report path, verification verdict, summary readinessGuard rules:
PHASE_2_DELEGATE_WORKERS until every planned worker emitted a valid modernization-worker summarymodernization-coordinator summary was recordedConfirm 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 |
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 package.json | No | Yes |
| Both conditions true | Yes | Yes |
| Explicit target module only | Yes | Optional if bundle impact exists |
Stack detection:
| Indicator | Stack | ln-832 Eligible |
|---|---|---|
package.json + JS/TS files | JS/TS | Yes |
*.csproj | .NET | No |
requirements.txt or pyproject.toml | Python | No |
go.mod | Go | No |
Checkpoint payload must include:
input_sourceworker_planstack_detectionskipped_reasonsDelegate 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 |
|---|---|---|
projectPath | string | Absolute path to the target project |
auditReport | string | Path to audit output when applicable |
targetModule | string | Optional focused module path |
identifier | string | Stable worker identifier |
runId | string | Deterministic child run id |
summaryArtifactPath | string | Exact JSON path for the worker summary |
options | object | Verification flags and worker-specific settings |
Delegation rules:
ln-831 before ln-832 when both are selectedln-832 consumes the project state produced by accepted modernization changes, not a guessed baselinerecord-worker-resultAggregate validated worker summaries only.
Worker summary fields consumed by the coordinator:
| Field | Description |
|---|---|
producer_skill | worker identity (ln-831 or ln-832) |
summary_kind | must be modernization-worker |
identifier | stable worker identifier |
payload.status | completed, partial, or failed |
payload.changes_applied | kept changes |
payload.changes_discarded | discarded experiments |
payload.verification | build/test verification result |
payload.artifact_path | worker-owned durable report path |
payload.warnings | non-blocking issues |
Collection output:
worker_resultssuccess_countpartial_countfailed_countwarningsPrepare the final modernization report and verify the coordinator can finish deterministically.
Verification checklist:
report_ready and verification_passed are true before completionFailure handling:
Coordinator report schema:
| Field | Description |
|---|---|
input_source | audit report or target module |
workers_activated | delegated workers |
modules_replaced | OSS replacements applied |
loc_removed | custom code removed |
bundle_reduction | final bundle reduction summary |
verification_passed | aggregate verification verdict |
per_worker[] | machine-readable worker result summaries |
warnings[] | cross-worker warnings |
Completion sequence:
modernization-coordinator summary envelope with record-summary.Options:
audit_report: "docs/project/codebase_audit.md"
target_module: ""
enable_oss_replacer: true
enable_bundle_optimizer: true
run_tests: true
run_build: true
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 |
../ln-831-oss-replacer/SKILL.md../ln-832-bundle-optimizer/SKILL.md../ln-645-open-source-replacer/SKILL.mdreferences/ci_tool_detection.mdTodoWrite 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)
Host Skill Invocation: Skill(skill: "...", args: "...") is mandatory delegation.
SKILL.md, treat args as $ARGUMENTS, execute that skill workflow, then return here with its result/artifact.| Phase | Worker | Context |
|---|---|---|
| 2 | ln-831-oss-replacer | Isolated child run with runId and exact summaryArtifactPath |
| 2 | ln-832-bundle-optimizer | Isolated child run with runId and exact summaryArtifactPath |
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 references/scripts/modernization-runtime/cli.mjs start --skill {worker} --identifier {identifier} --manifest-file {workerManifestPath} --run-id {childRunId} --summary-artifact-path {childSummaryArtifactPath}
node references/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 references/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.
modernization-worker summarymodernization-coordinator summary recorded before completionOptional reference: load references/meta_analysis_protocol.md only when the user asks for post-run meta-analysis or protocol-formatted run reflection.
Skill type: optimization-coordinator. When requested, run after all phases complete. Output to chat using the optimization-coordinator format.
Version: 1.0.0 Last Updated: 2026-03-08