agentpack-cli 0.1.22__tar.gz → 0.1.23__tar.gz

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 (85) hide show
  1. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/PKG-INFO +17 -2
  2. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/README.md +16 -1
  3. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/pyproject.toml +1 -1
  4. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/__init__.py +1 -1
  5. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/.gitignore +0 -0
  6. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/LICENSE +0 -0
  7. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/__init__.py +0 -0
  8. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/antigravity.py +0 -0
  9. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/base.py +0 -0
  10. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/claude.py +0 -0
  11. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/codex.py +0 -0
  12. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/cursor.py +0 -0
  13. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/detect.py +0 -0
  14. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/generic.py +0 -0
  15. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/adapters/windsurf.py +0 -0
  16. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/__init__.py +0 -0
  17. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/dependency_graph.py +0 -0
  18. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/go_imports.py +0 -0
  19. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/java_imports.py +0 -0
  20. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/js_ts_imports.py +0 -0
  21. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/python_imports.py +0 -0
  22. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/ranking.py +0 -0
  23. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/rust_imports.py +0 -0
  24. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/symbols.py +0 -0
  25. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/analysis/tests.py +0 -0
  26. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/application/__init__.py +0 -0
  27. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/application/pack_service.py +0 -0
  28. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/cli.py +0 -0
  29. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/__init__.py +0 -0
  30. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/_shared.py +0 -0
  31. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/benchmark.py +0 -0
  32. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/claude_cmd.py +0 -0
  33. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/diff.py +0 -0
  34. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/doctor.py +0 -0
  35. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/explain.py +0 -0
  36. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/hook_cmd.py +0 -0
  37. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/init.py +0 -0
  38. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/install.py +0 -0
  39. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/mcp_cmd.py +0 -0
  40. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/monitor.py +0 -0
  41. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/pack.py +0 -0
  42. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/quickstart.py +0 -0
  43. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/scan.py +0 -0
  44. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/stats.py +0 -0
  45. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/status.py +0 -0
  46. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/summarize.py +0 -0
  47. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/commands/watch.py +0 -0
  48. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/__init__.py +0 -0
  49. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/bootstrap.py +0 -0
  50. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/cache.py +0 -0
  51. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/config.py +0 -0
  52. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/context_pack.py +0 -0
  53. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/diff.py +0 -0
  54. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/git.py +0 -0
  55. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/git_hooks.py +0 -0
  56. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/global_install.py +0 -0
  57. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/ignore.py +0 -0
  58. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/merkle.py +0 -0
  59. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/models.py +0 -0
  60. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/redactor.py +0 -0
  61. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/scanner.py +0 -0
  62. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/snapshot.py +0 -0
  63. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/token_estimator.py +0 -0
  64. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/core/vscode_tasks.py +0 -0
  65. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/data/agentpack.md +0 -0
  66. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/installers/__init__.py +0 -0
  67. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/installers/antigravity.py +0 -0
  68. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/installers/claude.py +0 -0
  69. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/installers/codex.py +0 -0
  70. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/installers/cursor.py +0 -0
  71. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/installers/windsurf.py +0 -0
  72. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/integrations/__init__.py +0 -0
  73. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/integrations/git_hooks.py +0 -0
  74. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/integrations/global_install.py +0 -0
  75. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/integrations/vscode_tasks.py +0 -0
  76. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/mcp_server.py +0 -0
  77. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/renderers/__init__.py +0 -0
  78. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/renderers/compact.py +0 -0
  79. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/renderers/markdown.py +0 -0
  80. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/renderers/receipts.py +0 -0
  81. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/session/__init__.py +0 -0
  82. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/session/state.py +0 -0
  83. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/summaries/__init__.py +0 -0
  84. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/summaries/base.py +0 -0
  85. {agentpack_cli-0.1.22 → agentpack_cli-0.1.23}/src/agentpack/summaries/offline.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentpack-cli
3
- Version: 0.1.22
3
+ Version: 0.1.23
4
4
  Summary: Task-aware context packing for AI coding agents — Claude, Cursor, Windsurf, Codex, and Antigravity
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -44,7 +44,7 @@ Description-Content-Type: text/markdown
44
44
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
45
45
  [![CI](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml/badge.svg)](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml)
46
46
 
47
- > **Status: alpha (v0.1.22).** Works, tested, used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Not yet validated across a wide range of repos. API may change before 1.0.
47
+ > **Status: alpha (v0.1.23).** Works, tested, used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Not yet validated across a wide range of repos. API may change before 1.0.
48
48
  >
49
49
  > **Platform note:** macOS and Linux are fully supported. Windows support is not yet implemented (git hooks use POSIX shell; the Claude Code session hooks use `python3`/`rm -f`). Contributions welcome.
50
50
 
@@ -278,6 +278,17 @@ Requires Python 3.10+.
278
278
 
279
279
  > **PyPI note:** The package is `agentpack-cli` (the name `agentpack` was already taken). The CLI command is still `agentpack`.
280
280
 
281
+ ### npm wrapper
282
+
283
+ AgentPack can also be installed from npm:
284
+
285
+ ```bash
286
+ npm install -g @vishal2612200/agentpack
287
+ agentpack --version
288
+ ```
289
+
290
+ The npm package is a thin Node.js wrapper around the Python CLI. It requires Node.js 18+ and Python 3.10+, then installs the matching `agentpack-cli` PyPI package into a per-version virtual environment on first run. This keeps the implementation single-source while giving JavaScript-heavy teams a familiar install path.
291
+
281
292
  ---
282
293
 
283
294
  ## Start Once, Then Work Normally
@@ -1566,7 +1577,10 @@ Useful checks before opening a PR:
1566
1577
 
1567
1578
  ```bash
1568
1579
  pytest
1580
+ python -m ruff check src tests
1569
1581
  python -m build
1582
+ npm test --prefix npm
1583
+ (cd npm && npm pack --dry-run)
1570
1584
  agentpack benchmark --sample-fixtures --misses
1571
1585
  ```
1572
1586
 
@@ -1577,6 +1591,7 @@ Good contribution areas:
1577
1591
  - Better symbol extraction for Go, Rust, Java, and Kotlin
1578
1592
  - More precise import/dependency resolution for framework-heavy repos
1579
1593
  - Ranking regressions with `expected_files` cases that reproduce misses
1594
+ - npm wrapper improvements that preserve the Python CLI as the source of truth
1580
1595
 
1581
1596
  Please include tests for ranking changes. A good ranking PR usually adds one focused unit test and one scenario in `tests/test_ranking_evals.py`.
1582
1597
 
@@ -5,7 +5,7 @@
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
6
  [![CI](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml/badge.svg)](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml)
7
7
 
8
- > **Status: alpha (v0.1.22).** Works, tested, used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Not yet validated across a wide range of repos. API may change before 1.0.
8
+ > **Status: alpha (v0.1.23).** Works, tested, used in real sessions. Python and JavaScript/TypeScript are the best-supported languages. Not yet validated across a wide range of repos. API may change before 1.0.
9
9
  >
10
10
  > **Platform note:** macOS and Linux are fully supported. Windows support is not yet implemented (git hooks use POSIX shell; the Claude Code session hooks use `python3`/`rm -f`). Contributions welcome.
11
11
 
@@ -239,6 +239,17 @@ Requires Python 3.10+.
239
239
 
240
240
  > **PyPI note:** The package is `agentpack-cli` (the name `agentpack` was already taken). The CLI command is still `agentpack`.
241
241
 
242
+ ### npm wrapper
243
+
244
+ AgentPack can also be installed from npm:
245
+
246
+ ```bash
247
+ npm install -g @vishal2612200/agentpack
248
+ agentpack --version
249
+ ```
250
+
251
+ The npm package is a thin Node.js wrapper around the Python CLI. It requires Node.js 18+ and Python 3.10+, then installs the matching `agentpack-cli` PyPI package into a per-version virtual environment on first run. This keeps the implementation single-source while giving JavaScript-heavy teams a familiar install path.
252
+
242
253
  ---
243
254
 
244
255
  ## Start Once, Then Work Normally
@@ -1527,7 +1538,10 @@ Useful checks before opening a PR:
1527
1538
 
1528
1539
  ```bash
1529
1540
  pytest
1541
+ python -m ruff check src tests
1530
1542
  python -m build
1543
+ npm test --prefix npm
1544
+ (cd npm && npm pack --dry-run)
1531
1545
  agentpack benchmark --sample-fixtures --misses
1532
1546
  ```
1533
1547
 
@@ -1538,6 +1552,7 @@ Good contribution areas:
1538
1552
  - Better symbol extraction for Go, Rust, Java, and Kotlin
1539
1553
  - More precise import/dependency resolution for framework-heavy repos
1540
1554
  - Ranking regressions with `expected_files` cases that reproduce misses
1555
+ - npm wrapper improvements that preserve the Python CLI as the source of truth
1541
1556
 
1542
1557
  Please include tests for ranking changes. A good ranking PR usually adds one focused unit test and one scenario in `tests/test_ranking_evals.py`.
1543
1558
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agentpack-cli"
3
- version = "0.1.22"
3
+ version = "0.1.23"
4
4
  description = "Task-aware context packing for AI coding agents — Claude, Cursor, Windsurf, Codex, and Antigravity"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1,3 +1,3 @@
1
1
  """AgentPack — task-aware context packing for AI coding agents."""
2
2
 
3
- __version__ = "0.1.22"
3
+ __version__ = "0.1.23"
File without changes