@vishal2612200/agentpack 0.3.20 → 0.3.21

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
@@ -25,7 +25,7 @@ npx @vishal2612200/agentpack route --task "fix auth token expiry"
25
25
 
26
26
  ![AgentPack route demo](https://raw.githubusercontent.com/vishal2612200/agentpack/main/docs/assets/agentpack-route-demo.svg)
27
27
 
28
- > **Status: alpha (v0.3.20).** 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.
28
+ > **Status: alpha (v0.3.21).** 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.20` documents how AgentPack scans, ranks, compresses, caches, retrieves,
37
- and routes context, adds clearer skill-routing benchmark guidance, and polishes
38
- the local dashboard. The npm wrapper exposes the same Python CLI, so JavaScript
39
- teams can run:
36
+ `0.3.21` is a benchmark trust release. It documents the expanded public-suite
37
+ baseline, improves benchmark diagnostics, keeps the release goal honest at
38
+ 65%+ recall with 50%+ token precision, and exposes the same Python CLI through
39
+ the npm wrapper so JavaScript teams can run:
40
40
 
41
41
  ```bash
42
42
  npx @vishal2612200/agentpack learn --dashboard --team-export
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.20";
9
+ const PACKAGE_VERSION = "0.3.21";
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.20",
3
+ "version": "0.3.21",
4
4
  "description": "npm launcher for AgentPack, a local MCP context router for Claude Code, Codex, Cursor, and AI coding agents.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/vishal2612200/agentpack#readme",