arkgate 4.7.4 → 4.7.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.
- package/CHANGELOG.md +25 -4
- package/README.md +74 -51
- package/bin/lib/first-run-help.mjs +6 -4
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/README.md +8 -5
- package/docs/agent-guide.md +2 -1
- package/docs/ai-gates.md +2 -1
- package/docs/develop.md +5 -2
- package/docs/enthusiast/README.md +5 -4
- package/docs/package-surface.md +6 -4
- package/docs/product-voice.md +112 -422
- package/docs/use.md +19 -19
- package/package.json +2 -2
- package/server.json +3 -3
- package/templates/agent-skills/README.md +1 -1
package/docs/use.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Use ArkGate
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**Write. Check. Ship.**
|
|
4
4
|
|
|
5
|
-
**
|
|
5
|
+
For **anyone** shipping TypeScript with an AI coding agent.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
file is just documentation.
|
|
7
|
+
**When the agent writes a bad import, the write doesn’t land. The same check fails the pull request.**
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
Not an API Gateway. Not a folder linter. If the check is not required on the PR, the config
|
|
10
|
+
is just documentation.
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
@@ -17,7 +17,7 @@ file is just documentation.
|
|
|
17
17
|
npm install -D arkgate typescript
|
|
18
18
|
npx arkgate start # preview what will change
|
|
19
19
|
npx arkgate start --apply # install compact config + host router + CI plan
|
|
20
|
-
npx arkgate-check --doctor #
|
|
20
|
+
npx arkgate-check --doctor # status — one next step
|
|
21
21
|
npx arkgate-check --doctor --all # full details
|
|
22
22
|
```
|
|
23
23
|
|
|
@@ -52,9 +52,9 @@ In those cases a boundary linter or editor rules may be enough; see [README —
|
|
|
52
52
|
|
|
53
53
|
| When | What happens |
|
|
54
54
|
|------|----------------|
|
|
55
|
-
| While the
|
|
56
|
-
| Before merge | Make the Ark job a **required GitHub status context** running `arkgate-check --strict-merge` (alias `ark-check`). Until that status is required — or you write `.ark/adoption-stance.json` with `stance: "advisory-only"` —
|
|
57
|
-
| Anytime |
|
|
55
|
+
| While the agent writes | The write doesn’t land, or you get a warning (depends on the host) |
|
|
56
|
+
| Before merge | Make the Ark job a **required GitHub status context** running `arkgate-check --strict-merge` (alias `ark-check`). Until that status is required — or you write `.ark/adoption-stance.json` with `stance: "advisory-only"` — status will not call the tree adopted. |
|
|
57
|
+
| Anytime | Status: Setup / In progress / Ready (+ needs a refactor if leftover design work remains) |
|
|
58
58
|
|
|
59
59
|
**Cursor:** the hook rejects Write/StrReplace when `.cursor/hooks.json` is trusted.
|
|
60
60
|
**Codex CLI / local Desktop:** the hook rejects a complete `apply_patch` when
|
|
@@ -64,19 +64,19 @@ advisory (warning only, not blocked). An unverified host hook is environment evi
|
|
|
64
64
|
unfinished architecture; **Not finished** is reserved for real project/config debt.
|
|
65
65
|
|
|
66
66
|
ArkGate is **not** an API Gateway, a folder linter, a web framework, ORM, or app runtime.
|
|
67
|
-
The
|
|
67
|
+
The config only binds when the write doesn’t land and CI is required.
|
|
68
68
|
|
|
69
|
-
###
|
|
69
|
+
### The product (you choose the extras)
|
|
70
70
|
|
|
71
|
-
|
|
|
72
|
-
|
|
73
|
-
| **
|
|
74
|
-
| **ArkRules**
|
|
75
|
-
| **ArkRun**
|
|
71
|
+
| | Plain English | Default |
|
|
72
|
+
|--|---------------|---------|
|
|
73
|
+
| **ArkGate** (layers) | Import rules. The write doesn’t land. The PR fails. | Always — this is the product |
|
|
74
|
+
| **ArkRules** | Optional policies *inside* a layer. | Off until you turn it on (start may ship advisory templates) |
|
|
75
|
+
| **ArkRun** | Optional experimental runtime | Off. In-memory. Not Postgres. |
|
|
76
76
|
|
|
77
|
-
Start always gives you **layers**.
|
|
78
|
-
|
|
79
|
-
|
|
77
|
+
Start always gives you **layers**. Compact starters do **not** turn on ArkRun.
|
|
78
|
+
No ArkRules / ArkRun is fine — only ArkGate runs. Leftovers are labeled
|
|
79
|
+
**`[Layer]`** vs **`[ArkRules]`**. Green imports ≠ elegant design. ArkRun ≠ durable stores.
|
|
80
80
|
|
|
81
81
|
### New modules vs config edits
|
|
82
82
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "arkgate",
|
|
3
|
-
"version": "4.7.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "4.7.5",
|
|
4
|
+
"description": "When the agent writes a bad import, the write doesn’t land. The same check fails the pull request.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
7
7
|
"module": "./dist/index.js",
|
package/server.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.pedroknigge/arkgate",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "When the agent writes a bad import, the write doesn’t land. The same check fails the pull request.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/pedroknigge/arkgate",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "4.7.
|
|
9
|
+
"version": "4.7.5",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "arkgate",
|
|
14
|
-
"version": "4.7.
|
|
14
|
+
"version": "4.7.5",
|
|
15
15
|
"runtimeHint": "npx",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
This directory is the **Agent Skills–compatible** packaging of the same **13**
|
|
8
8
|
`/ark-*` skills shipped as flat templates for Ark install. **No new skill names.**
|
|
9
9
|
|
|
10
|
-
Package version when last generated context: **arkgate@4.7.
|
|
10
|
+
Package version when last generated context: **arkgate@4.7.5**
|
|
11
11
|
Schema: agent-skills package contract `1.0`
|
|
12
12
|
|
|
13
13
|
## Skills (frozen catalog)
|