@vishal2612200/agentpack 0.3.5 → 0.3.6
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 +8 -2
- package/bin/agentpack.js +1 -1
- package/package.json +1 -3
package/README.md
CHANGED
|
@@ -73,7 +73,9 @@ agentpack init --agent codex
|
|
|
73
73
|
agentpack init --agent antigravity
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
-
`agentpack init` creates local `.agentpack/` state
|
|
76
|
+
`agentpack init` creates local `.agentpack/` state, installs the selected integration when supported, seeds `.agentignore` with safe defaults, and imports obvious generated/noisy rules from git ignore sources. `agentpack pack` reads `.agentpack/task.md`, ranks relevant files, and writes the adapter-specific context output.
|
|
77
|
+
|
|
78
|
+
Keep task text concrete. Name feature, route, service, or file path. Broad repo-meta tasks such as `improve context pack quality` or `fix stats noise` can pull README or tool internals by keyword.
|
|
77
79
|
|
|
78
80
|
For a guided setup:
|
|
79
81
|
|
|
@@ -123,11 +125,15 @@ agentpack benchmark --public-repos --prove-targets --misses --public-table
|
|
|
123
125
|
## Daily workflow
|
|
124
126
|
|
|
125
127
|
```bash
|
|
126
|
-
printf '%s\n' "
|
|
128
|
+
printf '%s\n' "fix billing webhook retry handling in app/api/billing/route.ts" > .agentpack/task.md
|
|
127
129
|
agentpack pack
|
|
128
130
|
agentpack stats
|
|
129
131
|
```
|
|
130
132
|
|
|
133
|
+
If results look noisy, tighten task text first, then add repo-specific generated paths to `.agentignore` or run `agentpack ignore sync`.
|
|
134
|
+
|
|
135
|
+
`agentpack ignore sync` refreshes imported generated/noisy rules from the root `.gitignore`, nested `.gitignore` files, `.git/info/exclude`, and your global git ignore while leaving your manual `.agentignore` entries alone.
|
|
136
|
+
|
|
131
137
|
## Useful commands
|
|
132
138
|
|
|
133
139
|
```bash
|
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.6";
|
|
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.6",
|
|
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",
|
|
@@ -36,7 +36,6 @@
|
|
|
36
36
|
"prompt-context",
|
|
37
37
|
"mcp",
|
|
38
38
|
"ci",
|
|
39
|
-
"claude-code",
|
|
40
39
|
"codex",
|
|
41
40
|
"cursor",
|
|
42
41
|
"windsurf",
|
|
@@ -45,7 +44,6 @@
|
|
|
45
44
|
"llm",
|
|
46
45
|
"context",
|
|
47
46
|
"packing",
|
|
48
|
-
"claude",
|
|
49
47
|
"npm",
|
|
50
48
|
"cli"
|
|
51
49
|
]
|