@vishal2612200/agentpack 0.3.8 → 0.3.9

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
@@ -5,7 +5,7 @@
5
5
  [![PyPI core](https://img.shields.io/pypi/v/agentpack-cli.svg)](https://pypi.org/project/agentpack-cli/)
6
6
  [![CI](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml/badge.svg)](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml)
7
7
 
8
- > **Status: alpha (v0.3.4).** Works, tested, used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Public benchmark proof exists for the current suite, but broader repo coverage is still growing. API may change before 1.0.
8
+ > **Status: alpha (v0.3.9).** Works, tested, used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Public benchmark proof exists for the current suite, but broader repo coverage is still growing. API may change before 1.0.
9
9
  >
10
10
  > **Platform note:** macOS, Linux, and Windows are supported. Windows support targets PowerShell plus Git for Windows.
11
11
 
@@ -143,6 +143,7 @@ agentpack migrate --path ~/src --discover --agent all
143
143
  agentpack doctor --agent all
144
144
  agentpack explain --file path/to/file.py
145
145
  agentpack benchmark --sample-fixtures --misses
146
+ agentpack global-repair-hooks
146
147
  agentpack repair --agent all
147
148
  ```
148
149
 
@@ -150,6 +151,8 @@ agentpack repair --agent all
150
151
 
151
152
  `agentpack migrate --discover` scans existing repo folders and applies the same integration repair across many repos after an upgrade.
152
153
 
154
+ `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.
155
+
153
156
  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.
154
157
 
155
158
  ## Optional watch and MCP workflows
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.8";
9
+ const PACKAGE_VERSION = "0.3.9";
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.8",
3
+ "version": "0.3.9",
4
4
  "description": "npm launcher for the Python AgentPack CLI, a local context engine for AI coding agents that ranks relevant files and builds task-focused context packs.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/vishal2612200/agentpack#readme",