code-modernization: interactive topology map, preflight command, persona flows
modernize-map previously rendered the call graph and data lineage as
static Mermaid diagrams, which become unreadable once a node has ~10+
edges — exactly the shape of real legacy systems. It now builds an
interactive viewer from a shipped template (assets/topology-viewer.html):
a zoomable circle-pack of domains/modules sized by LOC, rendered to
canvas with level-of-detail reveal, dependency edges with per-kind
toggles, search with fly-to, a per-node detail sidebar, and a flow
walkthrough mode. Small domain-level .mmd exports remain for docs.
- topology.json now has a documented schema (hierarchy + edges + entry
points + observations + flows) consumed by the viewer
- map traces 2-4 business flows anchored to personas (claimant,
operator, auditor), each step in plain business language mapped to
the modules that implement it; the viewer plays them as numbered
paths
- brief gains a Business Walkthroughs section connecting each persona
flow to the phase that replaces it
- new modernize-preflight command: detects the stack, checks analysis
tooling, smoke-compiles a real source file with the legacy toolchain,
inventories missing copybooks/descriptors/binary-only artifacts, and
writes a per-command readiness verdict
- transform now verifies legacy + target toolchains before its plan
gate instead of failing at test time
- README: commands updated, optional-tooling section reframed as 'what
to give Claude'
2026-06-08 14:54:22 -07:00
|
|
|
|
---
|
|
|
|
|
|
description: Environment readiness check — analysis tools, build toolchain, source completeness, telemetry access
|
|
|
|
|
|
argument-hint: <system-dir> [target-stack]
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
|
|
Check whether this environment is ready to analyze — and eventually
|
|
|
|
|
|
transform — `legacy/$1`, and tell the user exactly what to fix before the
|
|
|
|
|
|
other commands run into it. Modernization sessions fail late and
|
|
|
|
|
|
confusingly when this isn't done: assessment metrics silently degrade
|
|
|
|
|
|
without analysis tools, characterization tests can't run without a build
|
|
|
|
|
|
toolchain, and dependency maps come out wrong when half the source isn't
|
|
|
|
|
|
in the tree.
|
|
|
|
|
|
|
|
|
|
|
|
Run every check even when an early one fails — the point is one complete
|
|
|
|
|
|
readiness report, not the first error.
|
|
|
|
|
|
|
|
|
|
|
|
## Check 1 — Detect the stack
|
|
|
|
|
|
|
|
|
|
|
|
Fingerprint `legacy/$1` from file extensions and manifests: languages,
|
|
|
|
|
|
build system, deployment/config descriptors. This drives which checks
|
|
|
|
|
|
below apply. Report what was detected and the rough file split.
|
|
|
|
|
|
|
|
|
|
|
|
## Check 2 — Analysis tooling
|
|
|
|
|
|
|
|
|
|
|
|
For each, check availability (`command -v`) and report version, what it's
|
|
|
|
|
|
used for, and what degrades without it:
|
|
|
|
|
|
|
|
|
|
|
|
| Tool | Used by | Without it |
|
|
|
|
|
|
|---|---|---|
|
2026-06-09 21:21:50 +00:00
|
|
|
|
| `scc` (or `cloc`) | assess | LOC/complexity fall back to `find`+`wc`; the COCOMO complexity index gets coarser |
|
code-modernization: interactive topology map, preflight command, persona flows
modernize-map previously rendered the call graph and data lineage as
static Mermaid diagrams, which become unreadable once a node has ~10+
edges — exactly the shape of real legacy systems. It now builds an
interactive viewer from a shipped template (assets/topology-viewer.html):
a zoomable circle-pack of domains/modules sized by LOC, rendered to
canvas with level-of-detail reveal, dependency edges with per-kind
toggles, search with fly-to, a per-node detail sidebar, and a flow
walkthrough mode. Small domain-level .mmd exports remain for docs.
- topology.json now has a documented schema (hierarchy + edges + entry
points + observations + flows) consumed by the viewer
- map traces 2-4 business flows anchored to personas (claimant,
operator, auditor), each step in plain business language mapped to
the modules that implement it; the viewer plays them as numbered
paths
- brief gains a Business Walkthroughs section connecting each persona
flow to the phase that replaces it
- new modernize-preflight command: detects the stack, checks analysis
tooling, smoke-compiles a real source file with the legacy toolchain,
inventories missing copybooks/descriptors/binary-only artifacts, and
writes a per-command readiness verdict
- transform now verifies legacy + target toolchains before its plan
gate instead of failing at test time
- README: commands updated, optional-tooling section reframed as 'what
to give Claude'
2026-06-08 14:54:22 -07:00
|
|
|
|
| `lizard` | assess --portfolio | complexity estimated from decision-keyword counts |
|
|
|
|
|
|
| `glow` | all | markdown artifacts render as plain text |
|
code-modernization: vendor d3, viewer robustness, status command, pipeline fixes
Viewer (assets/topology-viewer.html):
- inline a minified d3 subset (hierarchy/pack, zoom, selection,
interpolateZoom, ease; ISC license) instead of loading from a CDN —
the page is now fully self-contained and works on air-gapped networks
- handle duplicate node ids (unique-suffix; edges bind to the first
occurrence) and store parent references directly, fixing
level-of-detail and selection corruption with messy generated data
- share one reveal rule between drawing, edge culling, and hit-testing
so edges no longer draw into collapsed containers
- pre-bucket edges by kind and keep a per-node adjacency map; the
hover/selection pass no longer scans every edge each frame
- cancel in-flight fly-to animations when a new one starts; clamp
fly-to zoom to the zoom extent; derive max zoom from the smallest
leaf so deep estates stay reachable
- render dead-end candidates (new deadEnds field) with a dashed
outline and a sidebar badge
- clicking a node during a flow walkthrough exits the walkthrough;
search results clear on selection and Escape; surrogate-safe label
truncation; clearer stats line; explicit empty-topology message
Commands:
- new /modernize-status: read-only progress report — artifact inventory
with timestamps, staleness flags, secrets-hygiene checks, next step
- map: deadEnds in the topology schema; datastore names must be logical
identifiers with credentials stripped from URLs/DSNs
- brief: read topology.json + .mmd files (not the interactive HTML);
staleness check against inputs; effort unit aligned to person-months
- transform: secret-safe characterization-test prompt; diff -y fallback
when delta is missing; credential-safe diff selection
- reimagine: target vision is everything after the first argument (was
silently truncated to one word); masking rules in spec/scaffold/
handoff prompts
- brief/transform/reimagine: human-approval gates phrased as explicit
stop-and-wait instead of 'enter plan mode'
- preflight: delta in the tool table; brief added to the verdict list
- README: preflight/status in the workflow; legacy/ deny list also
covers Write; plugin + marketplace descriptions updated
2026-06-08 15:36:03 -07:00
|
|
|
|
| `delta` | transform | side-by-side diffs fall back to `diff -y` |
|
code-modernization: interactive topology map, preflight command, persona flows
modernize-map previously rendered the call graph and data lineage as
static Mermaid diagrams, which become unreadable once a node has ~10+
edges — exactly the shape of real legacy systems. It now builds an
interactive viewer from a shipped template (assets/topology-viewer.html):
a zoomable circle-pack of domains/modules sized by LOC, rendered to
canvas with level-of-detail reveal, dependency edges with per-kind
toggles, search with fly-to, a per-node detail sidebar, and a flow
walkthrough mode. Small domain-level .mmd exports remain for docs.
- topology.json now has a documented schema (hierarchy + edges + entry
points + observations + flows) consumed by the viewer
- map traces 2-4 business flows anchored to personas (claimant,
operator, auditor), each step in plain business language mapped to
the modules that implement it; the viewer plays them as numbered
paths
- brief gains a Business Walkthroughs section connecting each persona
flow to the phase that replaces it
- new modernize-preflight command: detects the stack, checks analysis
tooling, smoke-compiles a real source file with the legacy toolchain,
inventories missing copybooks/descriptors/binary-only artifacts, and
writes a per-command readiness verdict
- transform now verifies legacy + target toolchains before its plan
gate instead of failing at test time
- README: commands updated, optional-tooling section reframed as 'what
to give Claude'
2026-06-08 14:54:22 -07:00
|
|
|
|
|
|
|
|
|
|
Include the platform's install one-liner for anything missing
|
|
|
|
|
|
(`brew install scc`, `apt install cloc`, `pip install lizard`, …).
|
|
|
|
|
|
|
|
|
|
|
|
## Check 3 — Build toolchain (smoke test, not just presence)
|
|
|
|
|
|
|
|
|
|
|
|
Identify the compiler/interpreter for the detected legacy stack — e.g.
|
|
|
|
|
|
GnuCOBOL (`cobc`) for COBOL, JDK + Maven/Gradle for Java, `cc`/`make` for
|
|
|
|
|
|
C, `dotnet` for .NET. Then **prove it works on this codebase**: pick one
|
|
|
|
|
|
representative source file and run a syntax-only compile
|
|
|
|
|
|
(`cobc -fsyntax-only`, `javac`, `gcc -fsyntax-only`, …).
|
|
|
|
|
|
|
|
|
|
|
|
A failed smoke test is the most valuable output of this command — report
|
|
|
|
|
|
the actual error and diagnose it: missing copybook/include path, missing
|
|
|
|
|
|
dialect flag (`-std=ibm` etc.), fixed vs free format, missing dependency
|
|
|
|
|
|
jar. These are the errors that otherwise surface mid-`/modernize-transform`
|
|
|
|
|
|
with much less context.
|
|
|
|
|
|
|
|
|
|
|
|
If the user passed a `[target-stack]`, do the same for it: runtime,
|
|
|
|
|
|
package manager, test framework (`mvn -v`, `npm -v`, `pytest --version`, …).
|
|
|
|
|
|
|
|
|
|
|
|
## Check 4 — Source completeness
|
|
|
|
|
|
|
|
|
|
|
|
The dependency map is only as good as what's in the tree. Check for the
|
|
|
|
|
|
detected stack's equivalents of:
|
|
|
|
|
|
|
|
|
|
|
|
- **Referenced-but-missing includes** — copybooks (`COPY X` with no
|
|
|
|
|
|
`X.cpy`), headers, imports that resolve nowhere. Count and list the top
|
|
|
|
|
|
missing names.
|
|
|
|
|
|
- **Deployment/config descriptors** — JCL for batch COBOL, CICS CSD
|
|
|
|
|
|
definitions, `web.xml`/route configs, cron/scheduler definitions.
|
|
|
|
|
|
Without these, entry-point detection and the code↔storage join in
|
|
|
|
|
|
`/modernize-map` are guesswork.
|
|
|
|
|
|
- **Data definitions** — DDL, schemas, copybook record layouts, ORM
|
|
|
|
|
|
mappings.
|
|
|
|
|
|
- **Binary-only artifacts** — load modules, jars, DLLs with no matching
|
|
|
|
|
|
source. These become unmappable black boxes; flag them now.
|
|
|
|
|
|
|
|
|
|
|
|
## Check 5 — Optional context
|
|
|
|
|
|
|
|
|
|
|
|
- **Production telemetry** — is an observability/APM MCP server connected,
|
|
|
|
|
|
or are batch job logs / runtime exports available? (Enables the runtime
|
|
|
|
|
|
overlay in `/modernize-assess` Step 4 and timing annotations in
|
|
|
|
|
|
`/modernize-map`.)
|
|
|
|
|
|
- **Version control history** — is `legacy/$1` under git with meaningful
|
|
|
|
|
|
history? (Change-frequency data sharpens risk ranking.)
|
|
|
|
|
|
|
|
|
|
|
|
## Report
|
|
|
|
|
|
|
|
|
|
|
|
Write `analysis/$1/PREFLIGHT.md`: a status table — one row per check,
|
|
|
|
|
|
status ✅ / ⚠️ / ❌, what was found, and the fix for anything not green —
|
|
|
|
|
|
followed by a **Ready / Ready-with-gaps / Not ready** verdict per command:
|
|
|
|
|
|
|
|
|
|
|
|
- `assess` + `map` + `extract-rules` — need Checks 1–2 green-ish and
|
|
|
|
|
|
Check 4's missing-include count low
|
code-modernization: vendor d3, viewer robustness, status command, pipeline fixes
Viewer (assets/topology-viewer.html):
- inline a minified d3 subset (hierarchy/pack, zoom, selection,
interpolateZoom, ease; ISC license) instead of loading from a CDN —
the page is now fully self-contained and works on air-gapped networks
- handle duplicate node ids (unique-suffix; edges bind to the first
occurrence) and store parent references directly, fixing
level-of-detail and selection corruption with messy generated data
- share one reveal rule between drawing, edge culling, and hit-testing
so edges no longer draw into collapsed containers
- pre-bucket edges by kind and keep a per-node adjacency map; the
hover/selection pass no longer scans every edge each frame
- cancel in-flight fly-to animations when a new one starts; clamp
fly-to zoom to the zoom extent; derive max zoom from the smallest
leaf so deep estates stay reachable
- render dead-end candidates (new deadEnds field) with a dashed
outline and a sidebar badge
- clicking a node during a flow walkthrough exits the walkthrough;
search results clear on selection and Escape; surrogate-safe label
truncation; clearer stats line; explicit empty-topology message
Commands:
- new /modernize-status: read-only progress report — artifact inventory
with timestamps, staleness flags, secrets-hygiene checks, next step
- map: deadEnds in the topology schema; datastore names must be logical
identifiers with credentials stripped from URLs/DSNs
- brief: read topology.json + .mmd files (not the interactive HTML);
staleness check against inputs; effort unit aligned to person-months
- transform: secret-safe characterization-test prompt; diff -y fallback
when delta is missing; credential-safe diff selection
- reimagine: target vision is everything after the first argument (was
silently truncated to one word); masking rules in spec/scaffold/
handoff prompts
- brief/transform/reimagine: human-approval gates phrased as explicit
stop-and-wait instead of 'enter plan mode'
- preflight: delta in the tool table; brief added to the verdict list
- README: preflight/status in the workflow; legacy/ deny list also
covers Write; plugin + marketplace descriptions updated
2026-06-08 15:36:03 -07:00
|
|
|
|
- `brief` — needs only the three discovery artifacts; no tooling
|
2026-06-08 17:35:40 -07:00
|
|
|
|
- `transform` + `reimagine` — additionally need Check 3 green for the
|
|
|
|
|
|
**target** stack. A red legacy toolchain downgrades these to
|
|
|
|
|
|
Ready-with-gaps, not Not-ready: equivalence testing falls back to
|
|
|
|
|
|
recorded traces / golden-master fixtures instead of dual execution
|
|
|
|
|
|
(common and expected for CICS/IMS code that has no local runtime)
|
code-modernization: interactive topology map, preflight command, persona flows
modernize-map previously rendered the call graph and data lineage as
static Mermaid diagrams, which become unreadable once a node has ~10+
edges — exactly the shape of real legacy systems. It now builds an
interactive viewer from a shipped template (assets/topology-viewer.html):
a zoomable circle-pack of domains/modules sized by LOC, rendered to
canvas with level-of-detail reveal, dependency edges with per-kind
toggles, search with fly-to, a per-node detail sidebar, and a flow
walkthrough mode. Small domain-level .mmd exports remain for docs.
- topology.json now has a documented schema (hierarchy + edges + entry
points + observations + flows) consumed by the viewer
- map traces 2-4 business flows anchored to personas (claimant,
operator, auditor), each step in plain business language mapped to
the modules that implement it; the viewer plays them as numbered
paths
- brief gains a Business Walkthroughs section connecting each persona
flow to the phase that replaces it
- new modernize-preflight command: detects the stack, checks analysis
tooling, smoke-compiles a real source file with the legacy toolchain,
inventories missing copybooks/descriptors/binary-only artifacts, and
writes a per-command readiness verdict
- transform now verifies legacy + target toolchains before its plan
gate instead of failing at test time
- README: commands updated, optional-tooling section reframed as 'what
to give Claude'
2026-06-08 14:54:22 -07:00
|
|
|
|
- `harden` — needs Check 2 plus any stack-specific SAST tooling found
|
code-modernization: add /modernize-uplift for same-stack version migrations
Adds a third build method alongside transform (cross-stack rewrite) and
reimagine (greenfield): uplift, for same-stack version bumps (.NET Framework
4.8 -> .NET 8, Spring Boot 2->3, Python 2->3) where the right move is to
PRESERVE the code and fix only the version deltas, not extract intent and
rewrite.
- commands/modernize-uplift.md: delta-catalog-driven, dual-target test harness
(one suite on both runtimes; baseline-on-old is the oracle), leaf-first build
graph ordering, minimal-diff discipline (architecture-critic flags gratuitous
divergence), and a 'this is a rewrite, use transform' escape hatch.
- agents/version-delta-analyst.md: finds the source->target breaking changes
that THIS code hits; drives the ecosystem migration tool (upgrade-assistant /
OpenRewrite / pyupgrade / ng update) and owns the residue; read-only.
- workflows/uplift-deltas.js: parallel finder per delta category, each verified
against the cited code so deltas that don't apply here are dropped.
- Wired into assess (recommended-pattern routing), brief (per-phase command +
leaf-first ordering), preflight (dual-run + tool readiness), status, README.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-09 23:12:16 +00:00
|
|
|
|
- `uplift` (same-stack version bump) — needs Check 3 green for the **target**
|
|
|
|
|
|
version. Two uplift-specific signals to report when a `[target-stack]` that
|
|
|
|
|
|
looks like a version bump was passed: (a) is the **source** runtime also
|
|
|
|
|
|
available here? Both present = a true dual-run is possible; target-only =
|
|
|
|
|
|
equivalence degrades to characterization tests against recorded outputs (say
|
|
|
|
|
|
which). (b) Is the stack's **migration tool** installed (`dotnet tool list`
|
|
|
|
|
|
for `upgrade-assistant`, `apiport`, OpenRewrite, `pyupgrade`, `ng`)? Missing
|
|
|
|
|
|
is Ready-with-gaps, not Not-ready — the delta catalog is then fully
|
|
|
|
|
|
Claude-derived and loses the tool's coverage; note that.
|
code-modernization: interactive topology map, preflight command, persona flows
modernize-map previously rendered the call graph and data lineage as
static Mermaid diagrams, which become unreadable once a node has ~10+
edges — exactly the shape of real legacy systems. It now builds an
interactive viewer from a shipped template (assets/topology-viewer.html):
a zoomable circle-pack of domains/modules sized by LOC, rendered to
canvas with level-of-detail reveal, dependency edges with per-kind
toggles, search with fly-to, a per-node detail sidebar, and a flow
walkthrough mode. Small domain-level .mmd exports remain for docs.
- topology.json now has a documented schema (hierarchy + edges + entry
points + observations + flows) consumed by the viewer
- map traces 2-4 business flows anchored to personas (claimant,
operator, auditor), each step in plain business language mapped to
the modules that implement it; the viewer plays them as numbered
paths
- brief gains a Business Walkthroughs section connecting each persona
flow to the phase that replaces it
- new modernize-preflight command: detects the stack, checks analysis
tooling, smoke-compiles a real source file with the legacy toolchain,
inventories missing copybooks/descriptors/binary-only artifacts, and
writes a per-command readiness verdict
- transform now verifies legacy + target toolchains before its plan
gate instead of failing at test time
- README: commands updated, optional-tooling section reframed as 'what
to give Claude'
2026-06-08 14:54:22 -07:00
|
|
|
|
|
|
|
|
|
|
Print the table in the session too, and end with the single most
|
|
|
|
|
|
important fix if anything is red.
|