agent-cli 0.72.3__py3-none-any.whl → 0.72.5__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/dev/cli.py +5 -1
- agent_cli/install/extras.py +3 -1
- {agent_cli-0.72.3.dist-info → agent_cli-0.72.5.dist-info}/METADATA +3 -3
- {agent_cli-0.72.3.dist-info → agent_cli-0.72.5.dist-info}/RECORD +7 -7
- {agent_cli-0.72.3.dist-info → agent_cli-0.72.5.dist-info}/WHEEL +0 -0
- {agent_cli-0.72.3.dist-info → agent_cli-0.72.5.dist-info}/entry_points.txt +0 -0
- {agent_cli-0.72.3.dist-info → agent_cli-0.72.5.dist-info}/licenses/LICENSE +0 -0
agent_cli/dev/cli.py
CHANGED
|
@@ -176,6 +176,8 @@ def _info(msg: str) -> None:
|
|
|
176
176
|
# Style commands (messages starting with "Running: ")
|
|
177
177
|
if msg.startswith("Running: "):
|
|
178
178
|
cmd = msg[9:] # Remove "Running: " prefix
|
|
179
|
+
# Escape brackets to prevent Rich from interpreting them as markup
|
|
180
|
+
cmd = cmd.replace("[", r"\[")
|
|
179
181
|
console.print(f"[dim]→[/dim] Running: [bold cyan]{cmd}[/bold cyan]")
|
|
180
182
|
else:
|
|
181
183
|
console.print(f"[dim]→[/dim] {msg}")
|
|
@@ -1777,7 +1779,9 @@ def install_skill(
|
|
|
1777
1779
|
- Works when you ask to "work on multiple features" or "parallelize tasks"
|
|
1778
1780
|
|
|
1779
1781
|
**Alternative:** Install globally via Claude Code plugin marketplace:
|
|
1780
|
-
|
|
1782
|
+
|
|
1783
|
+
1. `claude plugin marketplace add basnijholt/agent-cli`
|
|
1784
|
+
2. `claude plugin install agent-cli-dev@agent-cli`
|
|
1781
1785
|
"""
|
|
1782
1786
|
# Use current repo root (works in worktrees too)
|
|
1783
1787
|
repo_root = _get_current_repo_root()
|
agent_cli/install/extras.py
CHANGED
|
@@ -68,7 +68,9 @@ def _install_via_uv_tool(extras: list[str], *, quiet: bool = False) -> bool:
|
|
|
68
68
|
if quiet:
|
|
69
69
|
cmd.append("-q")
|
|
70
70
|
# Use stderr for status messages so they don't pollute stdout (e.g., for hotkey notifications)
|
|
71
|
-
|
|
71
|
+
# Escape brackets to prevent Rich from interpreting them as markup
|
|
72
|
+
cmd_str = " ".join(cmd).replace("[", r"\[")
|
|
73
|
+
err_console.print(f"Running: [cyan]{cmd_str}[/]")
|
|
72
74
|
result = subprocess.run(cmd, check=False)
|
|
73
75
|
return result.returncode == 0
|
|
74
76
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-cli
|
|
3
|
-
Version: 0.72.
|
|
3
|
+
Version: 0.72.5
|
|
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>
|
|
@@ -88,7 +88,7 @@ Description-Content-Type: text/markdown
|
|
|
88
88
|
|
|
89
89
|
# Agent CLI
|
|
90
90
|
|
|
91
|
-
<img src="https://raw.githubusercontent.com/basnijholt/agent-cli/refs/heads/main/.github/logo.svg" alt="agent-cli logo" align="right" style="width:
|
|
91
|
+
<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
92
|
|
|
93
93
|
`agent-cli` is a collection of **_local-first_**, AI-powered command-line agents that run entirely on your machine.
|
|
94
94
|
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 +391,7 @@ agent-cli dev install-skill
|
|
|
391
391
|
|
|
392
392
|
# Option 2: Install via Claude Code plugin marketplace
|
|
393
393
|
claude plugin marketplace add basnijholt/agent-cli
|
|
394
|
-
claude plugin install agent-cli@agent-cli
|
|
394
|
+
claude plugin install agent-cli-dev@agent-cli
|
|
395
395
|
```
|
|
396
396
|
|
|
397
397
|
Once installed, Claude Code can automatically use this skill when you ask to:
|
|
@@ -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=
|
|
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
|
|
@@ -92,7 +92,7 @@ agent_cli/dev/terminals/warp.py,sha256=j-Jvz_BbWYC3QfLrvl4CbDh03c9OGRFmuCzjyB2ud
|
|
|
92
92
|
agent_cli/dev/terminals/zellij.py,sha256=GnQnopimb9XH67CZGHjnbVWpVSWhaLCATGJizCT5TkY,2321
|
|
93
93
|
agent_cli/install/__init__.py,sha256=JQPrOrtdNd1Y1NmQDkb3Nmm1qdyn3kPjhQwy9D8ryjI,124
|
|
94
94
|
agent_cli/install/common.py,sha256=WvnmcjnFTW0d1HZrKVGzj5Tg3q8Txk_ZOdc4a1MBFWI,3121
|
|
95
|
-
agent_cli/install/extras.py,sha256=
|
|
95
|
+
agent_cli/install/extras.py,sha256=HgqgpFz46jVxkGSFSyi8OrM40LMMNdjEAHBhFnZ4NbQ,7196
|
|
96
96
|
agent_cli/install/hotkeys.py,sha256=Y7jjtbyjVzIXL1_aczJmOyjL0ud2epbrFbzuWlObqZY,2324
|
|
97
97
|
agent_cli/install/services.py,sha256=mgFjNqvvZ9U2dJ_PcEVWcenlaOtdIZ5a-RyDofDqooY,4209
|
|
98
98
|
agent_cli/memory/__init__.py,sha256=8XNpVzP-qjF8o49A_eXsH_Rbp_FmxTIcknnvxq7vHms,162
|
|
@@ -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.
|
|
193
|
-
agent_cli-0.72.
|
|
194
|
-
agent_cli-0.72.
|
|
195
|
-
agent_cli-0.72.
|
|
196
|
-
agent_cli-0.72.
|
|
192
|
+
agent_cli-0.72.5.dist-info/METADATA,sha256=BgJJJo3ocLnHjGZuUif6xX6C-3Hq1FisHakwUPNPBIg,179670
|
|
193
|
+
agent_cli-0.72.5.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
194
|
+
agent_cli-0.72.5.dist-info/entry_points.txt,sha256=FUv-fB2atLsPUk_RT4zqnZl1coz4_XHFwRALOKOF38s,97
|
|
195
|
+
agent_cli-0.72.5.dist-info/licenses/LICENSE,sha256=majJU6S9kC8R8bW39NVBHyv32Dq50FL6TDxECG2WVts,1068
|
|
196
|
+
agent_cli-0.72.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|