Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

- Added Next.js route mapping for `src/app` and `src/pages` layouts, thanks @obatried.
- Added first-pass Python mapping for project metadata, console scripts, source groups, pytest suites, and conservative validation defaults, thanks @xiamx.
- Improved Node/TypeScript mapping for large workspaces by splitting package source trees into bounded review groups with package-local tests.
- Added generic nested SwiftPM, Apple/Xcode, and Gradle/Android app mapping.

Expand Down
7 changes: 7 additions & 0 deletions docs/feature-mapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Supported deterministic mappers today:
- Next.js `app/` and `pages/` routes
- Go `cmd/*/main.go`
- Go `internal/*` packages
- Python project metadata, console scripts, bounded source groups, and pytest suites
- Rust Cargo commands, libraries, workspace crates, and integration tests
- SwiftPM executable targets, library targets, and test suites
- nested SwiftPM packages
Expand All @@ -52,8 +53,14 @@ Native app mappers use the same bounded grouping model. SwiftPM packages can be
discovered below the repo root, Apple projects are grouped by Swift source area,
and Gradle modules are grouped from `src/main`, `src/test`, and `src/androidTest`.

Python mapping covers `pyproject.toml` metadata, `[project.scripts]` and
`[tool.poetry.scripts]` console scripts, source groups under common Python
source roots, and pytest files. Framework-specific route mapping for FastAPI,
Flask, and Django is not implemented yet.

Known gaps:

- no Express/Fastify/Hono route mapper yet
- no FastAPI/Flask/Django route mapper yet
- no import graph expansion beyond nearby tests yet
- no agent enrichment yet
1 change: 1 addition & 0 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ This discovers reviewable features:
- npm package bins and scripts
- Next.js routes
- Go packages and commands
- Python packages, console scripts, and pytest suites
- Rust crates and binaries
- SwiftPM targets and tests
- Config files
Expand Down
Loading