@vishal2612200/agentpack 0.3.20 → 0.3.22
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 +9 -9
- package/bin/agentpack.js +1 -1
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
[](https://pypi.org/project/agentpack-cli/)
|
|
6
6
|
[](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml)
|
|
7
7
|
|
|
8
|
-
**Local
|
|
8
|
+
**Local context engine for AI coding agents.**
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
AgentPack ranks relevant repository files and builds compact task-focused context packs for Claude Code, Codex, Cursor, Windsurf, Antigravity, MCP tools, CI jobs, and markdown-based LLM workflows.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
It analyzes your repo locally, compresses selected context into a token budget, and gives coding agents a ranked starting map before they spend tool calls rediscovering routes, services, tests, configs, and repo rules.
|
|
13
13
|
|
|
14
14
|
Use it when the repo is too large to paste and you want a repeatable context map around likely relevant routes, services, tests, configs, and recent changes.
|
|
15
15
|
|
|
@@ -25,7 +25,7 @@ npx @vishal2612200/agentpack route --task "fix auth token expiry"
|
|
|
25
25
|
|
|
26
26
|

|
|
27
27
|
|
|
28
|
-
> **Status: alpha (v0.3.
|
|
28
|
+
> **Status: alpha (v0.3.22).** Works, tested, and used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Current benchmarks are useful regression checks, not broad proof that AgentPack improves coding-agent success. API may change before 1.0.
|
|
29
29
|
>
|
|
30
30
|
> **Platform note:** macOS, Linux, and Windows are supported. Windows support targets PowerShell plus Git for Windows.
|
|
31
31
|
>
|
|
@@ -33,10 +33,10 @@ npx @vishal2612200/agentpack route --task "fix auth token expiry"
|
|
|
33
33
|
|
|
34
34
|
## Latest Update
|
|
35
35
|
|
|
36
|
-
`0.3.
|
|
37
|
-
|
|
38
|
-
the
|
|
39
|
-
teams can run:
|
|
36
|
+
`0.3.22` is a benchmark recall release. It documents the expanded public-suite
|
|
37
|
+
baseline at **66.0% recall / 51.1% token precision** across 108 scored public
|
|
38
|
+
cases, keeps the remaining config/build risk visible, and exposes the same
|
|
39
|
+
Python CLI through the npm wrapper so JavaScript teams can run:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
42
|
npx @vishal2612200/agentpack learn --dashboard --team-export
|
|
@@ -108,7 +108,7 @@ agentpack --version
|
|
|
108
108
|
Requirements:
|
|
109
109
|
|
|
110
110
|
- Node.js 18+
|
|
111
|
-
- Python 3.10
|
|
111
|
+
- Python 3.10+; tested on Python 3.10-3.14
|
|
112
112
|
- macOS, Linux, or Windows with PowerShell plus Git for Windows
|
|
113
113
|
|
|
114
114
|
## First project
|
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.22";
|
|
10
10
|
const PYPI_PACKAGE = `agentpack-cli==${PACKAGE_VERSION}`;
|
|
11
11
|
|
|
12
12
|
function compareVersions(left, right) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vishal2612200/agentpack",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.3.22",
|
|
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",
|
|
7
7
|
"repository": {
|
|
@@ -40,7 +40,10 @@
|
|
|
40
40
|
"context-router",
|
|
41
41
|
"context-packing",
|
|
42
42
|
"prompt-context",
|
|
43
|
+
"task-focused-context",
|
|
43
44
|
"reduce-token-usage",
|
|
45
|
+
"local-first",
|
|
46
|
+
"repo-map",
|
|
44
47
|
"mcp",
|
|
45
48
|
"ci",
|
|
46
49
|
"codex",
|