agentloopkit 0.25.0 → 0.26.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 +30 -4
- package/dist/cli/index.js +257 -2
- package/dist/cli/index.js.map +1 -1
- package/package.json +4 -1
- package/server.json +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentloopkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
|
+
"mcpName": "io.github.abhiyoheswaran1/agentloopkit",
|
|
4
5
|
"description": "A drop-in engineering loop for coding agents.",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
@@ -10,6 +11,7 @@
|
|
|
10
11
|
"files": [
|
|
11
12
|
"dist",
|
|
12
13
|
"schema",
|
|
14
|
+
"server.json",
|
|
13
15
|
"README.md",
|
|
14
16
|
"LICENSE"
|
|
15
17
|
],
|
|
@@ -53,6 +55,7 @@
|
|
|
53
55
|
"prepublishOnly": "node scripts/prepublish-check.mjs && npm run typecheck && npm test && npm run build"
|
|
54
56
|
},
|
|
55
57
|
"dependencies": {
|
|
58
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
56
59
|
"commander": "^14.0.2",
|
|
57
60
|
"execa": "^9.6.0",
|
|
58
61
|
"prompts": "^2.4.2",
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.abhiyoheswaran1/agentloopkit",
|
|
4
|
+
"description": "Read-only MCP server for AgentLoopKit task contracts, policies, verification reports, handoffs, status, and next action.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/abhiyoheswaran1/AgentLoopKit",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "0.26.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "agentloopkit",
|
|
14
|
+
"version": "0.26.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|