Skip to content

Latest commit

 

History

History
59 lines (43 loc) · 1.94 KB

File metadata and controls

59 lines (43 loc) · 1.94 KB

Goal Result

Summary

Implemented automatic project mapping during bootstrap. As soon as llm-project-mapper is applied to a host repo, it now performs a local inspection, infers stack/domain/team/integrations, pre-fills the starter-managed docs, and writes an inspection journal without waiting for a manual INIT.md handoff.

Changed Files

  • /Users/wesleysimplicio/Projetos/skills/llm-project-mapper/bin/auto-map.js
  • /Users/wesleysimplicio/Projetos/skills/llm-project-mapper/bin/cli.js
  • /Users/wesleysimplicio/Projetos/skills/llm-project-mapper/tests/unit/cli-install.test.js
  • /Users/wesleysimplicio/Projetos/skills/llm-project-mapper/tests/e2e/cli.spec.ts
  • /Users/wesleysimplicio/Projetos/skills/llm-project-mapper/README.md
  • /Users/wesleysimplicio/Projetos/skills/llm-project-mapper/README.pt-BR.md
  • /Users/wesleysimplicio/Projetos/skills/llm-project-mapper/CHANGELOG.md
  • /Users/wesleysimplicio/Projetos/skills/llm-project-mapper/package.json

Validation Commands

npm run lint
npm test
npm run docs:build
npm run test:e2e -- --reporter=list,html

Validation Results

  • build: pass
  • tests: pass
  • lint: pass

Remaining Risks

  • The automatic mapping pass is heuristic-based; projects with highly custom layouts may still benefit from an optional second-pass INIT.md refinement.
  • taskflow inspect/run could not be executed because taskflow is not installed in this environment.

Suggested PR Title

feat: auto-map host projects during bootstrap

Suggested PR Body

## Summary
- add an automatic local mapping pass during bootstrap
- pre-fill starter-managed docs immediately after apply
- add unit and Playwright regression coverage for placeholder-clean generated output
- bump package version to 0.3.0

## Validation
- [x] npm run lint
- [x] npm test
- [x] npm run docs:build
- [x] npm run test:e2e -- --reporter=list,html

## Risks
- mapping is heuristic and may need manual refinement in custom repos