agentloopkit 0.26.0 → 0.26.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/README.md +5 -5
- package/package.json +1 -1
- package/server.json +3 -3
package/README.md
CHANGED
|
@@ -60,8 +60,8 @@ npx agentloopkit init --local-only
|
|
|
60
60
|
Pin the current version when you need repeatable CI or team setup:
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
npx --yes agentloopkit@0.26.
|
|
64
|
-
npx --yes agentloopkit@0.26.
|
|
63
|
+
npx --yes agentloopkit@0.26.1 version
|
|
64
|
+
npx --yes agentloopkit@0.26.1 init
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
Run the CLI after install:
|
|
@@ -395,7 +395,7 @@ See `docs/ci-summary.md`.
|
|
|
395
395
|
```bash
|
|
396
396
|
agentloop release-notes
|
|
397
397
|
agentloop release-notes --from v0.19.0 --to HEAD
|
|
398
|
-
agentloop release-notes --release-version 0.26.
|
|
398
|
+
agentloop release-notes --release-version 0.26.1
|
|
399
399
|
agentloop release-notes --json
|
|
400
400
|
agentloop release-notes --write
|
|
401
401
|
```
|
|
@@ -424,7 +424,7 @@ See `docs/npm-status.md`.
|
|
|
424
424
|
AgentLoopKit can expose existing repo evidence to MCP clients through a read-only stdio server:
|
|
425
425
|
|
|
426
426
|
```bash
|
|
427
|
-
npx --yes agentloopkit@0.26.
|
|
427
|
+
npx --yes agentloopkit@0.26.1 mcp-server
|
|
428
428
|
```
|
|
429
429
|
|
|
430
430
|
The server provides tools for status, next action, task contracts, active task, policies, latest verification report, and handoff summaries. It does not run verification commands, edit files, call external APIs, read `.env` contents, or upload data.
|
|
@@ -473,7 +473,7 @@ Use `agentloop check-gates --strict` as a review-evidence gate in pull request C
|
|
|
473
473
|
|
|
474
474
|
CI-generated verification reports include GitHub Actions provenance when available, so reviewers can trace an artifact back to the workflow run that created it.
|
|
475
475
|
|
|
476
|
-
See `docs/github-actions.md`, `examples/github-actions/`, `examples/gitlab-ci/`, and `examples/buildkite/` for copy-pasteable workflows. Pin `agentloopkit@0.26.
|
|
476
|
+
See `docs/github-actions.md`, `examples/github-actions/`, `examples/gitlab-ci/`, and `examples/buildkite/` for copy-pasteable workflows. Pin `agentloopkit@0.26.1` or a newer vetted release when reproducibility matters.
|
|
477
477
|
|
|
478
478
|
## Other Install Channels
|
|
479
479
|
|
package/package.json
CHANGED
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.abhiyoheswaran1/agentloopkit",
|
|
4
|
-
"description": "Read-only MCP server for AgentLoopKit
|
|
4
|
+
"description": "Read-only MCP server for AgentLoopKit tasks, policies, reports, handoffs, and status.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/abhiyoheswaran1/AgentLoopKit",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.26.
|
|
9
|
+
"version": "0.26.1",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "agentloopkit",
|
|
14
|
-
"version": "0.26.
|
|
14
|
+
"version": "0.26.1",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
}
|