arkgate 4.5.0 → 4.5.5

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 (42) hide show
  1. package/CHANGELOG.md +26 -2
  2. package/README.md +6 -4
  3. package/bin/ark-check-runtime.mjs +4 -0
  4. package/bin/lib/adapter-contract.mjs +5 -5
  5. package/bin/lib/analysis-engine.mjs +1 -1
  6. package/bin/lib/ci-and-commands.mjs +5 -0
  7. package/bin/lib/deep-module-coach.mjs +177 -0
  8. package/bin/lib/deepening-coach.mjs +177 -0
  9. package/bin/lib/doctor-plan.mjs +14 -0
  10. package/bin/lib/html-report-advisories.mjs +33 -0
  11. package/bin/lib/html-report-depth.mjs +9 -0
  12. package/bin/lib/managed-upgrade.mjs +17 -0
  13. package/bin/lib/remediation.mjs +5 -5
  14. package/bin/lib/upgrade-whats-new.mjs +110 -0
  15. package/dist/eslint/index.cjs +1 -1
  16. package/dist/eslint/index.js +1 -1
  17. package/dist/index.cjs +19 -19
  18. package/dist/index.d.ts +1 -1
  19. package/dist/index.js +22 -22
  20. package/docs/README.md +5 -5
  21. package/docs/agent-guide.md +15 -0
  22. package/docs/brownfield-adoption.md +12 -0
  23. package/docs/package-surface.md +4 -3
  24. package/docs/product-voice.md +21 -0
  25. package/docs/use.md +3 -0
  26. package/package.json +1 -1
  27. package/server.json +2 -2
  28. package/templates/agent-skills/README.md +2 -2
  29. package/templates/agent-skills/ark-adopt/SKILL.md +13 -0
  30. package/templates/agent-skills/ark-explore/SKILL.md +21 -0
  31. package/templates/agent-skills/ark-fix/SKILL.md +7 -0
  32. package/templates/agent-skills/ark-loop/SKILL.md +7 -0
  33. package/templates/agent-skills/ark-place/SKILL.md +7 -0
  34. package/templates/agent-skills/ark-think/SKILL.md +7 -0
  35. package/templates/agent-skills/ark-upgrade/SKILL.md +14 -0
  36. package/templates/skills/ark-adopt.md +13 -0
  37. package/templates/skills/ark-explore.md +21 -0
  38. package/templates/skills/ark-fix.md +7 -0
  39. package/templates/skills/ark-loop.md +7 -0
  40. package/templates/skills/ark-place.md +7 -0
  41. package/templates/skills/ark-think.md +7 -0
  42. package/templates/skills/ark-upgrade.md +14 -0
package/dist/index.d.ts CHANGED
@@ -244,7 +244,7 @@ declare function loadArkConfigContract(input: unknown, source?: string): ArkConf
244
244
  declare function parseArkConfigJson(json: string, source?: string): ArkConfigLoadResult;
245
245
 
246
246
  /** ArkGate library version — single source of truth. */
247
- declare const version = "4.5.0";
247
+ declare const version = "4.5.5";
248
248
 
249
249
  /** Versioned public result contract shared by every ArkGate enforcement adapter. */
250
250
  /**