agent-cli 0.72.4__py3-none-any.whl → 0.72.6__py3-none-any.whl

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.
agent_cli/_extras.json CHANGED
@@ -1,14 +1,73 @@
1
1
  {
2
- "wyoming": ["Wyoming protocol for ASR/TTS servers", ["wyoming"]],
3
- "audio": ["Local audio recording/playback", ["numpy", "sounddevice", "wyoming"]],
4
- "llm": ["LLM framework (pydantic-ai)", ["pydantic_ai"]],
5
- "memory": ["Long-term memory proxy", ["chromadb", "openai", "yaml"]],
6
- "rag": ["RAG proxy (ChromaDB, embeddings)", ["chromadb", "openai"]],
7
- "server": ["FastAPI server components", ["fastapi"]],
8
- "speed": ["Audio speed adjustment (audiostretchy)", ["audiostretchy"]],
9
- "piper": ["Local Piper TTS", ["piper"]],
10
- "kokoro": ["Kokoro neural TTS", ["kokoro"]],
11
- "vad": ["Voice Activity Detection (silero-vad)", ["silero_vad"]],
12
- "faster-whisper": ["Whisper ASR (CUDA/CPU)", ["faster_whisper"]],
13
- "mlx-whisper": ["Whisper ASR (Apple Silicon)", ["mlx_whisper"]]
2
+ "audio": [
3
+ "Audio recording/playback",
4
+ [
5
+ "sounddevice"
6
+ ]
7
+ ],
8
+ "faster-whisper": [
9
+ "TODO: add description",
10
+ []
11
+ ],
12
+ "kokoro": [
13
+ "TODO: add description",
14
+ []
15
+ ],
16
+ "llm": [
17
+ "LLM framework (pydantic-ai)",
18
+ [
19
+ "pydantic_ai"
20
+ ]
21
+ ],
22
+ "llm-core": [
23
+ "Minimal LLM support for Docker images",
24
+ [
25
+ "pydantic_ai"
26
+ ]
27
+ ],
28
+ "memory": [
29
+ "Long-term memory proxy",
30
+ [
31
+ "chromadb",
32
+ "yaml"
33
+ ]
34
+ ],
35
+ "mlx-whisper": [
36
+ "TODO: add description",
37
+ []
38
+ ],
39
+ "piper": [
40
+ "TODO: add description",
41
+ []
42
+ ],
43
+ "rag": [
44
+ "RAG proxy (ChromaDB, embeddings)",
45
+ [
46
+ "chromadb"
47
+ ]
48
+ ],
49
+ "server": [
50
+ "FastAPI server components",
51
+ [
52
+ "fastapi"
53
+ ]
54
+ ],
55
+ "speed": [
56
+ "Audio speed adjustment (audiostretchy)",
57
+ [
58
+ "audiostretchy"
59
+ ]
60
+ ],
61
+ "vad": [
62
+ "Voice Activity Detection (silero-vad)",
63
+ [
64
+ "silero_vad"
65
+ ]
66
+ ],
67
+ "wyoming": [
68
+ "Wyoming protocol support",
69
+ [
70
+ "wyoming"
71
+ ]
72
+ ]
14
73
  }
agent_cli/dev/cli.py CHANGED
@@ -1779,7 +1779,9 @@ def install_skill(
1779
1779
  - Works when you ask to "work on multiple features" or "parallelize tasks"
1780
1780
 
1781
1781
  **Alternative:** Install globally via Claude Code plugin marketplace:
1782
- `claude plugin marketplace add basnijholt/agent-cli`
1782
+
1783
+ 1. `claude plugin marketplace add basnijholt/agent-cli`
1784
+ 2. `claude plugin install agent-cli-dev@agent-cli`
1783
1785
  """
1784
1786
  # Use current repo root (works in worktrees too)
1785
1787
  repo_root = _get_current_repo_root()
@@ -33,6 +33,7 @@ EXTRA_METADATA: dict[str, tuple[str, list[str]]] = {
33
33
  "openai": ("OpenAI API provider", ["openai"]),
34
34
  "gemini": ("Google Gemini provider", ["google.genai"]),
35
35
  "llm": ("LLM framework (pydantic-ai)", ["pydantic_ai"]),
36
+ "llm-core": ("Minimal LLM support for Docker images", ["pydantic_ai"]),
36
37
  # Feature extras
37
38
  "rag": ("RAG proxy (ChromaDB, embeddings)", ["chromadb"]),
38
39
  "memory": ("Long-term memory proxy", ["chromadb", "yaml"]),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-cli
3
- Version: 0.72.4
3
+ Version: 0.72.6
4
4
  Summary: A suite of AI-powered command-line tools for text correction, audio transcription, and voice assistance.
5
5
  Project-URL: Homepage, https://github.com/basnijholt/agent-cli
6
6
  Author-email: Bas Nijholt <bas@nijho.lt>
@@ -46,6 +46,8 @@ Requires-Dist: soundfile>=0.12.0; extra == 'kokoro'
46
46
  Requires-Dist: transformers>=4.40.0; extra == 'kokoro'
47
47
  Provides-Extra: llm
48
48
  Requires-Dist: pydantic-ai-slim[duckduckgo,google,openai,vertexai]>=0.1.1; extra == 'llm'
49
+ Provides-Extra: llm-core
50
+ Requires-Dist: pydantic-ai-slim[google,openai]>=0.1.1; extra == 'llm-core'
49
51
  Provides-Extra: memory
50
52
  Requires-Dist: chromadb>=0.4.22; extra == 'memory'
51
53
  Requires-Dist: fastapi[standard]; extra == 'memory'
@@ -88,7 +90,7 @@ Description-Content-Type: text/markdown
88
90
 
89
91
  # Agent CLI
90
92
 
91
- <img src="https://raw.githubusercontent.com/basnijholt/agent-cli/refs/heads/main/.github/logo.svg" alt="agent-cli logo" align="right" style="width: 250px;" />
93
+ <img src="https://raw.githubusercontent.com/basnijholt/agent-cli/refs/heads/main/.github/logo.svg" alt="agent-cli logo" align="right" style="width: 200px;" />
92
94
 
93
95
  `agent-cli` is a collection of **_local-first_**, AI-powered command-line agents that run entirely on your machine.
94
96
  It provides a suite of powerful tools for voice and text interaction, designed for privacy, offline capability, and seamless integration with system-wide hotkeys and workflows.
@@ -391,7 +393,7 @@ agent-cli dev install-skill
391
393
 
392
394
  # Option 2: Install via Claude Code plugin marketplace
393
395
  claude plugin marketplace add basnijholt/agent-cli
394
- claude plugin install agent-cli@agent-cli-dev
396
+ claude plugin install agent-cli-dev@agent-cli
395
397
  ```
396
398
 
397
399
  Once installed, Claude Code can automatically use this skill when you ask to:
@@ -1,6 +1,6 @@
1
1
  agent_cli/__init__.py,sha256=-bo57j_5TsCug2tGHh7wClAGDhzN239639K40pgVh4g,187
2
2
  agent_cli/__main__.py,sha256=2wx_SxA8KRdejM-hBFLN8JTR2rIgtwnDH03MPAbJH5U,106
3
- agent_cli/_extras.json,sha256=vGp4FXpAHOnuXC29ZOjThoUQPR1eES0yNR6iAHMc45A,780
3
+ agent_cli/_extras.json,sha256=ZYP8AA1QznkCfEW_Tcl6MWpU_Sm_pdGBE9VU0kXFdKA,1025
4
4
  agent_cli/_tools.py,sha256=u9Ww-k-sbwFnMTW8sreFGd71nJP6o5hKcM0Zd_D9GZk,12136
5
5
  agent_cli/api.py,sha256=FQ_HATc7DaedbEFQ275Z18wV90tkDByD_9x_K0wdSLQ,456
6
6
  agent_cli/cli.py,sha256=O3b5Bgv6mjzSIMKikRfeUEg1SSVXhCskLatltbx0ERg,3923
@@ -51,7 +51,7 @@ agent_cli/core/utils.py,sha256=p3OJrNcU6iwqR0C7Q5Ab3_rwJBmP0EbIYT82a9scPSI,16896
51
51
  agent_cli/core/vad.py,sha256=0QEFScwyKaX6G4tnVQoVMVBjXVRdCkFtp7XWRRXT0hY,5998
52
52
  agent_cli/core/watch.py,sha256=PakxMyqJycN6bkE6fxeo0qe9zj5wjuRly3p7rN9UgjM,2000
53
53
  agent_cli/dev/__init__.py,sha256=doTYiUFEBpnOxsQA69HQP9AA4QHBN0DjuHSTGRq5Xbg,551
54
- agent_cli/dev/cli.py,sha256=kj2u8q13z1Zn09mn7BML-EVCl83a273doDmjNP3K_HU,58850
54
+ agent_cli/dev/cli.py,sha256=jvezwwgnq9jKH26zeBD3jFVW15ej6b2j_H5XknA0Ibc,58909
55
55
  agent_cli/dev/project.py,sha256=wJMGKTK1rmw8letrV6l6wcLU1fkQQDjCSEixAnsvyaY,18971
56
56
  agent_cli/dev/registry.py,sha256=c6t3ClyRFPvU4GGXJT79-D-qV4FqY7W_7P-tLT7LKZs,1887
57
57
  agent_cli/dev/worktree.py,sha256=Yw8jlhkf8BeKFc6pPEazGXnUIvryvYwbUmYxTluXILs,26916
@@ -140,7 +140,7 @@ agent_cli/scripts/setup-macos.sh,sha256=iKWhhONLGDTqYawSDqutnl0mfQomSVPPAsx09-0E
140
140
  agent_cli/scripts/setup-windows.ps1,sha256=NhyxOuwCjjSw24q2QOqggATos_n06DDbfvMQWuAB3tM,2938
141
141
  agent_cli/scripts/start-all-services-windows.ps1,sha256=uOODaPFzniEU7asDgMyf5MEOWcEFsGg_mCLLlDgKoa8,2643
142
142
  agent_cli/scripts/start-all-services.sh,sha256=c6pjXoyoQkeF-cYpldeMMo38XxRMmS43FHG5w3ElLxg,7756
143
- agent_cli/scripts/sync_extras.py,sha256=VpuhNg7iP3YT3l1jqoSBeWbzDEkeUEGGba7_lGUxBjA,4737
143
+ agent_cli/scripts/sync_extras.py,sha256=3TlQ8O253M-UB5_t9jNcnDS7cX31jn5pN69QV2AHX-w,4813
144
144
  agent_cli/scripts/.runtime/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
145
  agent_cli/scripts/linux-hotkeys/README.md,sha256=OW48Xyv096XkUosSJkzED_nnEEncSzhl87FNgEfq8wg,2037
146
146
  agent_cli/scripts/linux-hotkeys/toggle-autocorrect.sh,sha256=sme-dil3EU4nkdRwxSvARr-hBN9UjrU1IFabLCrvwl8,1251
@@ -189,8 +189,8 @@ agent_cli/services/asr.py,sha256=aRaCLVCygsJ15qyQEPECOZsdSrnlLPbyY4RwAqY0qIw,172
189
189
  agent_cli/services/llm.py,sha256=i01utl1eYWlM13gvW2eR6ErL_ndH-g0d-BSleZra_7k,7229
190
190
  agent_cli/services/tts.py,sha256=NX5Qnq7ddLI3mwm3nzhbR3zB1Os4Ip4sSVSjDZDTBcI,14855
191
191
  agent_cli/services/wake_word.py,sha256=JFJ1SA22H4yko9DXiQ1t7fcoxeALLAe3iBrLs0z8rX4,4664
192
- agent_cli-0.72.4.dist-info/METADATA,sha256=x7z4gk0W_ab4tyTpZn1VISEqEjPGEh609SiFx3obe68,179670
193
- agent_cli-0.72.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
194
- agent_cli-0.72.4.dist-info/entry_points.txt,sha256=FUv-fB2atLsPUk_RT4zqnZl1coz4_XHFwRALOKOF38s,97
195
- agent_cli-0.72.4.dist-info/licenses/LICENSE,sha256=majJU6S9kC8R8bW39NVBHyv32Dq50FL6TDxECG2WVts,1068
196
- agent_cli-0.72.4.dist-info/RECORD,,
192
+ agent_cli-0.72.6.dist-info/METADATA,sha256=FFZFROUd4ay-6pqn3lGe_g4VU0di5fuNyiQmuyvZkn4,179770
193
+ agent_cli-0.72.6.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
194
+ agent_cli-0.72.6.dist-info/entry_points.txt,sha256=FUv-fB2atLsPUk_RT4zqnZl1coz4_XHFwRALOKOF38s,97
195
+ agent_cli-0.72.6.dist-info/licenses/LICENSE,sha256=majJU6S9kC8R8bW39NVBHyv32Dq50FL6TDxECG2WVts,1068
196
+ agent_cli-0.72.6.dist-info/RECORD,,