agentloopkit 0.24.4 → 0.24.5

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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -52,8 +52,8 @@ npx agentloopkit init
52
52
  Pin the current version when you need repeatable CI or team setup:
53
53
 
54
54
  ```bash
55
- npx --yes agentloopkit@0.24.4 version
56
- npx --yes agentloopkit@0.24.4 init
55
+ npx --yes agentloopkit@0.24.5 version
56
+ npx --yes agentloopkit@0.24.5 init
57
57
  ```
58
58
 
59
59
  Run the CLI after install:
@@ -87,10 +87,10 @@ npx agentloopkit completion powershell
87
87
  ```
88
88
 
89
89
  <p align="center">
90
- <img src="https://raw.githubusercontent.com/abhiyoheswaran1/AgentLoopKit/main/docs/assets/readme/agentloopkit-cli.gif" alt="Terminal demo running AgentLoopKit init, task contracts, active task status, task-linked verify, handoff, reports, badges, release notes, gates, and task archive commands" width="100%">
90
+ <img src="https://raw.githubusercontent.com/abhiyoheswaran1/AgentLoopKit/main/docs/assets/readme/agentloopkit-cli.gif" alt="Terminal demo running AgentLoopKit init, doctor, task contract creation, task status, verification, handoff, gates, HTML report, and badge commands" width="100%">
91
91
  </p>
92
92
 
93
- The VHS demo is generated from committed sources in this repository.
93
+ The terminal demo is generated from committed VHS sources in this repository.
94
94
 
95
95
  Pinned team usage:
96
96
 
@@ -384,7 +384,7 @@ See `docs/ci-summary.md`.
384
384
  ```bash
385
385
  agentloop release-notes
386
386
  agentloop release-notes --from v0.19.0 --to HEAD
387
- agentloop release-notes --release-version 0.24.4
387
+ agentloop release-notes --release-version 0.24.5
388
388
  agentloop release-notes --json
389
389
  agentloop release-notes --write
390
390
  ```
@@ -450,7 +450,7 @@ Use `agentloop check-gates --strict` as a review-evidence gate in pull request C
450
450
 
451
451
  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
452
 
453
- See `docs/github-actions.md`, `examples/github-actions/`, `examples/gitlab-ci/`, and `examples/buildkite/` for copy-pasteable workflows. Pin `agentloopkit@0.24.4` or a newer vetted release when reproducibility matters.
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.
454
454
 
455
455
  ## PR Summaries
456
456
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentloopkit",
3
- "version": "0.24.4",
3
+ "version": "0.24.5",
4
4
  "description": "A drop-in engineering loop for coding agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -46,6 +46,7 @@
46
46
  "test": "vitest run",
47
47
  "test:watch": "vitest",
48
48
  "check:links": "tsx scripts/check-markdown-links.ts",
49
+ "smoke:release": "node scripts/smoke-packed-release.mjs",
49
50
  "typecheck": "tsc --noEmit",
50
51
  "lint": "eslint .",
51
52
  "format": "prettier --write .",