agentpack-cli 0.1.3__tar.gz → 0.1.4__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.
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/PKG-INFO +3 -2
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/README.md +1 -1
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/pyproject.toml +3 -2
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/.gitignore +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/LICENSE +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/adapters/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/adapters/base.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/adapters/claude.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/adapters/codex.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/adapters/cursor.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/adapters/generic.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/adapters/windsurf.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/dependency_graph.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/go_imports.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/java_imports.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/js_ts_imports.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/python_imports.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/ranking.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/rust_imports.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/symbols.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/analysis/tests.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/application/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/application/pack_service.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/cli.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/_shared.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/benchmark.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/claude_cmd.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/diff.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/doctor.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/explain.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/init.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/install.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/monitor.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/pack.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/scan.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/session.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/stats.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/status.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/summarize.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/commands/watch.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/bootstrap.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/cache.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/config.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/context_pack.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/diff.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/git.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/git_hooks.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/global_install.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/ignore.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/merkle.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/models.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/redactor.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/scanner.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/snapshot.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/token_estimator.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/core/vscode_tasks.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/data/agentpack.md +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/installers/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/installers/claude.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/installers/codex.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/installers/cursor.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/installers/windsurf.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/integrations/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/integrations/git_hooks.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/integrations/global_install.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/integrations/vscode_tasks.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/renderers/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/renderers/compact.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/renderers/markdown.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/renderers/receipts.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/session/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/session/state.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/summaries/__init__.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/summaries/base.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/src/agentpack/summaries/llm.py +0 -0
- {agentpack_cli-0.1.3 → agentpack_cli-0.1.4}/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.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Token-aware context packing for AI coding agents — Claude, Cursor, Windsurf, and Codex
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -30,6 +30,7 @@ Provides-Extra: dev
|
|
|
30
30
|
Requires-Dist: mypy; extra == 'dev'
|
|
31
31
|
Requires-Dist: pytest; extra == 'dev'
|
|
32
32
|
Requires-Dist: ruff; extra == 'dev'
|
|
33
|
+
Requires-Dist: tomli>=2.0.0; (python_version < '3.11') and extra == 'dev'
|
|
33
34
|
Provides-Extra: llm
|
|
34
35
|
Requires-Dist: anthropic>=0.39.0; extra == 'llm'
|
|
35
36
|
Requires-Dist: openai>=1.0.0; extra == 'llm'
|
|
@@ -44,7 +45,7 @@ Description-Content-Type: text/markdown
|
|
|
44
45
|
[](https://opensource.org/licenses/MIT)
|
|
45
46
|
[](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml)
|
|
46
47
|
|
|
47
|
-
> **Status: alpha (v0.1.
|
|
48
|
+
> **Status: alpha (v0.1.4).** 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
49
|
>
|
|
49
50
|
> **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
51
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://opensource.org/licenses/MIT)
|
|
6
6
|
[](https://github.com/vishal2612200/agentpack/actions/workflows/ci.yml)
|
|
7
7
|
|
|
8
|
-
> **Status: alpha (v0.1.
|
|
8
|
+
> **Status: alpha (v0.1.4).** 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
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "agentpack-cli"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "Token-aware context packing for AI coding agents — Claude, Cursor, Windsurf, and Codex"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -49,7 +49,8 @@ all = [
|
|
|
49
49
|
dev = [
|
|
50
50
|
"pytest",
|
|
51
51
|
"ruff",
|
|
52
|
-
"mypy"
|
|
52
|
+
"mypy",
|
|
53
|
+
"tomli>=2.0.0; python_version < '3.11'"
|
|
53
54
|
]
|
|
54
55
|
|
|
55
56
|
[tool.pytest.ini_options]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|