alex
|
c6064f8d94
|
Implement layered maps and context retrieval
|
2026-06-11 12:56:18 +02:00 |
|
alex
|
2f198ea0d2
|
feat: remove heuristics, go LLM-only with mocks + restructure
BREAKING: Heuristic fallback removed — LLM client now required
Changes:
- Remove extractFileHeuristic, extractPackageHeuristic, all helpers
- extractFileLLM / extractPackageLLM now throw LLMError when client missing
- Add hybrid binary detection: extension blacklist + content sniffing
- Increase file size limit: 50KB → 500KB (text files only)
- Restructure src/ into subdirectories:
- src/llm/ — all LLM clients, extract, batch, cache, error
- src/ast/ — AST extraction
- src/cli/ — CLI entry point
- Update all imports across codebase and tests
- Add tests/mock-llm.ts helper for deterministic mock clients
- Update all tests to use mock LLM clients (no heuristics dependency)
- All 52 tests passing (including 8 real LLM integration tests)
|
2026-06-10 17:34:37 +02:00 |
|
alex
|
ab45859d65
|
Add AST extraction tests, broader ignore patterns, build dist
- ast-extract.ts: Support tree-sitter-python and tree-sitter-go grammar
loading (pkg.language fallback)
- discover.ts: Add cache directories to default ignore (.cache, tmp,
temp, .turbo, .parcel-cache, .eslintcache, .prettiercache)
- tests: Add TypeScript AST extraction tests (exports + imports)
- Verified on real project: media_library_viewer (196 .pi-map.md files)
with accurate React component extraction
- Build: npm run build produces clean dist/ output
All 16 tests pass.
|
2026-06-09 19:25:56 +02:00 |
|
alex
|
3dbb3cb7b2
|
Fix discover, improve LLM heuristics, add integration tests
- discover.ts: Fix ignore package path handling for root '.' directories,
add .pi-map.md to default ignore list
- llm-extract.ts: Fix export regex to only match line-start exports and
handle 'export async function', fix root package role to 'Project root'
- init.ts: Minor cleanup
- .gitignore: Add .pi-map.md
- tests: 6 integration tests covering init, patch (small/large packages),
validate (missing, orphaned, stale-signature detection)
All 14 tests pass. TypeScript compiles clean.
|
2026-06-09 19:14:41 +02:00 |
|