agentpack-cli 0.3.23__tar.gz → 0.3.25__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 (162) hide show
  1. agentpack_cli-0.3.25/PKG-INFO +334 -0
  2. agentpack_cli-0.3.25/README.md +287 -0
  3. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/pyproject.toml +1 -1
  4. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/__init__.py +1 -1
  5. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/cli.py +2 -0
  6. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/ci_cmd.py +3 -1
  7. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/dev_check.py +1 -1
  8. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/release_check.py +128 -10
  9. agentpack_cli-0.3.25/src/agentpack/commands/upgrade.py +38 -0
  10. agentpack_cli-0.3.25/src/agentpack/data/codex_plugin/.codex-plugin/plugin.json +36 -0
  11. agentpack_cli-0.3.25/src/agentpack/data/codex_plugin/skills/agentpack-pack.md +30 -0
  12. agentpack_cli-0.3.25/src/agentpack/data/codex_plugin/skills/agentpack-refresh.md +29 -0
  13. agentpack_cli-0.3.25/src/agentpack/data/codex_plugin/skills/agentpack-review.md +32 -0
  14. agentpack_cli-0.3.25/src/agentpack/data/codex_plugin/skills/agentpack-route.md +24 -0
  15. agentpack_cli-0.3.25/src/agentpack/data/codex_plugin/skills/agentpack.md +29 -0
  16. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/installers/codex.py +62 -0
  17. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/integrations/agents.py +5 -1
  18. agentpack_cli-0.3.23/PKG-INFO +0 -547
  19. agentpack_cli-0.3.23/README.md +0 -500
  20. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/.gitignore +0 -0
  21. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/LICENSE +0 -0
  22. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/__init__.py +0 -0
  23. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/antigravity.py +0 -0
  24. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/base.py +0 -0
  25. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/claude.py +0 -0
  26. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/codex.py +0 -0
  27. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/cursor.py +0 -0
  28. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/detect.py +0 -0
  29. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/generic.py +0 -0
  30. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/adapters/windsurf.py +0 -0
  31. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/__init__.py +0 -0
  32. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/dependency_graph.py +0 -0
  33. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/go_imports.py +0 -0
  34. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/java_imports.py +0 -0
  35. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/js_ts_imports.py +0 -0
  36. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/monorepo.py +0 -0
  37. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/naming_signals.py +0 -0
  38. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/python_ast.py +0 -0
  39. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/python_imports.py +0 -0
  40. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/ranking.py +0 -0
  41. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/repo_map.py +0 -0
  42. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/role_inference.py +0 -0
  43. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/rust_imports.py +0 -0
  44. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/symbols.py +0 -0
  45. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/task_classifier.py +0 -0
  46. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/analysis/tests.py +0 -0
  47. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/application/__init__.py +0 -0
  48. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/application/pack_service.py +0 -0
  49. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/__init__.py +0 -0
  50. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/_shared.py +0 -0
  51. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/benchmark.py +0 -0
  52. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/claude_cmd.py +0 -0
  53. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/compress_output.py +0 -0
  54. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/dashboard.py +0 -0
  55. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/diagnose_selection.py +0 -0
  56. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/diff.py +0 -0
  57. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/doctor.py +0 -0
  58. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/eval_cmd.py +0 -0
  59. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/explain.py +0 -0
  60. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/guard.py +0 -0
  61. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/hook_cmd.py +0 -0
  62. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/ignore_cmd.py +0 -0
  63. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/init.py +0 -0
  64. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/install.py +0 -0
  65. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/learn.py +0 -0
  66. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/mcp_cmd.py +0 -0
  67. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/memory.py +0 -0
  68. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/migrate.py +0 -0
  69. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/monitor.py +0 -0
  70. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/next_cmd.py +0 -0
  71. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/pack.py +0 -0
  72. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/perf.py +0 -0
  73. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/quickstart.py +0 -0
  74. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/release_cmd.py +0 -0
  75. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/repair.py +0 -0
  76. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/retrieve.py +0 -0
  77. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/route.py +0 -0
  78. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/scan.py +0 -0
  79. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/skills.py +0 -0
  80. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/start_cmd.py +0 -0
  81. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/state_cmd.py +0 -0
  82. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/stats.py +0 -0
  83. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/status.py +0 -0
  84. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/summarize.py +0 -0
  85. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/task_cmd.py +0 -0
  86. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/threads.py +0 -0
  87. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/tune.py +0 -0
  88. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/verify_wheel.py +0 -0
  89. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/watch.py +0 -0
  90. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/workflow_cmd.py +0 -0
  91. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/commands/wrap.py +0 -0
  92. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/__init__.py +0 -0
  93. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/bootstrap.py +0 -0
  94. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/cache.py +0 -0
  95. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/changed_paths.py +0 -0
  96. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/config.py +0 -0
  97. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/context_pack.py +0 -0
  98. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/diff.py +0 -0
  99. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/evals.py +0 -0
  100. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/execution_state.py +0 -0
  101. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/git.py +0 -0
  102. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/git_hooks.py +0 -0
  103. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/global_install.py +0 -0
  104. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/ignore.py +0 -0
  105. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/loop_protocol.py +0 -0
  106. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/merkle.py +0 -0
  107. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/models.py +0 -0
  108. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/modes.py +0 -0
  109. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/pack_registry.py +0 -0
  110. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/redactor.py +0 -0
  111. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/scanner.py +0 -0
  112. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/snapshot.py +0 -0
  113. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/task_freshness.py +0 -0
  114. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/thread_context.py +0 -0
  115. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/token_estimator.py +0 -0
  116. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/core/vscode_tasks.py +0 -0
  117. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/dashboard/__init__.py +0 -0
  118. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/dashboard/collectors.py +0 -0
  119. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/dashboard/models.py +0 -0
  120. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/dashboard/renderers.py +0 -0
  121. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/data/agentpack.md +0 -0
  122. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/installers/__init__.py +0 -0
  123. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/installers/antigravity.py +0 -0
  124. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/installers/claude.py +0 -0
  125. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/installers/cursor.py +0 -0
  126. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/installers/windsurf.py +0 -0
  127. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/integrations/__init__.py +0 -0
  128. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/integrations/git_hooks.py +0 -0
  129. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/integrations/global_install.py +0 -0
  130. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/integrations/platform.py +0 -0
  131. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/integrations/vscode_tasks.py +0 -0
  132. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/__init__.py +0 -0
  133. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/collector.py +0 -0
  134. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/extractor.py +0 -0
  135. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/feedback.py +0 -0
  136. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/lesson_ranker.py +0 -0
  137. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/models.py +0 -0
  138. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/provider.py +0 -0
  139. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/quality.py +0 -0
  140. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/renderers.py +0 -0
  141. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/learning/skill_map.py +0 -0
  142. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/mcp_server.py +0 -0
  143. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/output_compression/__init__.py +0 -0
  144. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/output_compression/core.py +0 -0
  145. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/renderers/__init__.py +0 -0
  146. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/renderers/compact.py +0 -0
  147. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/renderers/markdown.py +0 -0
  148. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/renderers/receipts.py +0 -0
  149. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/router/__init__.py +0 -0
  150. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/router/discovery.py +0 -0
  151. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/router/models.py +0 -0
  152. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/router/parser.py +0 -0
  153. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/router/prompt_builder.py +0 -0
  154. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/router/scoring.py +0 -0
  155. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/router/service.py +0 -0
  156. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/router/skills_index.py +0 -0
  157. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/session/__init__.py +0 -0
  158. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/session/events.py +0 -0
  159. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/session/state.py +0 -0
  160. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/summaries/__init__.py +0 -0
  161. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/summaries/base.py +0 -0
  162. {agentpack_cli-0.3.23 → agentpack_cli-0.3.25}/src/agentpack/summaries/offline.py +0 -0
@@ -0,0 +1,334 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentpack-cli
3
+ Version: 0.3.25
4
+ Summary: Local context engine for AI coding agents that ranks relevant repo files and builds compact task-focused context packs for Claude Code, Codex, Cursor, Windsurf, MCP, and CI workflows.
5
+ Project-URL: Homepage, https://github.com/vishal2612200/agentpack
6
+ Project-URL: Documentation, https://vishal2612200.github.io/agentpack/
7
+ Project-URL: Repository, https://github.com/vishal2612200/agentpack
8
+ Project-URL: Issues, https://github.com/vishal2612200/agentpack/issues
9
+ Project-URL: Changelog, https://github.com/vishal2612200/agentpack/blob/main/CHANGELOG.md
10
+ License: MIT
11
+ License-File: LICENSE
12
+ Keywords: ai,ai-agent,ai-coding-agents,antigravity,ci,claude-code,codex,coding-agent,context,context-engine,context-packing,context-router,cursor,developer-tools,llm,local-first,mcp,mcp-context-engine,packing,prompt-context,reduce-token-usage,repo-analysis,repo-context,repo-map,task-focused-context,windsurf
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Programming Language :: Python :: 3.14
21
+ Classifier: Topic :: Software Development :: Build Tools
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Requires-Python: >=3.10
24
+ Requires-Dist: pathspec>=0.12.1
25
+ Requires-Dist: pydantic>=2.0.0
26
+ Requires-Dist: rich>=13.0.0
27
+ Requires-Dist: tiktoken>=0.7.0
28
+ Requires-Dist: tomli-w>=1.0.0
29
+ Requires-Dist: tomli>=2.0.0; python_version < '3.11'
30
+ Requires-Dist: typer>=0.12.0
31
+ Requires-Dist: watchdog>=4.0.0
32
+ Provides-Extra: all
33
+ Requires-Dist: mcp>=1.0.0; extra == 'all'
34
+ Requires-Dist: watchdog>=4.0.0; extra == 'all'
35
+ Provides-Extra: dev
36
+ Requires-Dist: mypy; extra == 'dev'
37
+ Requires-Dist: pytest; extra == 'dev'
38
+ Requires-Dist: pytest-asyncio; extra == 'dev'
39
+ Requires-Dist: pytest-cov; extra == 'dev'
40
+ Requires-Dist: ruff; extra == 'dev'
41
+ Requires-Dist: tomli>=2.0.0; (python_version < '3.11') and extra == 'dev'
42
+ Provides-Extra: mcp
43
+ Requires-Dist: mcp>=1.0.0; extra == 'mcp'
44
+ Provides-Extra: watch
45
+ Requires-Dist: watchdog>=4.0.0; extra == 'watch'
46
+ Description-Content-Type: text/markdown
47
+
48
+ # AgentPack
49
+
50
+ <p align="center">
51
+ <img src="docs/assets/agentpack-symbol.png" alt="AgentPack symbol: a compact map pack for coding agents" width="180">
52
+ </p>
53
+
54
+ <p align="center">
55
+ <strong>Your agent starts cold. AgentPack hands it the map.</strong>
56
+ </p>
57
+
58
+ <p align="center">
59
+ <em>Ranked repo context for Codex, Claude Code, Cursor, Windsurf, Copilot, Cline, Kiro, OpenCode, MCP, CI, and markdown workflows.</em>
60
+ </p>
61
+
62
+ <p align="center">
63
+ <a href="https://pypi.org/project/agentpack-cli/"><img alt="PyPI version" src="https://img.shields.io/pypi/v/agentpack-cli.svg"></a>
64
+ <a href="https://pepy.tech/projects/agentpack-cli"><img alt="PyPI downloads" src="https://static.pepy.tech/personalized-badge/agentpack-cli?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLACK&right_color=GREEN&left_text=downloads"></a>
65
+ <a href="https://www.npmjs.com/package/@vishal2612200/agentpack"><img alt="npm version" src="https://img.shields.io/npm/v/@vishal2612200/agentpack.svg"></a>
66
+ <a href="https://www.npmjs.com/package/@vishal2612200/agentpack"><img alt="npm downloads" src="https://img.shields.io/npm/dm/@vishal2612200/agentpack.svg"></a>
67
+ <a href="https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml/badge.svg"></a>
68
+ <a href="https://opensource.org/licenses/MIT"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg"></a>
69
+ </p>
70
+
71
+ <p align="center">
72
+ <code>local preflight</code>
73
+ <code>ranked files</code>
74
+ <code>skill routing</code>
75
+ <code>warm cache</code>
76
+ <code>tests + commands</code>
77
+ <code>receipts</code>
78
+ <code>no cloud index</code>
79
+ </p>
80
+
81
+ ---
82
+
83
+ You know the pattern. You ask an agent to fix one bug. It `rg`s half the repo, opens the wrong files, misses the test, then rediscovers the architecture you already had.
84
+
85
+ AgentPack does the repo-orientation pass first.
86
+
87
+ ```text
88
+ agentpack route --task "fix auth token expiry"
89
+ -> files that probably matter
90
+ -> skills and rules that fit the task
91
+ -> tests that probably prove it
92
+ -> rules, commands, warnings
93
+ -> compact context before the agent edits
94
+ ```
95
+
96
+ AgentPack is not another coding agent. It is the local context engine you put in front of the agents you already use.
97
+
98
+ ## The Pitch
99
+
100
+ ```text
101
+ Without AgentPack: agent explores first, edits later.
102
+ With AgentPack: agent starts near the right files.
103
+ ```
104
+
105
+ No cloud index. No embeddings. No model calls for scan/rank/pack. Just local repo analysis, ranked context, and receipts for what got included or skipped.
106
+
107
+ It is not a repo dump. It is not a second brain. It is not a promise that your agent will be right.
108
+
109
+ It is a preflight map: likely files, likely tests, the right local skill or rule, commands, warnings, and a compact pack your agent can inspect before touching code.
110
+
111
+ The first run builds local summaries and repo signals. Later runs reuse that cache, so agents do less repeat discovery and spend more of their budget on the actual change.
112
+
113
+ ## Quick Start
114
+
115
+ ```bash
116
+ pipx install agentpack-cli
117
+ agentpack --version
118
+ ```
119
+
120
+ Inside your repo:
121
+
122
+ ```bash
123
+ agentpack init --yes
124
+ agentpack route --task "fix auth token expiry"
125
+ agentpack task set "fix auth token expiry"
126
+ agentpack pack --task auto
127
+ ```
128
+
129
+ Then give `.agentpack/context.md` to your agent, or let MCP-capable agents call AgentPack tools directly.
130
+
131
+ For one-shot use without installing:
132
+
133
+ ```bash
134
+ pipx run --spec agentpack-cli agentpack route --task "fix auth token expiry"
135
+ ```
136
+
137
+ For JavaScript/TypeScript projects, npm wrapper is available:
138
+
139
+ ```bash
140
+ npx @vishal2612200/agentpack --version
141
+ npx @vishal2612200/agentpack init --yes
142
+ npx @vishal2612200/agentpack task set "fix auth token expiry"
143
+ npx @vishal2612200/agentpack pack --task auto
144
+ ```
145
+
146
+ ## Quick Demo
147
+
148
+ Route task first:
149
+
150
+ ```bash
151
+ agentpack route --task "fix billing webhook retry handling"
152
+ ```
153
+
154
+ AgentPack returns likely files, tests, rules, commands, and warnings without changing source files.
155
+ It also recommends matching skills or agent rules when the task points at a known workflow, framework, language, or repo convention.
156
+
157
+ Build context pack next:
158
+
159
+ ```bash
160
+ agentpack task set "fix billing webhook retry handling"
161
+ agentpack pack --task auto
162
+ ```
163
+
164
+ AgentPack writes local context under `.agentpack/`, including selected files, omitted-file receipts, freshness checks, and token stats.
165
+ It reuses cached file summaries and snapshot metadata so repeated packs do not start from zero.
166
+
167
+ ## What AgentPack Gives Your Agent
168
+
169
+ - ranked files for current task
170
+ - skill and rule routing for current task
171
+ - likely tests and commands
172
+ - repo rules and agent instructions
173
+ - compact context pack under budget
174
+ - cached summaries for faster repeated orientation
175
+ - omitted-file receipts for review
176
+ - freshness warnings when task or git state changes
177
+ - local benchmark data when selected context misses real changed files
178
+
179
+ ## Proof So Far
180
+
181
+ AgentPack's current public benchmark checks one narrow thing: whether selected context overlaps with files actually changed in historical commits.
182
+
183
+ Current scoped result:
184
+
185
+ | Signal | Result | Developer meaning |
186
+ |---|---:|---|
187
+ | Public commit cases | 108 | real historical file-selection checks |
188
+ | Average recall | 66.0% | did AgentPack include files that mattered? |
189
+ | Token precision | 51.1% | how much of pack was useful instead of noise? |
190
+ | Pack p50 | 315 tokens | typical compact starting context |
191
+ | Pack p95 | 1,137 tokens | larger but still bounded starting context |
192
+
193
+ Source: [`benchmarks/results/2026-06-14-public.md`](benchmarks/results/2026-06-14-public.md). Benchmark guide: [`docs/benchmarking.md`](docs/benchmarking.md).
194
+
195
+ This is useful but not magic. It says AgentPack often gets meaningful files into a small pack. It does not claim every agent finishes faster or writes better code. Agent success A/B benchmarks should report task success, tool calls, token cost, and time-to-first-correct-file.
196
+
197
+ ## What We Want To Prove Next
198
+
199
+ AgentPack should eventually show:
200
+
201
+ - fewer agent file reads
202
+ - fewer tool calls
203
+ - faster first correct file
204
+ - lower total context cost
205
+ - equal or better task success
206
+
207
+ ## Works With
208
+
209
+ - Codex
210
+ - Claude Code
211
+ - Cursor
212
+ - Windsurf
213
+ - Antigravity
214
+ - MCP tools
215
+ - CI and PR review workflows
216
+ - generic markdown-based LLM workflows
217
+
218
+ See [`docs/integrations.md`](docs/integrations.md) and [`docs/mcp-context-engine.md`](docs/mcp-context-engine.md).
219
+
220
+ ### Agent And IDE Plugins
221
+
222
+ AgentPack can be used through thin plugin and IDE integration layers so agents start with ranked repo context. Codex has a packaged plugin skeleton; Cursor, Windsurf, Copilot, Cline, Kiro, OpenCode, Claude Code, Antigravity, and generic agents use the same local CLI/MCP engine through portable rules, hooks, and native integration stubs.
223
+
224
+ Inside Codex:
225
+
226
+ ```text
227
+ @agentpack-route fix auth token expiry
228
+ @agentpack-pack fix auth token expiry
229
+ @agentpack-review
230
+ ```
231
+
232
+ The plugin calls the local AgentPack engine. It does not upload code and does not turn AgentPack into a coding agent.
233
+
234
+ See [`docs/agent-plugins.md`](docs/agent-plugins.md) and [`docs/codex-plugin.md`](docs/codex-plugin.md).
235
+
236
+ ## How AgentPack Compares
237
+
238
+ | Tool type | What it does | AgentPack difference |
239
+ |---|---|---|
240
+ | Repo dumpers | Dump selected or all files | AgentPack ranks files by task |
241
+ | Coding agents | Edit code | AgentPack prepares context before editing |
242
+ | IDE search | Finds files on demand | AgentPack pre-routes before agent starts |
243
+ | Skills/rules | Change agent behavior | AgentPack routes the matching skill or rule for the task |
244
+ | Cache warmers | Speed repeated scans | AgentPack reuses summaries and snapshots inside the context workflow |
245
+
246
+ ## When To Use It
247
+
248
+ Use AgentPack when:
249
+
250
+ - repo is large or split across multiple packages
251
+ - monorepo structure makes file discovery expensive
252
+ - agents repeat same discovery work across tasks
253
+ - CI or PR review needs reproducible context
254
+ - agents waste tool calls opening irrelevant files
255
+ - tasks often miss tests, config, generated rules, or repo conventions
256
+ - teams have useful skills/rules but agents do not reliably pick the right one
257
+ - repeated agent sessions keep rediscovering the same repo structure
258
+
259
+ Do not use AgentPack when:
260
+
261
+ - repo is tiny
262
+ - question is one-shot and read-only
263
+ - you already know exact files to edit
264
+ - you need autonomous coding, not context preparation
265
+ - native IDE search is already enough for task
266
+
267
+ ## How It Works
268
+
269
+ AgentPack scans repo locally, builds and reuses file summaries, indexes local skills and rules, combines filename, git, config, dependency, summary, and benchmark signals, ranks likely files for task, then renders a compact context pack.
270
+
271
+ It can expose the same workflow through CLI, markdown files, MCP tools, hooks, plugins, and CI.
272
+
273
+ Deep dive: [`docs/architecture.md`](docs/architecture.md), [`docs/how-agentpack-works.md`](docs/how-agentpack-works.md), and [`docs/commands.md`](docs/commands.md).
274
+
275
+ ## Trust And Privacy
276
+
277
+ - local-first by default
278
+ - no cloud indexing
279
+ - no embeddings or API calls for scan, rank, pack, stats, or benchmark
280
+ - generated files live under `.agentpack/`
281
+ - review packs before sharing them outside your machine
282
+
283
+ Details: [`docs/privacy.md`](docs/privacy.md), [`docs/threat-model.md`](docs/threat-model.md), [`docs/data-flow.md`](docs/data-flow.md), and [`SECURITY.md`](SECURITY.md).
284
+
285
+ ## Install Notes
286
+
287
+ Requires Python 3.10+ and is tested on Python 3.10-3.14. PyPI package is `agentpack-cli`; command is `agentpack`.
288
+
289
+ Use `pipx` for normal installs because many macOS/Linux Python distributions block global `pip install` with PEP 668's `externally-managed-environment` error.
290
+
291
+ Install `pipx` first if needed:
292
+
293
+ ```bash
294
+ # macOS
295
+ brew install pipx
296
+
297
+ # Ubuntu/Debian
298
+ sudo apt install pipx
299
+
300
+ # Fedora
301
+ sudo dnf install pipx
302
+
303
+ # Arch
304
+ sudo pacman -S python-pipx
305
+
306
+ pipx ensurepath
307
+ ```
308
+
309
+ ## Docs
310
+
311
+ - [`docs/index.md`](docs/index.md): docs home
312
+ - [`docs/architecture.md`](docs/architecture.md): pipeline, data flow, package layout, and rendered-budget accounting
313
+ - [`docs/commands.md`](docs/commands.md): full CLI command reference
314
+ - [`docs/configuration.md`](docs/configuration.md): config, scoring weights, `.agentignore`, and git integration
315
+ - [`docs/integrations.md`](docs/integrations.md): agent setup, MCP workflow, hooks, and native integration status
316
+ - [`docs/agent-plugins.md`](docs/agent-plugins.md): plugin and IDE distribution layer
317
+ - [`docs/codex-plugin.md`](docs/codex-plugin.md): thin Codex plugin commands and local workflow
318
+ - [`docs/mcp-context-engine.md`](docs/mcp-context-engine.md): MCP tools and context workflow
319
+ - [`docs/benchmarking.md`](docs/benchmarking.md): quality bar, release gate, and public artifacts
320
+ - [`docs/limitations.md`](docs/limitations.md): project scope, known limits, and roadmap
321
+
322
+ ## Status
323
+
324
+ Alpha: `0.3.25`.
325
+
326
+ Works, tested, and used in real sessions. Python and JavaScript/TypeScript have strongest support. APIs may change before 1.0.
327
+
328
+ Platform support targets macOS, Linux, and Windows PowerShell with Git for Windows. `cmd.exe` and bare Git setups are not supported yet.
329
+
330
+ Name note: PyPI package is `agentpack-cli`, npm package is `@vishal2612200/agentpack`, and command is `agentpack`. This project is unrelated to AgentPack dataset papers or other repos with the same name.
331
+
332
+ ## License
333
+
334
+ MIT
@@ -0,0 +1,287 @@
1
+ # AgentPack
2
+
3
+ <p align="center">
4
+ <img src="docs/assets/agentpack-symbol.png" alt="AgentPack symbol: a compact map pack for coding agents" width="180">
5
+ </p>
6
+
7
+ <p align="center">
8
+ <strong>Your agent starts cold. AgentPack hands it the map.</strong>
9
+ </p>
10
+
11
+ <p align="center">
12
+ <em>Ranked repo context for Codex, Claude Code, Cursor, Windsurf, Copilot, Cline, Kiro, OpenCode, MCP, CI, and markdown workflows.</em>
13
+ </p>
14
+
15
+ <p align="center">
16
+ <a href="https://pypi.org/project/agentpack-cli/"><img alt="PyPI version" src="https://img.shields.io/pypi/v/agentpack-cli.svg"></a>
17
+ <a href="https://pepy.tech/projects/agentpack-cli"><img alt="PyPI downloads" src="https://static.pepy.tech/personalized-badge/agentpack-cli?period=total&units=INTERNATIONAL_SYSTEM&left_color=BLACK&right_color=GREEN&left_text=downloads"></a>
18
+ <a href="https://www.npmjs.com/package/@vishal2612200/agentpack"><img alt="npm version" src="https://img.shields.io/npm/v/@vishal2612200/agentpack.svg"></a>
19
+ <a href="https://www.npmjs.com/package/@vishal2612200/agentpack"><img alt="npm downloads" src="https://img.shields.io/npm/dm/@vishal2612200/agentpack.svg"></a>
20
+ <a href="https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml/badge.svg"></a>
21
+ <a href="https://opensource.org/licenses/MIT"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg"></a>
22
+ </p>
23
+
24
+ <p align="center">
25
+ <code>local preflight</code>
26
+ <code>ranked files</code>
27
+ <code>skill routing</code>
28
+ <code>warm cache</code>
29
+ <code>tests + commands</code>
30
+ <code>receipts</code>
31
+ <code>no cloud index</code>
32
+ </p>
33
+
34
+ ---
35
+
36
+ You know the pattern. You ask an agent to fix one bug. It `rg`s half the repo, opens the wrong files, misses the test, then rediscovers the architecture you already had.
37
+
38
+ AgentPack does the repo-orientation pass first.
39
+
40
+ ```text
41
+ agentpack route --task "fix auth token expiry"
42
+ -> files that probably matter
43
+ -> skills and rules that fit the task
44
+ -> tests that probably prove it
45
+ -> rules, commands, warnings
46
+ -> compact context before the agent edits
47
+ ```
48
+
49
+ AgentPack is not another coding agent. It is the local context engine you put in front of the agents you already use.
50
+
51
+ ## The Pitch
52
+
53
+ ```text
54
+ Without AgentPack: agent explores first, edits later.
55
+ With AgentPack: agent starts near the right files.
56
+ ```
57
+
58
+ No cloud index. No embeddings. No model calls for scan/rank/pack. Just local repo analysis, ranked context, and receipts for what got included or skipped.
59
+
60
+ It is not a repo dump. It is not a second brain. It is not a promise that your agent will be right.
61
+
62
+ It is a preflight map: likely files, likely tests, the right local skill or rule, commands, warnings, and a compact pack your agent can inspect before touching code.
63
+
64
+ The first run builds local summaries and repo signals. Later runs reuse that cache, so agents do less repeat discovery and spend more of their budget on the actual change.
65
+
66
+ ## Quick Start
67
+
68
+ ```bash
69
+ pipx install agentpack-cli
70
+ agentpack --version
71
+ ```
72
+
73
+ Inside your repo:
74
+
75
+ ```bash
76
+ agentpack init --yes
77
+ agentpack route --task "fix auth token expiry"
78
+ agentpack task set "fix auth token expiry"
79
+ agentpack pack --task auto
80
+ ```
81
+
82
+ Then give `.agentpack/context.md` to your agent, or let MCP-capable agents call AgentPack tools directly.
83
+
84
+ For one-shot use without installing:
85
+
86
+ ```bash
87
+ pipx run --spec agentpack-cli agentpack route --task "fix auth token expiry"
88
+ ```
89
+
90
+ For JavaScript/TypeScript projects, npm wrapper is available:
91
+
92
+ ```bash
93
+ npx @vishal2612200/agentpack --version
94
+ npx @vishal2612200/agentpack init --yes
95
+ npx @vishal2612200/agentpack task set "fix auth token expiry"
96
+ npx @vishal2612200/agentpack pack --task auto
97
+ ```
98
+
99
+ ## Quick Demo
100
+
101
+ Route task first:
102
+
103
+ ```bash
104
+ agentpack route --task "fix billing webhook retry handling"
105
+ ```
106
+
107
+ AgentPack returns likely files, tests, rules, commands, and warnings without changing source files.
108
+ It also recommends matching skills or agent rules when the task points at a known workflow, framework, language, or repo convention.
109
+
110
+ Build context pack next:
111
+
112
+ ```bash
113
+ agentpack task set "fix billing webhook retry handling"
114
+ agentpack pack --task auto
115
+ ```
116
+
117
+ AgentPack writes local context under `.agentpack/`, including selected files, omitted-file receipts, freshness checks, and token stats.
118
+ It reuses cached file summaries and snapshot metadata so repeated packs do not start from zero.
119
+
120
+ ## What AgentPack Gives Your Agent
121
+
122
+ - ranked files for current task
123
+ - skill and rule routing for current task
124
+ - likely tests and commands
125
+ - repo rules and agent instructions
126
+ - compact context pack under budget
127
+ - cached summaries for faster repeated orientation
128
+ - omitted-file receipts for review
129
+ - freshness warnings when task or git state changes
130
+ - local benchmark data when selected context misses real changed files
131
+
132
+ ## Proof So Far
133
+
134
+ AgentPack's current public benchmark checks one narrow thing: whether selected context overlaps with files actually changed in historical commits.
135
+
136
+ Current scoped result:
137
+
138
+ | Signal | Result | Developer meaning |
139
+ |---|---:|---|
140
+ | Public commit cases | 108 | real historical file-selection checks |
141
+ | Average recall | 66.0% | did AgentPack include files that mattered? |
142
+ | Token precision | 51.1% | how much of pack was useful instead of noise? |
143
+ | Pack p50 | 315 tokens | typical compact starting context |
144
+ | Pack p95 | 1,137 tokens | larger but still bounded starting context |
145
+
146
+ Source: [`benchmarks/results/2026-06-14-public.md`](benchmarks/results/2026-06-14-public.md). Benchmark guide: [`docs/benchmarking.md`](docs/benchmarking.md).
147
+
148
+ This is useful but not magic. It says AgentPack often gets meaningful files into a small pack. It does not claim every agent finishes faster or writes better code. Agent success A/B benchmarks should report task success, tool calls, token cost, and time-to-first-correct-file.
149
+
150
+ ## What We Want To Prove Next
151
+
152
+ AgentPack should eventually show:
153
+
154
+ - fewer agent file reads
155
+ - fewer tool calls
156
+ - faster first correct file
157
+ - lower total context cost
158
+ - equal or better task success
159
+
160
+ ## Works With
161
+
162
+ - Codex
163
+ - Claude Code
164
+ - Cursor
165
+ - Windsurf
166
+ - Antigravity
167
+ - MCP tools
168
+ - CI and PR review workflows
169
+ - generic markdown-based LLM workflows
170
+
171
+ See [`docs/integrations.md`](docs/integrations.md) and [`docs/mcp-context-engine.md`](docs/mcp-context-engine.md).
172
+
173
+ ### Agent And IDE Plugins
174
+
175
+ AgentPack can be used through thin plugin and IDE integration layers so agents start with ranked repo context. Codex has a packaged plugin skeleton; Cursor, Windsurf, Copilot, Cline, Kiro, OpenCode, Claude Code, Antigravity, and generic agents use the same local CLI/MCP engine through portable rules, hooks, and native integration stubs.
176
+
177
+ Inside Codex:
178
+
179
+ ```text
180
+ @agentpack-route fix auth token expiry
181
+ @agentpack-pack fix auth token expiry
182
+ @agentpack-review
183
+ ```
184
+
185
+ The plugin calls the local AgentPack engine. It does not upload code and does not turn AgentPack into a coding agent.
186
+
187
+ See [`docs/agent-plugins.md`](docs/agent-plugins.md) and [`docs/codex-plugin.md`](docs/codex-plugin.md).
188
+
189
+ ## How AgentPack Compares
190
+
191
+ | Tool type | What it does | AgentPack difference |
192
+ |---|---|---|
193
+ | Repo dumpers | Dump selected or all files | AgentPack ranks files by task |
194
+ | Coding agents | Edit code | AgentPack prepares context before editing |
195
+ | IDE search | Finds files on demand | AgentPack pre-routes before agent starts |
196
+ | Skills/rules | Change agent behavior | AgentPack routes the matching skill or rule for the task |
197
+ | Cache warmers | Speed repeated scans | AgentPack reuses summaries and snapshots inside the context workflow |
198
+
199
+ ## When To Use It
200
+
201
+ Use AgentPack when:
202
+
203
+ - repo is large or split across multiple packages
204
+ - monorepo structure makes file discovery expensive
205
+ - agents repeat same discovery work across tasks
206
+ - CI or PR review needs reproducible context
207
+ - agents waste tool calls opening irrelevant files
208
+ - tasks often miss tests, config, generated rules, or repo conventions
209
+ - teams have useful skills/rules but agents do not reliably pick the right one
210
+ - repeated agent sessions keep rediscovering the same repo structure
211
+
212
+ Do not use AgentPack when:
213
+
214
+ - repo is tiny
215
+ - question is one-shot and read-only
216
+ - you already know exact files to edit
217
+ - you need autonomous coding, not context preparation
218
+ - native IDE search is already enough for task
219
+
220
+ ## How It Works
221
+
222
+ AgentPack scans repo locally, builds and reuses file summaries, indexes local skills and rules, combines filename, git, config, dependency, summary, and benchmark signals, ranks likely files for task, then renders a compact context pack.
223
+
224
+ It can expose the same workflow through CLI, markdown files, MCP tools, hooks, plugins, and CI.
225
+
226
+ Deep dive: [`docs/architecture.md`](docs/architecture.md), [`docs/how-agentpack-works.md`](docs/how-agentpack-works.md), and [`docs/commands.md`](docs/commands.md).
227
+
228
+ ## Trust And Privacy
229
+
230
+ - local-first by default
231
+ - no cloud indexing
232
+ - no embeddings or API calls for scan, rank, pack, stats, or benchmark
233
+ - generated files live under `.agentpack/`
234
+ - review packs before sharing them outside your machine
235
+
236
+ Details: [`docs/privacy.md`](docs/privacy.md), [`docs/threat-model.md`](docs/threat-model.md), [`docs/data-flow.md`](docs/data-flow.md), and [`SECURITY.md`](SECURITY.md).
237
+
238
+ ## Install Notes
239
+
240
+ Requires Python 3.10+ and is tested on Python 3.10-3.14. PyPI package is `agentpack-cli`; command is `agentpack`.
241
+
242
+ Use `pipx` for normal installs because many macOS/Linux Python distributions block global `pip install` with PEP 668's `externally-managed-environment` error.
243
+
244
+ Install `pipx` first if needed:
245
+
246
+ ```bash
247
+ # macOS
248
+ brew install pipx
249
+
250
+ # Ubuntu/Debian
251
+ sudo apt install pipx
252
+
253
+ # Fedora
254
+ sudo dnf install pipx
255
+
256
+ # Arch
257
+ sudo pacman -S python-pipx
258
+
259
+ pipx ensurepath
260
+ ```
261
+
262
+ ## Docs
263
+
264
+ - [`docs/index.md`](docs/index.md): docs home
265
+ - [`docs/architecture.md`](docs/architecture.md): pipeline, data flow, package layout, and rendered-budget accounting
266
+ - [`docs/commands.md`](docs/commands.md): full CLI command reference
267
+ - [`docs/configuration.md`](docs/configuration.md): config, scoring weights, `.agentignore`, and git integration
268
+ - [`docs/integrations.md`](docs/integrations.md): agent setup, MCP workflow, hooks, and native integration status
269
+ - [`docs/agent-plugins.md`](docs/agent-plugins.md): plugin and IDE distribution layer
270
+ - [`docs/codex-plugin.md`](docs/codex-plugin.md): thin Codex plugin commands and local workflow
271
+ - [`docs/mcp-context-engine.md`](docs/mcp-context-engine.md): MCP tools and context workflow
272
+ - [`docs/benchmarking.md`](docs/benchmarking.md): quality bar, release gate, and public artifacts
273
+ - [`docs/limitations.md`](docs/limitations.md): project scope, known limits, and roadmap
274
+
275
+ ## Status
276
+
277
+ Alpha: `0.3.25`.
278
+
279
+ Works, tested, and used in real sessions. Python and JavaScript/TypeScript have strongest support. APIs may change before 1.0.
280
+
281
+ Platform support targets macOS, Linux, and Windows PowerShell with Git for Windows. `cmd.exe` and bare Git setups are not supported yet.
282
+
283
+ Name note: PyPI package is `agentpack-cli`, npm package is `@vishal2612200/agentpack`, and command is `agentpack`. This project is unrelated to AgentPack dataset papers or other repos with the same name.
284
+
285
+ ## License
286
+
287
+ MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agentpack-cli"
3
- version = "0.3.23"
3
+ version = "0.3.25"
4
4
  description = "Local context engine for AI coding agents that ranks relevant repo files and builds compact task-focused context packs for Claude Code, Codex, Cursor, Windsurf, MCP, and CI workflows."
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.3.23"
3
+ __version__ = "0.3.25"
@@ -42,6 +42,7 @@ from agentpack.commands import (
42
42
  task_cmd,
43
43
  threads,
44
44
  tune,
45
+ upgrade,
45
46
  verify_wheel,
46
47
  watch,
47
48
  wrap,
@@ -95,6 +96,7 @@ for mod in [
95
96
  diagnose_selection,
96
97
  eval_cmd,
97
98
  tune,
99
+ upgrade,
98
100
  watch,
99
101
  claude_cmd,
100
102
  benchmark,
@@ -79,6 +79,8 @@ jobs:
79
79
  if: github.event_name == 'push'
80
80
  steps:
81
81
  - uses: actions/checkout@v4
82
+ with:
83
+ fetch-depth: 0
82
84
  - uses: actions/setup-python@v5
83
85
  with:
84
86
  python-version: "3.11"
@@ -86,5 +88,5 @@ jobs:
86
88
  with:
87
89
  node-version: "20"
88
90
  - run: python -m pip install -e ".[dev]" build
89
- - run: python -m agentpack.cli release-check
91
+ - run: python -m agentpack.cli release-check --profile auto
90
92
  """
@@ -27,7 +27,7 @@ def register(app: typer.Typer) -> None:
27
27
  stages = [
28
28
  CheckStage("docs-check", [sys.executable, "-m", "pytest", "tests/test_docs_links.py", "-q"]),
29
29
  CheckStage("ruff", [sys.executable, "-m", "ruff", "check", "src", "tests"]),
30
- CheckStage("pytest", [sys.executable, "-m", "pytest", "-q"]),
30
+ CheckStage("pytest", [sys.executable, "-m", "pytest", "-q", "-m", "not slow"]),
31
31
  CheckStage("npm-version-sync", ["node", "npm/test/version-sync.test.js"]),
32
32
  CheckStage("npm-launcher", ["node", "npm/test/launcher.test.js"]),
33
33
  ]