@vishal2612200/agentpack 0.3.0 → 0.3.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 +15 -3
- package/bin/agentpack.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -81,14 +81,17 @@ agentpack repair --agent all
|
|
|
81
81
|
|
|
82
82
|
## Optional watch and MCP workflows
|
|
83
83
|
|
|
84
|
-
The `watch` and `mcp` commands use optional Python dependencies. If you need those workflows today,
|
|
84
|
+
The `watch` and `mcp` commands use optional Python dependencies. If you need those workflows today, add the Python extras to a `pipx` install or use a virtual environment. Avoid global `pip3 install` on system-managed Python: many macOS/Linux distributions block it with PEP 668's `externally-managed-environment`.
|
|
85
85
|
|
|
86
86
|
```bash
|
|
87
|
-
|
|
87
|
+
pipx install agentpack-cli
|
|
88
|
+
pipx inject agentpack-cli "agentpack-cli[all]"
|
|
88
89
|
agentpack watch
|
|
89
90
|
agentpack mcp
|
|
90
91
|
```
|
|
91
92
|
|
|
93
|
+
Install `pipx` with your OS package manager first if needed: `brew install pipx`, `sudo apt install pipx`, `sudo dnf install pipx`, or `sudo pacman -S python-pipx`; then run `pipx ensurepath`.
|
|
94
|
+
|
|
92
95
|
The npm wrapper still works well for the core setup, pack, status, doctor, explain, repair, and benchmark commands.
|
|
93
96
|
|
|
94
97
|
## Python selection
|
|
@@ -129,7 +132,16 @@ Install Python 3.10+ or set `AGENTPACK_PYTHON=/path/to/python3`.
|
|
|
129
132
|
|
|
130
133
|
`failed to install agentpack-cli==<version>`
|
|
131
134
|
|
|
132
|
-
Check that
|
|
135
|
+
Check that Python can reach PyPI. Corporate networks may need standard package index or proxy configuration. Avoid global `pip3 install` on system-managed Python; many macOS/Linux distributions block it with PEP 668's `externally-managed-environment`. Use `pipx` or a virtual environment for direct Python installs.
|
|
136
|
+
|
|
137
|
+
Optional Python `watch` and `mcp` extras can be added to a `pipx` install:
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
pipx install agentpack-cli
|
|
141
|
+
pipx inject agentpack-cli "agentpack-cli[all]"
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
Install `pipx` with your OS package manager first if needed: `brew install pipx`, `sudo apt install pipx`, `sudo dnf install pipx`, or `sudo pacman -S python-pipx`; then run `pipx ensurepath`.
|
|
133
145
|
|
|
134
146
|
`agentpack: command not found`
|
|
135
147
|
|
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.
|
|
9
|
+
const PACKAGE_VERSION = "0.3.1";
|
|
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.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Task-aware context packing for AI coding agents. npm wrapper for the Python AgentPack CLI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/vishal2612200/agentpack#readme",
|