@aryaminus/controlkeel 0.2.50 → 0.3.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/lib/install.js +3 -1
- package/package.json +3 -2
- package/server.json +22 -0
package/lib/install.js
CHANGED
|
@@ -5,8 +5,10 @@ const os = require("node:os");
|
|
|
5
5
|
const path = require("node:path");
|
|
6
6
|
const https = require("node:https");
|
|
7
7
|
|
|
8
|
+
const packageJson = require("../package.json");
|
|
9
|
+
|
|
8
10
|
const REPOSITORY = process.env.CONTROLKEEL_GITHUB_REPO || "aryaminus/controlkeel";
|
|
9
|
-
const VERSION = process.env.CONTROLKEEL_VERSION ||
|
|
11
|
+
const VERSION = process.env.CONTROLKEEL_VERSION || packageJson.version;
|
|
10
12
|
|
|
11
13
|
function releaseBaseUrl() {
|
|
12
14
|
if (VERSION === "latest") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aryaminus/controlkeel",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Bootstrap installer for the ControlKeel native CLI.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"files": [
|
|
18
18
|
"bin",
|
|
19
19
|
"lib",
|
|
20
|
-
"README.md"
|
|
20
|
+
"README.md",
|
|
21
|
+
"server.json"
|
|
21
22
|
],
|
|
22
23
|
"scripts": {
|
|
23
24
|
"postinstall": "node lib/postinstall.js"
|
package/server.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.aryaminus/controlkeel",
|
|
4
|
+
"title": "ControlKeel",
|
|
5
|
+
"description": "Governed MCP workflows with policy validation, findings tracking, and review gates.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"url": "https://github.com/aryaminus/controlkeel.git",
|
|
8
|
+
"source": "github"
|
|
9
|
+
},
|
|
10
|
+
"version": "0.3.1",
|
|
11
|
+
"packages": [
|
|
12
|
+
{
|
|
13
|
+
"registryType": "npm",
|
|
14
|
+
"identifier": "@aryaminus/controlkeel",
|
|
15
|
+
"version": "0.3.1",
|
|
16
|
+
"runtimeHint": "npx",
|
|
17
|
+
"transport": {
|
|
18
|
+
"type": "stdio"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|