agent-cli 0.61.2__py3-none-any.whl → 0.70.2__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.
Files changed (73) hide show
  1. agent_cli/_extras.json +13 -0
  2. agent_cli/_requirements/.gitkeep +0 -0
  3. agent_cli/_requirements/audio.txt +79 -0
  4. agent_cli/_requirements/faster-whisper.txt +215 -0
  5. agent_cli/_requirements/kokoro.txt +425 -0
  6. agent_cli/_requirements/llm.txt +183 -0
  7. agent_cli/_requirements/memory.txt +355 -0
  8. agent_cli/_requirements/mlx-whisper.txt +222 -0
  9. agent_cli/_requirements/piper.txt +176 -0
  10. agent_cli/_requirements/rag.txt +402 -0
  11. agent_cli/_requirements/server.txt +154 -0
  12. agent_cli/_requirements/speed.txt +77 -0
  13. agent_cli/_requirements/vad.txt +155 -0
  14. agent_cli/agents/assistant.py +3 -1
  15. agent_cli/agents/autocorrect.py +5 -2
  16. agent_cli/agents/chat.py +3 -1
  17. agent_cli/agents/memory/__init__.py +2 -1
  18. agent_cli/agents/memory/add.py +2 -0
  19. agent_cli/agents/memory/proxy.py +7 -12
  20. agent_cli/agents/rag_proxy.py +5 -10
  21. agent_cli/agents/speak.py +3 -1
  22. agent_cli/agents/transcribe.py +7 -2
  23. agent_cli/agents/transcribe_daemon.py +3 -1
  24. agent_cli/agents/voice_edit.py +3 -1
  25. agent_cli/cli.py +19 -3
  26. agent_cli/config_cmd.py +1 -0
  27. agent_cli/core/chroma.py +4 -4
  28. agent_cli/core/deps.py +177 -25
  29. agent_cli/core/openai_proxy.py +9 -4
  30. agent_cli/core/process.py +2 -2
  31. agent_cli/core/reranker.py +5 -4
  32. agent_cli/core/utils.py +5 -3
  33. agent_cli/core/vad.py +2 -1
  34. agent_cli/core/watch.py +8 -6
  35. agent_cli/dev/cli.py +31 -34
  36. agent_cli/dev/coding_agents/base.py +1 -2
  37. agent_cli/dev/skill/SKILL.md +141 -0
  38. agent_cli/dev/skill/examples.md +571 -0
  39. agent_cli/dev/worktree.py +53 -5
  40. agent_cli/docs_gen.py +12 -42
  41. agent_cli/install/__init__.py +1 -1
  42. agent_cli/install/extras.py +174 -0
  43. agent_cli/memory/__init__.py +1 -18
  44. agent_cli/memory/_files.py +4 -1
  45. agent_cli/memory/_indexer.py +3 -2
  46. agent_cli/memory/_ingest.py +6 -5
  47. agent_cli/memory/_retrieval.py +18 -8
  48. agent_cli/memory/_streaming.py +2 -2
  49. agent_cli/memory/api.py +1 -1
  50. agent_cli/memory/client.py +1 -1
  51. agent_cli/memory/engine.py +1 -1
  52. agent_cli/rag/__init__.py +0 -19
  53. agent_cli/rag/_indexer.py +3 -2
  54. agent_cli/rag/api.py +1 -0
  55. agent_cli/scripts/.runtime/.gitkeep +0 -0
  56. agent_cli/scripts/check_plugin_skill_sync.py +50 -0
  57. agent_cli/scripts/sync_extras.py +138 -0
  58. agent_cli/server/cli.py +26 -24
  59. agent_cli/server/common.py +3 -4
  60. agent_cli/server/tts/api.py +1 -1
  61. agent_cli/server/whisper/backends/faster_whisper.py +30 -23
  62. agent_cli/server/whisper/wyoming_handler.py +22 -27
  63. agent_cli/services/_wyoming_utils.py +4 -2
  64. agent_cli/services/asr.py +13 -3
  65. agent_cli/services/llm.py +2 -1
  66. agent_cli/services/tts.py +5 -2
  67. agent_cli/services/wake_word.py +6 -3
  68. {agent_cli-0.61.2.dist-info → agent_cli-0.70.2.dist-info}/METADATA +168 -73
  69. {agent_cli-0.61.2.dist-info → agent_cli-0.70.2.dist-info}/RECORD +72 -54
  70. {agent_cli-0.61.2.dist-info → agent_cli-0.70.2.dist-info}/WHEEL +1 -2
  71. agent_cli-0.61.2.dist-info/top_level.txt +0 -1
  72. {agent_cli-0.61.2.dist-info → agent_cli-0.70.2.dist-info}/entry_points.txt +0 -0
  73. {agent_cli-0.61.2.dist-info → agent_cli-0.70.2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,183 @@
1
+ # This file was autogenerated by uv via the following command:
2
+ # uv export --extra llm --no-dev --no-emit-project --no-hashes
3
+ annotated-types==0.7.0
4
+ # via pydantic
5
+ anyio==4.12.1
6
+ # via
7
+ # google-genai
8
+ # httpx
9
+ # openai
10
+ brotli==1.2.0 ; platform_python_implementation == 'CPython'
11
+ # via httpx
12
+ brotlicffi==1.2.0.0 ; platform_python_implementation != 'CPython'
13
+ # via httpx
14
+ certifi==2026.1.4
15
+ # via
16
+ # httpcore
17
+ # httpx
18
+ # requests
19
+ cffi==2.0.0 ; platform_python_implementation != 'CPython'
20
+ # via brotlicffi
21
+ charset-normalizer==3.4.4
22
+ # via requests
23
+ click==8.3.1
24
+ # via
25
+ # ddgs
26
+ # typer
27
+ # typer-slim
28
+ colorama==0.4.6
29
+ # via
30
+ # click
31
+ # griffe
32
+ # tqdm
33
+ ddgs==9.10.0
34
+ # via pydantic-ai-slim
35
+ distro==1.9.0
36
+ # via
37
+ # google-genai
38
+ # openai
39
+ dotenv==0.9.9
40
+ # via agent-cli
41
+ fake-useragent==2.2.0
42
+ # via ddgs
43
+ genai-prices==0.0.51
44
+ # via pydantic-ai-slim
45
+ google-auth==2.47.0
46
+ # via
47
+ # google-genai
48
+ # pydantic-ai-slim
49
+ google-genai==1.58.0
50
+ # via pydantic-ai-slim
51
+ griffe==1.15.0
52
+ # via pydantic-ai-slim
53
+ h11==0.16.0
54
+ # via httpcore
55
+ h2==4.3.0
56
+ # via httpx
57
+ hpack==4.1.0
58
+ # via h2
59
+ httpcore==1.0.9
60
+ # via httpx
61
+ httpx==0.28.1
62
+ # via
63
+ # agent-cli
64
+ # ddgs
65
+ # genai-prices
66
+ # google-genai
67
+ # openai
68
+ # pydantic-ai-slim
69
+ # pydantic-graph
70
+ hyperframe==6.1.0
71
+ # via h2
72
+ idna==3.11
73
+ # via
74
+ # anyio
75
+ # httpx
76
+ # requests
77
+ importlib-metadata==8.7.1
78
+ # via opentelemetry-api
79
+ jiter==0.12.0
80
+ # via openai
81
+ logfire-api==4.18.0
82
+ # via pydantic-graph
83
+ lxml==6.0.2
84
+ # via ddgs
85
+ markdown-it-py==4.0.0
86
+ # via rich
87
+ mdurl==0.1.2
88
+ # via markdown-it-py
89
+ openai==2.15.0
90
+ # via pydantic-ai-slim
91
+ opentelemetry-api==1.39.1
92
+ # via pydantic-ai-slim
93
+ primp==0.15.0
94
+ # via ddgs
95
+ psutil==7.2.1 ; sys_platform == 'win32'
96
+ # via agent-cli
97
+ pyasn1==0.6.1
98
+ # via
99
+ # pyasn1-modules
100
+ # rsa
101
+ pyasn1-modules==0.4.2
102
+ # via google-auth
103
+ pycparser==2.23 ; implementation_name != 'PyPy' and platform_python_implementation != 'CPython'
104
+ # via cffi
105
+ pydantic==2.12.5
106
+ # via
107
+ # agent-cli
108
+ # genai-prices
109
+ # google-genai
110
+ # openai
111
+ # pydantic-ai-slim
112
+ # pydantic-graph
113
+ pydantic-ai-slim==1.42.0
114
+ # via agent-cli
115
+ pydantic-core==2.41.5
116
+ # via pydantic
117
+ pydantic-graph==1.42.0
118
+ # via pydantic-ai-slim
119
+ pygments==2.19.2
120
+ # via rich
121
+ pyperclip==1.11.0
122
+ # via agent-cli
123
+ python-dotenv==1.2.1
124
+ # via dotenv
125
+ regex==2026.1.15
126
+ # via tiktoken
127
+ requests==2.32.5
128
+ # via
129
+ # google-auth
130
+ # google-genai
131
+ # pydantic-ai-slim
132
+ # tiktoken
133
+ rich==14.2.0
134
+ # via
135
+ # agent-cli
136
+ # typer
137
+ # typer-slim
138
+ rsa==4.9.1
139
+ # via google-auth
140
+ setproctitle==1.3.7
141
+ # via agent-cli
142
+ shellingham==1.5.4
143
+ # via
144
+ # typer
145
+ # typer-slim
146
+ sniffio==1.3.1
147
+ # via
148
+ # google-genai
149
+ # openai
150
+ socksio==1.0.0
151
+ # via httpx
152
+ tenacity==9.1.2
153
+ # via google-genai
154
+ tiktoken==0.12.0
155
+ # via pydantic-ai-slim
156
+ tqdm==4.67.1
157
+ # via openai
158
+ typer==0.21.1
159
+ # via agent-cli
160
+ typer-slim==0.21.1
161
+ # via agent-cli
162
+ typing-extensions==4.15.0
163
+ # via
164
+ # anyio
165
+ # google-genai
166
+ # openai
167
+ # opentelemetry-api
168
+ # pydantic
169
+ # pydantic-core
170
+ # typer
171
+ # typer-slim
172
+ # typing-inspection
173
+ typing-inspection==0.4.2
174
+ # via
175
+ # pydantic
176
+ # pydantic-ai-slim
177
+ # pydantic-graph
178
+ urllib3==2.3.0
179
+ # via requests
180
+ websockets==15.0.1
181
+ # via google-genai
182
+ zipp==3.23.0
183
+ # via importlib-metadata
@@ -0,0 +1,355 @@
1
+ # This file was autogenerated by uv via the following command:
2
+ # uv export --extra memory --no-dev --no-emit-project --no-hashes
3
+ annotated-doc==0.0.4
4
+ # via fastapi
5
+ annotated-types==0.7.0
6
+ # via pydantic
7
+ anyio==4.12.1
8
+ # via
9
+ # httpx
10
+ # starlette
11
+ # watchfiles
12
+ attrs==25.4.0
13
+ # via
14
+ # jsonschema
15
+ # referencing
16
+ backoff==2.2.1
17
+ # via posthog
18
+ bcrypt==5.0.0
19
+ # via chromadb
20
+ build==1.4.0
21
+ # via chromadb
22
+ certifi==2026.1.4
23
+ # via
24
+ # httpcore
25
+ # httpx
26
+ # kubernetes
27
+ # requests
28
+ # sentry-sdk
29
+ charset-normalizer==3.4.4
30
+ # via requests
31
+ chromadb==1.4.1
32
+ # via agent-cli
33
+ click==8.3.1
34
+ # via
35
+ # rich-toolkit
36
+ # typer
37
+ # typer-slim
38
+ # uvicorn
39
+ colorama==0.4.6 ; os_name == 'nt' or sys_platform == 'win32'
40
+ # via
41
+ # build
42
+ # click
43
+ # tqdm
44
+ # uvicorn
45
+ coloredlogs==15.0.1
46
+ # via onnxruntime
47
+ distro==1.9.0
48
+ # via posthog
49
+ dnspython==2.8.0
50
+ # via email-validator
51
+ dotenv==0.9.9
52
+ # via agent-cli
53
+ durationpy==0.10
54
+ # via kubernetes
55
+ email-validator==2.3.0
56
+ # via
57
+ # fastapi
58
+ # pydantic
59
+ fastapi==0.128.0
60
+ # via agent-cli
61
+ fastapi-cli==0.0.20
62
+ # via fastapi
63
+ fastapi-cloud-cli==0.10.1
64
+ # via fastapi-cli
65
+ fastar==0.8.0
66
+ # via fastapi-cloud-cli
67
+ filelock==3.20.3
68
+ # via
69
+ # huggingface-hub
70
+ # transformers
71
+ flatbuffers==25.12.19
72
+ # via onnxruntime
73
+ fsspec==2026.1.0
74
+ # via huggingface-hub
75
+ google-auth==2.47.0
76
+ # via kubernetes
77
+ googleapis-common-protos==1.72.0
78
+ # via opentelemetry-exporter-otlp-proto-grpc
79
+ grpcio==1.76.0
80
+ # via
81
+ # chromadb
82
+ # opentelemetry-exporter-otlp-proto-grpc
83
+ h11==0.16.0
84
+ # via
85
+ # httpcore
86
+ # uvicorn
87
+ hf-xet==1.2.0 ; platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64'
88
+ # via huggingface-hub
89
+ httpcore==1.0.9
90
+ # via httpx
91
+ httptools==0.7.1
92
+ # via uvicorn
93
+ httpx==0.28.1
94
+ # via
95
+ # agent-cli
96
+ # chromadb
97
+ # fastapi
98
+ # fastapi-cloud-cli
99
+ huggingface-hub==0.36.0
100
+ # via
101
+ # agent-cli
102
+ # tokenizers
103
+ # transformers
104
+ humanfriendly==10.0
105
+ # via coloredlogs
106
+ idna==3.11
107
+ # via
108
+ # anyio
109
+ # email-validator
110
+ # httpx
111
+ # requests
112
+ importlib-metadata==8.7.1
113
+ # via opentelemetry-api
114
+ importlib-resources==6.5.2
115
+ # via chromadb
116
+ jinja2==3.1.6
117
+ # via fastapi
118
+ jsonschema==4.26.0
119
+ # via chromadb
120
+ jsonschema-specifications==2025.9.1
121
+ # via jsonschema
122
+ kubernetes==34.1.0
123
+ # via chromadb
124
+ markdown-it-py==4.0.0
125
+ # via rich
126
+ markupsafe==3.0.3
127
+ # via jinja2
128
+ mdurl==0.1.2
129
+ # via markdown-it-py
130
+ mmh3==5.2.0
131
+ # via chromadb
132
+ mpmath==1.3.0
133
+ # via sympy
134
+ numpy==2.3.5
135
+ # via
136
+ # chromadb
137
+ # onnxruntime
138
+ # transformers
139
+ oauthlib==3.3.1
140
+ # via requests-oauthlib
141
+ onnxruntime==1.20.1
142
+ # via
143
+ # agent-cli
144
+ # chromadb
145
+ opentelemetry-api==1.39.1
146
+ # via
147
+ # chromadb
148
+ # opentelemetry-exporter-otlp-proto-grpc
149
+ # opentelemetry-sdk
150
+ # opentelemetry-semantic-conventions
151
+ opentelemetry-exporter-otlp-proto-common==1.39.1
152
+ # via opentelemetry-exporter-otlp-proto-grpc
153
+ opentelemetry-exporter-otlp-proto-grpc==1.39.1
154
+ # via chromadb
155
+ opentelemetry-proto==1.39.1
156
+ # via
157
+ # opentelemetry-exporter-otlp-proto-common
158
+ # opentelemetry-exporter-otlp-proto-grpc
159
+ opentelemetry-sdk==1.39.1
160
+ # via
161
+ # chromadb
162
+ # opentelemetry-exporter-otlp-proto-grpc
163
+ opentelemetry-semantic-conventions==0.60b1
164
+ # via opentelemetry-sdk
165
+ orjson==3.11.5
166
+ # via chromadb
167
+ overrides==7.7.0
168
+ # via chromadb
169
+ packaging==25.0
170
+ # via
171
+ # build
172
+ # huggingface-hub
173
+ # onnxruntime
174
+ # transformers
175
+ posthog==5.4.0
176
+ # via chromadb
177
+ protobuf==6.33.4
178
+ # via
179
+ # googleapis-common-protos
180
+ # onnxruntime
181
+ # opentelemetry-proto
182
+ psutil==7.2.1 ; sys_platform == 'win32'
183
+ # via agent-cli
184
+ pyasn1==0.6.1
185
+ # via
186
+ # pyasn1-modules
187
+ # rsa
188
+ pyasn1-modules==0.4.2
189
+ # via google-auth
190
+ pybase64==1.4.3
191
+ # via chromadb
192
+ pydantic==2.12.5
193
+ # via
194
+ # agent-cli
195
+ # chromadb
196
+ # fastapi
197
+ # fastapi-cloud-cli
198
+ # pydantic-extra-types
199
+ # pydantic-settings
200
+ pydantic-core==2.41.5
201
+ # via pydantic
202
+ pydantic-extra-types==2.11.0
203
+ # via fastapi
204
+ pydantic-settings==2.12.0
205
+ # via fastapi
206
+ pygments==2.19.2
207
+ # via rich
208
+ pyperclip==1.11.0
209
+ # via agent-cli
210
+ pypika==0.50.0
211
+ # via chromadb
212
+ pyproject-hooks==1.2.0
213
+ # via build
214
+ pyreadline3==3.5.4 ; sys_platform == 'win32'
215
+ # via humanfriendly
216
+ python-dateutil==2.9.0.post0
217
+ # via
218
+ # kubernetes
219
+ # posthog
220
+ python-dotenv==1.2.1
221
+ # via
222
+ # dotenv
223
+ # pydantic-settings
224
+ # uvicorn
225
+ python-multipart==0.0.21
226
+ # via fastapi
227
+ pyyaml==6.0.3
228
+ # via
229
+ # agent-cli
230
+ # chromadb
231
+ # huggingface-hub
232
+ # kubernetes
233
+ # transformers
234
+ # uvicorn
235
+ referencing==0.37.0
236
+ # via
237
+ # jsonschema
238
+ # jsonschema-specifications
239
+ regex==2026.1.15
240
+ # via transformers
241
+ requests==2.32.5
242
+ # via
243
+ # huggingface-hub
244
+ # kubernetes
245
+ # posthog
246
+ # requests-oauthlib
247
+ # transformers
248
+ requests-oauthlib==2.0.0
249
+ # via kubernetes
250
+ rich==14.2.0
251
+ # via
252
+ # agent-cli
253
+ # chromadb
254
+ # rich-toolkit
255
+ # typer
256
+ # typer-slim
257
+ rich-toolkit==0.17.1
258
+ # via
259
+ # fastapi-cli
260
+ # fastapi-cloud-cli
261
+ rignore==0.7.6
262
+ # via fastapi-cloud-cli
263
+ rpds-py==0.30.0
264
+ # via
265
+ # jsonschema
266
+ # referencing
267
+ rsa==4.9.1
268
+ # via google-auth
269
+ safetensors==0.7.0
270
+ # via transformers
271
+ sentry-sdk==2.49.0
272
+ # via fastapi-cloud-cli
273
+ setproctitle==1.3.7
274
+ # via agent-cli
275
+ shellingham==1.5.4
276
+ # via
277
+ # typer
278
+ # typer-slim
279
+ six==1.17.0
280
+ # via
281
+ # kubernetes
282
+ # posthog
283
+ # python-dateutil
284
+ starlette==0.50.0
285
+ # via fastapi
286
+ sympy==1.14.0
287
+ # via onnxruntime
288
+ tenacity==9.1.2
289
+ # via chromadb
290
+ tokenizers==0.22.2
291
+ # via
292
+ # chromadb
293
+ # transformers
294
+ tqdm==4.67.1
295
+ # via
296
+ # chromadb
297
+ # huggingface-hub
298
+ # transformers
299
+ transformers==4.57.5
300
+ # via agent-cli
301
+ typer==0.21.1
302
+ # via
303
+ # agent-cli
304
+ # chromadb
305
+ # fastapi-cli
306
+ # fastapi-cloud-cli
307
+ typer-slim==0.21.1
308
+ # via agent-cli
309
+ typing-extensions==4.15.0
310
+ # via
311
+ # anyio
312
+ # chromadb
313
+ # fastapi
314
+ # grpcio
315
+ # huggingface-hub
316
+ # opentelemetry-api
317
+ # opentelemetry-exporter-otlp-proto-grpc
318
+ # opentelemetry-sdk
319
+ # opentelemetry-semantic-conventions
320
+ # pydantic
321
+ # pydantic-core
322
+ # pydantic-extra-types
323
+ # referencing
324
+ # rich-toolkit
325
+ # starlette
326
+ # typer
327
+ # typer-slim
328
+ # typing-inspection
329
+ typing-inspection==0.4.2
330
+ # via
331
+ # pydantic
332
+ # pydantic-settings
333
+ urllib3==2.3.0
334
+ # via
335
+ # kubernetes
336
+ # requests
337
+ # sentry-sdk
338
+ uvicorn==0.40.0
339
+ # via
340
+ # chromadb
341
+ # fastapi
342
+ # fastapi-cli
343
+ # fastapi-cloud-cli
344
+ uvloop==0.22.1 ; platform_python_implementation != 'PyPy' and sys_platform != 'cygwin' and sys_platform != 'win32'
345
+ # via uvicorn
346
+ watchfiles==1.1.1
347
+ # via
348
+ # agent-cli
349
+ # uvicorn
350
+ websocket-client==1.9.0
351
+ # via kubernetes
352
+ websockets==15.0.1
353
+ # via uvicorn
354
+ zipp==3.23.0
355
+ # via importlib-metadata