arkgate 2.9.0 → 2.9.1
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 +34 -0
- package/bin/ark-check.mjs +19 -1
- package/bin/ark.mjs +131 -20
- package/bin/lib/agent-gates.mjs +37 -3
- package/bin/lib/field-install.mjs +334 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/nestjs/index.cjs +1 -1
- package/dist/nestjs/index.cjs.map +1 -1
- package/dist/nestjs/index.js +1 -1
- package/dist/nestjs/index.js.map +1 -1
- package/dist/runtime/index.cjs +1 -1
- package/dist/runtime/index.cjs.map +1 -1
- package/dist/runtime/index.js +1 -1
- package/dist/runtime/index.js.map +1 -1
- package/package.json +1 -1
- package/server.json +2 -2
- package/templates/skills/ark-autopilot.md +7 -0
package/package.json
CHANGED
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/pedroknigge/arkgate",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "2.9.
|
|
9
|
+
"version": "2.9.1",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "arkgate",
|
|
14
|
-
"version": "2.9.
|
|
14
|
+
"version": "2.9.1",
|
|
15
15
|
"runtimeHint": "npx",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|
|
@@ -35,6 +35,12 @@ never weaken the gate).
|
|
|
35
35
|
|
|
36
36
|
## Flow
|
|
37
37
|
|
|
38
|
+
0. **False-green soft block (mandatory before victory)** — Run `ark-check --doctor` (or `--coverage`).
|
|
39
|
+
If Domain/Persistence (or similar cores) are **empty** while Application-class globs still cover
|
|
40
|
+
I/O dirs (`airtable`, `supabase`, `prisma`, `drizzle`, `repositories`, …), **do not** claim
|
|
41
|
+
ENFORCE / `goal.met` from type-only cleanup alone. Route to **`/ark-adopt`** or **`/ark-contract`**
|
|
42
|
+
first: reclassify real persistence/auth out of Application. Doctor gap id:
|
|
43
|
+
`contract-false-green-io-under-application`.
|
|
38
44
|
1. **Setup if needed** — `ark start` if no `ark.config.json`. Trust `--recommend` / playbook:
|
|
39
45
|
`vertical-slice-product` and `ddd-bounded-contexts` are first-class shapes (not hexagonal by default).
|
|
40
46
|
2. **Origin report** — `ark-check --report ark-report.html` (do not `--reset-origin` unless asked).
|
|
@@ -55,6 +61,7 @@ never weaken the gate).
|
|
|
55
61
|
|
|
56
62
|
- Disable rules, broaden allows, or baseline **new** debt to “finish”.
|
|
57
63
|
- Claim clean while judgment steps were skipped without user decision.
|
|
64
|
+
- Claim ENFORCE / “done” when doctor reports `contract-false-green-io-under-application` (adopt first).
|
|
58
65
|
- Replace host Nest/DI with the runtime kernel unasked.
|
|
59
66
|
|
|
60
67
|
## Done criteria
|