@vishal2612200/agentpack 0.3.14 → 0.3.16
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 +20 -1
- package/bin/agentpack.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -25,12 +25,31 @@ 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.16).** 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
|
>
|
|
32
32
|
> **Name note:** PyPI package is `agentpack-cli`, npm package is `@vishal2612200/agentpack`, and the command is `agentpack`. This project is unrelated to AgentPack dataset papers or other repos with the same name.
|
|
33
33
|
|
|
34
|
+
## Latest Update
|
|
35
|
+
|
|
36
|
+
`0.3.16` bundles `watchdog` in normal installs so `agentpack watch` uses native
|
|
37
|
+
filesystem events by default instead of polling after `pipx`, `pip`, or npm
|
|
38
|
+
wrapper installation.
|
|
39
|
+
|
|
40
|
+
`0.3.15` improves the skill router with richer metadata, confidence thresholds,
|
|
41
|
+
negative triggers, diversity-aware recommendations, MCP `get_skill`, and local
|
|
42
|
+
`agentpack skills feedback` outcome records.
|
|
43
|
+
|
|
44
|
+
`0.3.14` expands `agentpack learn` from a local post-task summary into a
|
|
45
|
+
developer learning layer: provider-command enrichment, static dashboard export,
|
|
46
|
+
team lesson export, feedback-aware skill memory, and practice drills. The npm
|
|
47
|
+
wrapper exposes the same Python CLI, so JavaScript teams can run:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
npx @vishal2612200/agentpack learn --dashboard --team-export
|
|
51
|
+
```
|
|
52
|
+
|
|
34
53
|
## Before vs After
|
|
35
54
|
|
|
36
55
|
Without AgentPack, a cold coding-agent session often starts with manual repo orientation:
|
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.16";
|
|
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.16",
|
|
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",
|