| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Agentic software modernization with program analysis, dependency intelligence, migration planning, context-grounded code conversion, syntax-aware validation, bounded repair, and release gates.
LegacyLens analyzes a legacy repository, builds a structured representation of its codebase, creates a migration plan, performs context-grounded code transformation, validates generated source, and evaluates the resulting target project with deterministic engineering checks.
The conversion path is deliberately hybrid: deterministic repository analysis and validation remain outside the model, while the LLM is used for semantic translation and bounded repair where explicit transformation rules are insufficient.
LegacyLens is intentionally presented as a developer migration workbench, not a generic dashboard:
The task lifecycle is explicitly bound to its backend task ID so workflow progress events can update the task being polled by the UI.
Migration request
↓
Task created + bound
↓
Scanner / planning / conversion progress
↓
Task status endpoint
↓
Live migration workspace
The migration platform treats conversion as a verification loop rather than a one-shot generation step:
Legacy Repository
↓
Program Analysis
AST / CTags / dependencies / stack detection
↓
Knowledge Base
analysis + dependency context
↓
Migration Planning
target architecture + symbol/file mapping
↓
Agentic Conversion
deterministic rules + context-grounded LLM translation
↓
Syntax Validation
AST / tree-sitter checks + bounded repair
↓
Post-Migration QA
structural + executable validation
↓
Release Gate
ready / blocked / review
↓
Migration artifact or failure report
LegacyLens uses the portfolio's shared LLM Gateway as its inference boundary.
Portfolio
↓
Create request-scoped BYOK session
↓
Short-lived JWT
↓
LegacyLens
X-LLM-Gateway-Token
↓
Portfolio LLM Gateway
↓
Selected provider / model
LegacyLens does not use direct provider API keys for inference in the hosted portfolio path. The gateway handles provider/model selection and credential custody.
cp .env.example .env
docker compose up --buildpython -m pytest -q
python portfolio_quality/quality_gate.py .LegacyLens is a portfolio and engineering demonstration, not a turnkey enterprise migration service. Semantic equivalence remains difficult to prove automatically, so the system exposes structural signals, executable checks, release gates, and review-oriented evidence rather than pretending an LLM confidence score proves correctness.
Developer modernization workbench — program analysis, migration planning, context-grounded conversion, syntax-aware validation, bounded repair, executable checks, and release-aware migration workflows.
| Back | FazBrowse Home | New Git URL |