@vishal2612200/agentpack 0.3.25 → 0.3.27

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
@@ -195,22 +195,22 @@ If results look noisy, tighten task text first, then add repo-specific generated
195
195
 
196
196
  ```bash
197
197
  agentpack status
198
- agentpack guard --agent auto --repair-stale --refresh-context
199
- agentpack migrate --path ~/src --discover --agent all
200
198
  agentpack doctor --agent all
199
+ agentpack pack --agent auto --task auto
200
+ agentpack migrate --path ~/src --discover --agent all
201
201
  agentpack explain --file path/to/file.py
202
202
  agentpack benchmark --sample-fixtures --misses
203
203
  agentpack global-repair-hooks
204
204
  agentpack repair --agent all
205
205
  ```
206
206
 
207
- `agentpack guard` is the executable pre-edit gate for non-MCP agents. It checks stale context, stale task metadata, repo snapshot drift, and stale installed rule files; with `--repair-stale --refresh-context`, it repairs and refreshes before returning success. `agentpack pack` also self-heals stale AgentPack rule blocks for older installs that still call `pack`.
207
+ `agentpack doctor` reports the installed version, available CLI commands, MCP registration, stale context, and exact repair or upgrade command. Generated agent rules use the available command surface; older installs fall back to `agentpack pack --task auto` instead of referencing commands they do not support.
208
208
 
209
209
  `agentpack migrate --discover` scans existing repo folders and applies the same integration repair across many repos after an upgrade.
210
210
 
211
211
  `agentpack global-repair-hooks` refreshes `~/.git-templates/hooks/`, reasserts `git config --global init.templateDir`, and repairs the current repo's `.git/hooks/` so older copied hooks switch over to the safe `GitAutoRepack` runner.
212
212
 
213
- Native host enforcement skeletons and blocked-status stubs live in `native-integrations/` in the source repo. They are marked `guarded`, not `enforced`, until host APIs expose mandatory pre-edit/pre-tool hooks.
213
+ Native host enforcement skeletons and blocked-status stubs live in `native-integrations/` in the source repo. They are marked `advisory`, not `enforced`, until host APIs expose mandatory pre-edit/pre-tool hooks.
214
214
 
215
215
  ## Optional watch and MCP workflows
216
216
 
package/bin/agentpack.js CHANGED
@@ -6,7 +6,7 @@ const fs = require("node:fs");
6
6
  const os = require("node:os");
7
7
  const path = require("node:path");
8
8
 
9
- const PACKAGE_VERSION = "0.3.25";
9
+ const PACKAGE_VERSION = "0.3.27";
10
10
  const PYPI_PACKAGE = `agentpack-cli==${PACKAGE_VERSION}`;
11
11
 
12
12
  function compareVersions(left, right) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vishal2612200/agentpack",
3
- "version": "0.3.25",
3
+ "version": "0.3.27",
4
4
  "description": "Local context engine for AI coding agents. Ranks relevant repo files and builds compact task-focused context packs for Claude Code, Codex, Cursor, Windsurf, MCP, and CI workflows.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/vishal2612200/agentpack#readme",