agentloopkit 0.24.5 → 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 CHANGED
@@ -49,11 +49,19 @@ npx agentloopkit init
49
49
 
50
50
  `init` writes files into the current directory. Do not run it from `~` unless you intend to configure your home directory. `--dry-run` previews the file changes without writing them.
51
51
 
52
+ If you want AgentLoopKit for your local agent workflow but do not want to commit the generated harness:
53
+
54
+ ```bash
55
+ npx agentloopkit init --local-only
56
+ ```
57
+
58
+ `--local-only` writes the same files, then adds a marked block to this clone's `.git/info/exclude` for `.agentloop/`, `AGENTS.md`, `AGENTLOOP.md`, and `agentloop.config.json`. It does not edit `.gitignore`, global Git config, shell profiles, or files outside the current repo.
59
+
52
60
  Pin the current version when you need repeatable CI or team setup:
53
61
 
54
62
  ```bash
55
- npx --yes agentloopkit@0.24.5 version
56
- npx --yes agentloopkit@0.24.5 init
63
+ npx --yes agentloopkit@0.26.0 version
64
+ npx --yes agentloopkit@0.26.0 init
57
65
  ```
58
66
 
59
67
  Run the CLI after install:
@@ -76,6 +84,7 @@ npx agentloopkit badge
76
84
  npx agentloopkit ci-summary
77
85
  npx agentloopkit release-notes
78
86
  npx agentloopkit npm-status
87
+ npx agentloopkit mcp-server
79
88
  npx agentloopkit policy list
80
89
  npx agentloopkit policy show security
81
90
  npx agentloopkit policy status
@@ -116,6 +125,7 @@ pnpm build
116
125
  | `agentloop init` | Generate the repo harness and config |
117
126
  | `agentloop init --dry-run` | Preview generated files without writing them |
118
127
  | `agentloop init --force` | Allow initialization when the current directory is your home directory |
128
+ | `agentloop init --local-only` | Generate the harness but exclude it from this clone's git status |
119
129
  | `agentloop doctor` | Check setup health, template version, commands, git state, and risk categories |
120
130
  | `agentloop create-task` | Create a task contract in `.agentloop/tasks/` |
121
131
  | `agentloop task list` | List task contracts and show the pinned active task |
@@ -137,6 +147,7 @@ pnpm build
137
147
  | `agentloop ci-summary` | Summarize CI context and local AgentLoop evidence |
138
148
  | `agentloop release-notes` | Draft local release notes from changelog, git, task, and verification evidence |
139
149
  | `agentloop npm-status` | Check npm registry status without publishing |
150
+ | `agentloop mcp-server` | Start a read-only MCP stdio server for local AgentLoopKit state |
140
151
  | `agentloop policy list` | List local safety policy files |
141
152
  | `agentloop policy show <policy>` | Print a local safety policy without mutating files |
142
153
  | `agentloop policy status` | Compare local policy files with bundled templates |
@@ -384,7 +395,7 @@ See `docs/ci-summary.md`.
384
395
  ```bash
385
396
  agentloop release-notes
386
397
  agentloop release-notes --from v0.19.0 --to HEAD
387
- agentloop release-notes --release-version 0.24.5
398
+ agentloop release-notes --release-version 0.26.0
388
399
  agentloop release-notes --json
389
400
  agentloop release-notes --write
390
401
  ```
@@ -408,6 +419,18 @@ Use it after a publish attempt before saying npm has caught up. It runs `npm vie
408
419
 
409
420
  See `docs/npm-status.md`.
410
421
 
422
+ ## MCP Server
423
+
424
+ AgentLoopKit can expose existing repo evidence to MCP clients through a read-only stdio server:
425
+
426
+ ```bash
427
+ npx --yes agentloopkit@0.26.0 mcp-server
428
+ ```
429
+
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.
431
+
432
+ See `docs/mcp.md` for client configuration, tool names, and registry notes.
433
+
411
434
  <p align="center">
412
435
  <img src="https://raw.githubusercontent.com/abhiyoheswaran1/AgentLoopKit/main/docs/assets/readme/agentloopkit-verification.png" alt="AgentLoopKit verification report screenshot showing task context, passing command results, and reviewer handoff sections" width="100%">
413
436
  </p>
@@ -450,7 +473,19 @@ Use `agentloop check-gates --strict` as a review-evidence gate in pull request C
450
473
 
451
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.
452
475
 
453
- See `docs/github-actions.md`, `examples/github-actions/`, `examples/gitlab-ci/`, and `examples/buildkite/` for copy-pasteable workflows. Pin `agentloopkit@0.24.5` or a newer vetted release when reproducibility matters.
476
+ See `docs/github-actions.md`, `examples/github-actions/`, `examples/gitlab-ci/`, and `examples/buildkite/` for copy-pasteable workflows. Pin `agentloopkit@0.26.0` or a newer vetted release when reproducibility matters.
477
+
478
+ ## Other Install Channels
479
+
480
+ npm and npx remain the primary install path. AgentLoopKit also ships release assets and maintainer artifacts for:
481
+
482
+ - GitHub Releases: versioned tarballs for provenance and rollback.
483
+ - GitHub Action: a thin wrapper for `agentloop` commands in CI.
484
+ - Docker/GHCR: a minimal image that runs `agentloop`.
485
+ - Homebrew: a formula under `packaging/homebrew/` for the tap release flow.
486
+ - MCP Registry: read-only server metadata for MCP clients once the matching npm package is published.
487
+
488
+ See `docs/distribution-channels.md` for current commands and maintainer release steps.
454
489
 
455
490
  ## PR Summaries
456
491