auditor-lambda 0.3.3 → 0.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/README.md +6 -1
  2. package/audit-code-wrapper-lib.mjs +78 -5
  3. package/dist/cli.js +187 -67
  4. package/dist/extractors/graph.d.ts +5 -1
  5. package/dist/extractors/graph.js +223 -3
  6. package/dist/extractors/pathPatterns.d.ts +3 -2
  7. package/dist/extractors/pathPatterns.js +97 -24
  8. package/dist/io/artifacts.d.ts +5 -0
  9. package/dist/io/artifacts.js +2 -0
  10. package/dist/orchestrator/advance.js +1 -1
  11. package/dist/orchestrator/dependencyMap.js +18 -0
  12. package/dist/orchestrator/internalExecutors.d.ts +1 -1
  13. package/dist/orchestrator/internalExecutors.js +120 -33
  14. package/dist/orchestrator/reviewPackets.d.ts +14 -0
  15. package/dist/orchestrator/reviewPackets.js +300 -0
  16. package/dist/orchestrator/selectiveDeepening.d.ts +14 -0
  17. package/dist/orchestrator/selectiveDeepening.js +392 -0
  18. package/dist/orchestrator/state.js +6 -1
  19. package/dist/orchestrator/taskBuilder.d.ts +16 -0
  20. package/dist/orchestrator/taskBuilder.js +68 -11
  21. package/dist/prompts/renderWorkerPrompt.js +2 -1
  22. package/dist/types/graph.d.ts +1 -0
  23. package/dist/types/reviewPlanning.d.ts +41 -0
  24. package/dist/types/reviewPlanning.js +1 -0
  25. package/dist/validation/artifacts.js +13 -0
  26. package/docs/bootstrap-install.md +3 -0
  27. package/docs/dispatch-implementation-plan.md +179 -481
  28. package/docs/next-steps.md +13 -8
  29. package/docs/product-direction.md +5 -3
  30. package/docs/run-flow.md +23 -30
  31. package/docs/session-config.md +4 -1
  32. package/docs/workflow-refactor-brief.md +83 -154
  33. package/package.json +1 -1
  34. package/schemas/finding.schema.json +1 -15
  35. package/schemas/graph_bundle.schema.json +16 -0
@@ -7,6 +7,9 @@ audit-code install
7
7
  ```
8
8
 
9
9
  That command installs the repo-local `/audit-code` surfaces we can automate today.
10
+ It is also the single refresh path: rerun `audit-code install` after prompt or
11
+ skill updates to rewrite the shared install assets and every generated
12
+ host-specific surface from the same source files.
10
13
 
11
14
  After bootstrap, run:
12
15