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 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
- npm install -D arkgate typescript
25
- # bins: npx arkgate-check … (or still npx ark-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 package will be **deprecated** on npm with a pointer here after publish.
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/ark-runtime-kernel@main` runs
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
- [![CI](https://github.com/pedroknigge/ark-runtime-kernel/actions/workflows/ci.yml/badge.svg)](https://github.com/pedroknigge/ark-runtime-kernel/actions/workflows/ci.yml)
10
+ [![CI](https://github.com/pedroknigge/arkgate/actions/workflows/ci.yml/badge.svg)](https://github.com/pedroknigge/arkgate/actions/workflows/ci.yml)
11
11
  [![npm](https://img.shields.io/npm/v/arkgate?color=cb3837&label=npm)](https://www.npmjs.com/package/arkgate)
12
12
  [![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
13
13
  ![Node](https://img.shields.io/badge/node-%3E%3D18-339933?logo=node.js)
@@ -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/ark-runtime-kernel@main # Action still on this repo until rename
183
+ # or: uses: pedroknigge/arkgate@main
170
184
  ```
171
185
 
172
186
  ---
package/dist/index.cjs CHANGED
@@ -80,7 +80,7 @@ __export(index_exports, {
80
80
  module.exports = __toCommonJS(index_exports);
81
81
 
82
82
  // src/version.ts
83
- var version = "2.1.0";
83
+ var version = "2.1.1";
84
84
 
85
85
  // src/kernel/intent/IntentRegistry.ts
86
86
  var IntentRegistry = class {