@mundy/agrep 0.1.4 → 0.1.5

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.
Files changed (3) hide show
  1. package/README.md +3 -3
  2. package/bin.js +2 -2
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # agrep
2
2
 
3
- grep your AI coding agents' chat history Claude Code, Codex, opencode, Antigravity,
4
- Kimi CLI, Cline straight from the shell. One searchable cross-agent history, a context-window command
3
+ grep your AI coding agents' chat history - Claude Code, Codex, opencode, Antigravity,
4
+ Kimi CLI, Cline - straight from the shell. One searchable cross-agent history, a context-window command
5
5
  (`agrep around`) built for agents and humans, native session resume, and a local web
6
6
  explorer (`agrep ui`).
7
7
 
@@ -20,7 +20,7 @@ Global npm installs also try to preinstall the matching PyPI tool with
20
20
  entrypoint, so `agrep` works even if uv's tool directory is not on PATH.
21
21
 
22
22
  The npm shim pins the matching PyPI version under the hood, so npm and PyPI releases
23
- do not drift. Prefer the direct route? `uv tool install agrep==0.1.4` same thing,
23
+ do not drift. Prefer the direct route? `uv tool install agrep==0.1.5` - same thing,
24
24
  no node in the middle.
25
25
 
26
26
  Full docs: https://github.com/dannyisbad/agrep
package/bin.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  // agrep is a python package with a bundled rust binary; this npm shim just finds a
3
- // runner for it. uv is preferred because uvx manages python itself it works on a
3
+ // runner for it. uv is preferred because uvx manages python itself - it works on a
4
4
  // box with no python at all. pipx is the fallback. If neither exists we print the
5
5
  // one-liner that fixes it instead of half-installing anything ourselves.
6
6
  //
@@ -40,7 +40,7 @@ if (has("uv")) {
40
40
  run("pipx", ["run", "--spec", SPEC, "agrep", ...args]);
41
41
  } else {
42
42
  console.error(
43
- "agrep needs uv (or pipx) to run it's a python package with a bundled rust binary.\n" +
43
+ "agrep needs uv (or pipx) to run - it's a python package with a bundled rust binary.\n" +
44
44
  "install uv (one line, manages python itself):\n\n" +
45
45
  (process.platform === "win32"
46
46
  ? ' powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mundy/agrep",
3
- "version": "0.1.4",
4
- "description": "grep your AI coding agents' chat history (Claude Code, Codex, opencode, Antigravity, Kimi, Cline) npm shim that runs the real package via uv/pipx",
3
+ "version": "0.1.5",
4
+ "description": "grep your AI coding agents' chat history (Claude Code, Codex, opencode, Antigravity, Kimi, Cline) - npm shim that runs the real package via uv/pipx",
5
5
  "bin": { "agrep": "bin.js" },
6
6
  "scripts": {
7
7
  "postinstall": "node postinstall.js"