ark-runtime-kernel 1.0.0 → 1.1.0
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/README.md +121 -220
- package/bin/ark-check.mjs +142 -20
- package/bin/ark-mcp.mjs +0 -0
- package/dist/index.cjs +25 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -957
- package/dist/index.d.ts +4 -957
- package/dist/index.js +25 -0
- package/dist/index.js.map +1 -1
- package/dist/nestjs/index.cjs +2301 -0
- package/dist/nestjs/index.cjs.map +1 -0
- package/dist/nestjs/index.d.cts +22 -0
- package/dist/nestjs/index.d.ts +22 -0
- package/dist/nestjs/index.js +2298 -0
- package/dist/nestjs/index.js.map +1 -0
- package/dist/types-7K_KQCgS.d.cts +991 -0
- package/dist/types-7K_KQCgS.d.ts +991 -0
- package/package.json +43 -8
- package/server.json +31 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ark-runtime-kernel",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Architectural Runtime Kernel — governance for Hexagonal + Event-Driven + DDD systems",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -16,23 +16,53 @@
|
|
|
16
16
|
"types": "./dist/eslint/index.d.ts",
|
|
17
17
|
"import": "./dist/eslint/index.js",
|
|
18
18
|
"require": "./dist/eslint/index.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./nestjs": {
|
|
21
|
+
"types": "./dist/nestjs/index.d.ts",
|
|
22
|
+
"import": "./dist/nestjs/index.js",
|
|
23
|
+
"require": "./dist/nestjs/index.cjs"
|
|
19
24
|
}
|
|
20
25
|
},
|
|
21
26
|
"bin": {
|
|
22
|
-
"ark-check": "
|
|
23
|
-
"ark-mcp": "
|
|
27
|
+
"ark-check": "bin/ark-check.mjs",
|
|
28
|
+
"ark-mcp": "bin/ark-mcp.mjs"
|
|
24
29
|
},
|
|
30
|
+
"mcpName": "io.github.pedroknigge/ark",
|
|
25
31
|
"files": [
|
|
26
32
|
"bin",
|
|
27
33
|
"dist",
|
|
34
|
+
"server.json",
|
|
28
35
|
"README.md",
|
|
29
36
|
"LICENSE"
|
|
30
37
|
],
|
|
31
38
|
"scripts": {
|
|
32
|
-
"build": "tsup"
|
|
39
|
+
"build": "tsup",
|
|
40
|
+
"dev": "tsup --watch",
|
|
41
|
+
"test": "vitest",
|
|
42
|
+
"test:run": "vitest run",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"check:architecture": "node bin/ark-check.mjs --root . --config ark.config.json --strict-config",
|
|
45
|
+
"clean": "rm -rf dist",
|
|
46
|
+
"release:npm": "node scripts/release-npm.mjs",
|
|
47
|
+
"prepack": "npm run build"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@nestjs/common": ">=9"
|
|
51
|
+
},
|
|
52
|
+
"peerDependenciesMeta": {
|
|
53
|
+
"@nestjs/common": {
|
|
54
|
+
"optional": true
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@nestjs/common": "^10.4.22",
|
|
59
|
+
"@types/node": "^20.14.0",
|
|
60
|
+
"reflect-metadata": "^0.2.2",
|
|
61
|
+
"rxjs": "^7.8.2",
|
|
62
|
+
"tsup": "^8.1.0",
|
|
63
|
+
"typescript": "^5.5.3",
|
|
64
|
+
"vitest": "^1.6.0"
|
|
33
65
|
},
|
|
34
|
-
"dependencies": {},
|
|
35
|
-
"peerDependencies": {},
|
|
36
66
|
"engines": {
|
|
37
67
|
"node": ">=18"
|
|
38
68
|
},
|
|
@@ -44,11 +74,16 @@
|
|
|
44
74
|
"clean-architecture",
|
|
45
75
|
"governance",
|
|
46
76
|
"kernel",
|
|
47
|
-
"policy"
|
|
77
|
+
"policy",
|
|
78
|
+
"nestjs",
|
|
79
|
+
"ai-agents",
|
|
80
|
+
"mcp",
|
|
81
|
+
"lint",
|
|
82
|
+
"architecture-fitness"
|
|
48
83
|
],
|
|
49
84
|
"license": "MIT",
|
|
50
85
|
"repository": {
|
|
51
86
|
"type": "git",
|
|
52
|
-
"url": "git+https://github.com/pedroknigge/ark.git"
|
|
87
|
+
"url": "git+https://github.com/pedroknigge/ark-runtime-kernel.git"
|
|
53
88
|
}
|
|
54
89
|
}
|
package/server.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
|
|
3
|
+
"name": "io.github.pedroknigge/ark",
|
|
4
|
+
"description": "Architecture write-gate for AI agents: validates generated code against your Hexagonal/DDD layer rules before it lands, and exposes the machine-readable architecture contract (ark://manifest).",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/pedroknigge/ark-runtime-kernel",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.1.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registry_type": "npm",
|
|
13
|
+
"identifier": "ark-runtime-kernel",
|
|
14
|
+
"version": "1.1.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
},
|
|
18
|
+
"runtime_hint": "npx",
|
|
19
|
+
"package_arguments": [
|
|
20
|
+
{ "type": "positional", "value": "ark-mcp" },
|
|
21
|
+
{ "type": "named", "name": "--root", "value": ".", "description": "Project root" },
|
|
22
|
+
{
|
|
23
|
+
"type": "named",
|
|
24
|
+
"name": "--config",
|
|
25
|
+
"value": "ark.config.json",
|
|
26
|
+
"description": "Path to the Ark architecture config"
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|