agentloopkit 0.24.0 → 0.24.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 CHANGED
@@ -46,19 +46,13 @@ npx agentloopkit init
46
46
  npx agentloopkit init --dry-run
47
47
  ```
48
48
 
49
- Latest GitHub release: `v0.24.0`. npm still serves `0.1.1`: the next npm publish should catch up once to `0.24.0`; after that, releases return to normal sequential semver. Local `npm whoami` currently returns `E401`, so npm publish is blocked from this shell.
50
-
51
- See [docs/release-status.md](docs/release-status.md) for the current GitHub/npm status and update rules.
52
-
53
- Until npm catches up, run the current GitHub release tarball directly:
49
+ Pin the current version when you need repeatable CI or team setup:
54
50
 
55
51
  ```bash
56
- npx --yes --package https://github.com/abhiyoheswaran1/AgentLoopKit/releases/download/v0.24.0/agentloopkit-0.24.0.tgz agentloop version
57
- npx --yes --package https://github.com/abhiyoheswaran1/AgentLoopKit/releases/download/v0.24.0/agentloopkit-0.24.0.tgz agentloop init
52
+ npx --yes agentloopkit@0.24.1 version
53
+ npx --yes agentloopkit@0.24.1 init
58
54
  ```
59
55
 
60
- The npm version jump has one reason: GitHub releases already exist for the intermediate AgentLoopKit versions between the npm-published `0.1.1` package and the current `v0.24.0` source line. Publishing older numbers from current `main` would create npm packages that do not match their GitHub tags. Once npm authentication or trusted publishing works, the next npm publish should ship `0.24.0`; future releases should then continue with normal sequential semver.
61
-
62
56
  Run the CLI after install:
63
57
 
64
58
  ```bash
@@ -93,7 +87,7 @@ npx agentloopkit completion powershell
93
87
  <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%">
94
88
  </p>
95
89
 
96
- The VHS demo runs the local built CLI so the command flow matches this repository even when npm is behind.
90
+ The VHS demo is generated from committed sources in this repository.
97
91
 
98
92
  Pinned team usage:
99
93
 
@@ -138,7 +132,7 @@ pnpm build
138
132
  | `agentloop badge` | Write a local SVG evidence badge |
139
133
  | `agentloop ci-summary` | Summarize CI context and local AgentLoop evidence |
140
134
  | `agentloop release-notes` | Draft local release notes from changelog, git, task, and verification evidence |
141
- | `agentloop npm-status` | Check npm registry catch-up status without publishing |
135
+ | `agentloop npm-status` | Check npm registry status without publishing |
142
136
  | `agentloop policy list` | List local safety policy files |
143
137
  | `agentloop policy show <policy>` | Print a local safety policy without mutating files |
144
138
  | `agentloop policy status` | Compare local policy files with bundled templates |
@@ -452,7 +446,7 @@ Use `agentloop check-gates --strict` as a review-evidence gate in pull request C
452
446
 
453
447
  CI-generated verification reports include GitHub Actions provenance when available, so reviewers can trace an artifact back to the workflow run that created it.
454
448
 
455
- See `docs/github-actions.md`, `examples/github-actions/`, `examples/gitlab-ci/`, and `examples/buildkite/` for copy-pasteable workflows. Until npm catches up, the examples pin the latest public GitHub release tarball. Current source moves to a new tarball when the next GitHub release is cut.
449
+ See `docs/github-actions.md`, `examples/github-actions/`, `examples/gitlab-ci/`, and `examples/buildkite/` for copy-pasteable workflows. Pin `agentloopkit@0.24.1` or a newer vetted release when reproducibility matters.
456
450
 
457
451
  ## PR Summaries
458
452
 
@@ -529,18 +523,6 @@ See `docs/stack-recipes.md` for Next.js, React/Vite, Remix, SvelteKit, Node API,
529
523
 
530
524
  See `ROADMAP.md`.
531
525
 
532
- ## Publishing Status
533
-
534
- AgentLoopKit is published on npm as `agentloopkit`, but npm currently serves `0.1.1`. GitHub release `v0.24.0` carries task-linked verification reports, failed-verification summaries, the guarded `--task` path behavior, refreshed README visuals, PowerShell shell completions, and the read-only `npm-status` catch-up check. npm still needs account authentication or trusted-publishing repair before a catch-up release lands.
535
-
536
- Do not publish stale older versions from current `main`. If `CHANGELOG.md` has real entries under `Unreleased`, the prepublish guard blocks npm publish until release metadata is prepared.
537
-
538
- The npm version jump is intentional. The skipped npm numbers already exist as public GitHub release candidates while npm publishing was blocked, so the next npm publish should ship the current release line rather than backfilling old source snapshots.
539
-
540
- The repository includes a GitHub Actions publish workflow for npm trusted publishing after the package is configured on npm. The workflow runs checks before `npm publish` and skips publish when the version already exists.
541
-
542
- See `docs/launch-checklist.md` before publishing. See `docs/npm-status.md`, `docs/release-checklist-example.md`, and `examples/release-checklist/` for registry checks and compact maintainer handoffs when GitHub is current but npm is still behind.
543
-
544
526
  ## Contributing
545
527
 
546
528
  See `CONTRIBUTING.md` for local setup and PR expectations. Maintainers can use `docs/contributor-playbook.md` for copyable good-first issue examples.
package/dist/cli/index.js CHANGED
@@ -198,7 +198,7 @@ async function listFilesRecursive(root, options = {}) {
198
198
  const files = [];
199
199
  async function walk(current) {
200
200
  if (!await pathExists(current)) return;
201
- const entries = await readdir(current, { withFileTypes: true });
201
+ const entries = await readdir(current, { withFileTypes: true }).catch(() => []);
202
202
  for (const entry of entries) {
203
203
  if (ignore.has(entry.name)) continue;
204
204
  const absolute = path2.join(current, entry.name);