arkgate 4.5.0 → 4.5.6
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.
- package/CHANGELOG.md +69 -2
- package/README.md +5 -4
- package/bin/ark-check-runtime.mjs +4 -0
- package/bin/ark-mcp-runtime.mjs +49 -0
- package/bin/ark-shared.mjs +8 -29
- package/bin/ark.mjs +7 -3
- package/bin/lib/adapter-contract.mjs +5 -5
- package/bin/lib/analysis-engine.mjs +1 -1
- package/bin/lib/ci-and-commands.mjs +5 -0
- package/bin/lib/deep-module-coach.mjs +177 -0
- package/bin/lib/deepening-coach.mjs +177 -0
- package/bin/lib/doctor-plan.mjs +14 -0
- package/bin/lib/html-report-advisories.mjs +33 -0
- package/bin/lib/html-report-depth.mjs +9 -0
- package/bin/lib/managed-upgrade.mjs +215 -1
- package/bin/lib/remediation.mjs +5 -5
- package/bin/lib/rules-inventory.mjs +23 -0
- package/bin/lib/upgrade-command.mjs +132 -11
- package/bin/lib/upgrade-package-decision.mjs +241 -0
- package/bin/lib/upgrade-whats-new.mjs +135 -0
- package/dist/eslint/index.cjs +1 -1
- package/dist/eslint/index.js +1 -1
- package/dist/index.cjs +27 -27
- package/dist/index.d.ts +1 -1
- package/dist/index.js +29 -29
- package/docs/README.md +4 -5
- package/docs/agent-guide.md +36 -0
- package/docs/brownfield-adoption.md +12 -0
- package/docs/package-surface.md +6 -3
- package/docs/product-voice.md +21 -0
- package/docs/use.md +3 -0
- package/package.json +1 -1
- package/server.json +2 -2
- package/templates/agent-skills/README.md +2 -2
- package/templates/agent-skills/ark-adopt/SKILL.md +13 -0
- package/templates/agent-skills/ark-explore/SKILL.md +21 -0
- package/templates/agent-skills/ark-fix/SKILL.md +7 -0
- package/templates/agent-skills/ark-loop/SKILL.md +7 -0
- package/templates/agent-skills/ark-place/SKILL.md +7 -0
- package/templates/agent-skills/ark-think/SKILL.md +7 -0
- package/templates/agent-skills/ark-upgrade/SKILL.md +61 -15
- package/templates/skills/ark-adopt.md +13 -0
- package/templates/skills/ark-explore.md +21 -0
- package/templates/skills/ark-fix.md +7 -0
- package/templates/skills/ark-loop.md +7 -0
- package/templates/skills/ark-place.md +7 -0
- package/templates/skills/ark-think.md +7 -0
- package/templates/skills/ark-upgrade.md +61 -15
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.
|
|
247
|
+
declare const version = "4.5.6";
|
|
248
248
|
|
|
249
249
|
/** Versioned public result contract shared by every ArkGate enforcement adapter. */
|
|
250
250
|
/**
|