arkgate 2.1.0 → 2.1.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 +16 -5
- package/README.md +16 -2
- 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/docs/migrate-from-ark-runtime-kernel.md +152 -0
- package/package.json +8 -3
- package/server.json +4 -4
- package/templates/skills/ark-upgrade.md +12 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to ArkGate (`arkgate`; formerly `ark-runtime-kernel`) are documented here.
|
|
4
4
|
|
|
5
|
+
## 2.1.1 — 2026-07-08
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
- **Migration guide** for the ~4.5k installs still on `ark-runtime-kernel`:
|
|
10
|
+
[docs/migrate-from-ark-runtime-kernel.md](docs/migrate-from-ark-runtime-kernel.md)
|
|
11
|
+
+ README section *Upgrading from ark-runtime-kernel?*
|
|
12
|
+
- `/ark-upgrade` skill points rename-aware projects at `arkgate`.
|
|
13
|
+
|
|
5
14
|
## 2.1.0 — 2026-07-08
|
|
6
15
|
|
|
7
16
|
**Identity: ArkGate.** Same product and codebase; honest package name.
|
|
@@ -19,13 +28,15 @@ All notable changes to ArkGate (`arkgate`; formerly `ark-runtime-kernel`) are do
|
|
|
19
28
|
|
|
20
29
|
### Migration
|
|
21
30
|
|
|
31
|
+
Full guide: [docs/migrate-from-ark-runtime-kernel.md](docs/migrate-from-ark-runtime-kernel.md).
|
|
32
|
+
|
|
22
33
|
```bash
|
|
23
|
-
npm uninstall ark-runtime-kernel
|
|
24
|
-
|
|
25
|
-
# bins: npx arkgate-check … (
|
|
34
|
+
npm uninstall ark-runtime-kernel && npm install -D arkgate
|
|
35
|
+
npx arkgate-check --install-agent-gates --force
|
|
36
|
+
# bins: npx arkgate-check … (aliases ark-check / ark-mcp still work)
|
|
26
37
|
```
|
|
27
38
|
|
|
28
|
-
Predecessor
|
|
39
|
+
Predecessor `ark-runtime-kernel` is **deprecated** on npm → use `arkgate`.
|
|
29
40
|
|
|
30
41
|
## 2.0.1 — 2026-07-08
|
|
31
42
|
|
|
@@ -921,7 +932,7 @@ _From downstream consumer feedback after a real upgrade + CI-failure session._
|
|
|
921
932
|
|
|
922
933
|
### Added — GitHub Action
|
|
923
934
|
|
|
924
|
-
- Composite action at the repo root: `uses: pedroknigge/
|
|
935
|
+
- Composite action at the repo root: `uses: pedroknigge/arkgate@main` runs
|
|
925
936
|
`ark-check`, writes the result to the step summary, and (with `github-token`) comments
|
|
926
937
|
violations on the PR. Inputs: `root`, `config`, `strict-config`, `baseline`, `version`.
|
|
927
938
|
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
Your AI writes most of the code. **ArkGate** keeps that code inside an architecture you can
|
|
8
8
|
trust — and makes sure a “green” check means something real.
|
|
9
9
|
|
|
10
|
-
[](https://github.com/pedroknigge/arkgate/actions/workflows/ci.yml)
|
|
11
11
|
[](https://www.npmjs.com/package/arkgate)
|
|
12
12
|
[](LICENSE)
|
|
13
13
|

|
|
@@ -66,6 +66,20 @@ Three **operating modes** (not “user types”) on the same contract:
|
|
|
66
66
|
|
|
67
67
|
---
|
|
68
68
|
|
|
69
|
+
## Upgrading from `ark-runtime-kernel`?
|
|
70
|
+
|
|
71
|
+
**Same product**, new package name. Config and `/ark-*` skills stay.
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
npm uninstall ark-runtime-kernel && npm install -D arkgate
|
|
75
|
+
npx arkgate-check --install-agent-gates --force
|
|
76
|
+
npx arkgate-check --doctor
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Full checklist (CI, MCP, Codex, imports): **[docs/migrate-from-ark-runtime-kernel.md](docs/migrate-from-ark-runtime-kernel.md)**.
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
69
83
|
## Start in one minute
|
|
70
84
|
|
|
71
85
|
```bash
|
|
@@ -166,7 +180,7 @@ CI (example):
|
|
|
166
180
|
|
|
167
181
|
```yaml
|
|
168
182
|
- run: npx arkgate-check --root . --config ark.config.json --strict-config
|
|
169
|
-
# or: uses: pedroknigge/
|
|
183
|
+
# or: uses: pedroknigge/arkgate@main
|
|
170
184
|
```
|
|
171
185
|
|
|
172
186
|
---
|