agent-cli 0.64.2__py3-none-any.whl → 0.65.0__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 +1 -28
- {agent_cli-0.64.2.dist-info → agent_cli-0.65.0.dist-info}/METADATA +21 -1
- {agent_cli-0.64.2.dist-info → agent_cli-0.65.0.dist-info}/RECORD +6 -6
- {agent_cli-0.64.2.dist-info → agent_cli-0.65.0.dist-info}/WHEEL +0 -0
- {agent_cli-0.64.2.dist-info → agent_cli-0.65.0.dist-info}/entry_points.txt +0 -0
- {agent_cli-0.64.2.dist-info → agent_cli-0.65.0.dist-info}/licenses/LICENSE +0 -0
agent_cli/dev/cli.py
CHANGED
|
@@ -673,10 +673,6 @@ def new( # noqa: PLR0912, PLR0915
|
|
|
673
673
|
|
|
674
674
|
@app.command("list")
|
|
675
675
|
def list_envs(
|
|
676
|
-
porcelain: Annotated[
|
|
677
|
-
bool,
|
|
678
|
-
typer.Option("--porcelain", "-p", help="Machine-readable output"),
|
|
679
|
-
] = False,
|
|
680
676
|
json_output: Annotated[
|
|
681
677
|
bool,
|
|
682
678
|
typer.Option("--json", help="Output as JSON for automation"),
|
|
@@ -710,11 +706,6 @@ def list_envs(
|
|
|
710
706
|
print(json.dumps({"worktrees": data}))
|
|
711
707
|
return
|
|
712
708
|
|
|
713
|
-
if porcelain:
|
|
714
|
-
for wt in worktrees:
|
|
715
|
-
print(f"{wt.path.as_posix()}\t{wt.branch or '(detached)'}")
|
|
716
|
-
return
|
|
717
|
-
|
|
718
709
|
table = Table(title="Dev Environments (Git Worktrees)")
|
|
719
710
|
table.add_column("Name", style="cyan")
|
|
720
711
|
table.add_column("Branch", style="green")
|
|
@@ -784,15 +775,11 @@ def _is_stale(status: worktree.WorktreeStatus, stale_days: int) -> bool:
|
|
|
784
775
|
|
|
785
776
|
|
|
786
777
|
@app.command("status")
|
|
787
|
-
def status_cmd( # noqa:
|
|
778
|
+
def status_cmd( # noqa: PLR0915
|
|
788
779
|
stale_days: Annotated[
|
|
789
780
|
int,
|
|
790
781
|
typer.Option("--stale-days", "-s", help="Highlight worktrees inactive for N+ days"),
|
|
791
782
|
] = 7,
|
|
792
|
-
porcelain: Annotated[
|
|
793
|
-
bool,
|
|
794
|
-
typer.Option("--porcelain", "-p", help="Machine-readable output"),
|
|
795
|
-
] = False,
|
|
796
783
|
json_output: Annotated[
|
|
797
784
|
bool,
|
|
798
785
|
typer.Option("--json", help="Output as JSON for automation"),
|
|
@@ -836,20 +823,6 @@ def status_cmd( # noqa: PLR0912, PLR0915
|
|
|
836
823
|
print(json.dumps({"worktrees": data, "stale_days": stale_days}))
|
|
837
824
|
return
|
|
838
825
|
|
|
839
|
-
if porcelain:
|
|
840
|
-
# Machine-readable: name\tbranch\tmodified\tstaged\tuntracked\tahead\tbehind\ttimestamp
|
|
841
|
-
for wt in worktrees:
|
|
842
|
-
status = worktree.get_worktree_status(wt.path)
|
|
843
|
-
if status:
|
|
844
|
-
print(
|
|
845
|
-
f"{wt.name}\t{wt.branch or ''}\t"
|
|
846
|
-
f"{status.modified}\t{status.staged}\t{status.untracked}\t"
|
|
847
|
-
f"{status.ahead}\t{status.behind}\t{status.last_commit_timestamp or ''}",
|
|
848
|
-
)
|
|
849
|
-
else:
|
|
850
|
-
print(f"{wt.name}\t{wt.branch or ''}\t\t\t\t\t\t")
|
|
851
|
-
return
|
|
852
|
-
|
|
853
826
|
table = Table(title="Dev Environment Status")
|
|
854
827
|
table.add_column("Name", style="cyan")
|
|
855
828
|
table.add_column("Branch", style="green")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.65.0
|
|
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>
|
|
@@ -220,6 +220,7 @@ The setup scripts automatically install:
|
|
|
220
220
|
- [System Integration](#system-integration)
|
|
221
221
|
- [macOS Hotkeys](#macos-hotkeys)
|
|
222
222
|
- [Linux Hotkeys](#linux-hotkeys)
|
|
223
|
+
- [Claude Code Plugin](#claude-code-plugin)
|
|
223
224
|
- [Prerequisites](#prerequisites)
|
|
224
225
|
- [What You Need to Install Manually](#what-you-need-to-install-manually)
|
|
225
226
|
- [What the Setup Scripts Install for You](#what-the-setup-scripts-install-for-you)
|
|
@@ -367,6 +368,25 @@ This script automatically:
|
|
|
367
368
|
|
|
368
369
|
The script supports Hyprland, GNOME, KDE, Sway, i3, XFCE, and provides instructions for manual configuration on other environments.
|
|
369
370
|
|
|
371
|
+
### Claude Code Plugin
|
|
372
|
+
|
|
373
|
+
The [`dev`](docs/commands/dev.md) command is also available as a **Claude Code plugin**, enabling Claude to automatically spawn parallel AI agents in isolated git worktrees when you ask it to work on multiple features.
|
|
374
|
+
|
|
375
|
+
```bash
|
|
376
|
+
# Option 1: Install skill directly in your project (recommended)
|
|
377
|
+
agent-cli dev install-skill
|
|
378
|
+
|
|
379
|
+
# Option 2: Install via Claude Code plugin marketplace
|
|
380
|
+
claude plugin marketplace add basnijholt/agent-cli
|
|
381
|
+
claude plugin install agent-cli@agent-cli-dev
|
|
382
|
+
```
|
|
383
|
+
|
|
384
|
+
Once installed, Claude Code can automatically use this skill when you ask to:
|
|
385
|
+
- "Work on these 3 features in parallel"
|
|
386
|
+
- "Spawn agents for auth and payments"
|
|
387
|
+
- "Delegate this refactoring to a separate agent"
|
|
388
|
+
|
|
389
|
+
See the [plugin documentation](.claude-plugin/README.md) for more details.
|
|
370
390
|
|
|
371
391
|
## Prerequisites
|
|
372
392
|
|
|
@@ -37,7 +37,7 @@ agent_cli/core/utils.py,sha256=MHttXeGiM9qGUNxK0s6vAHthh033TDjaruqocdtMMFY,16802
|
|
|
37
37
|
agent_cli/core/vad.py,sha256=67-EBjY-pTOf61VhrjVdDXgaNIBwWFFFccYth_1rQmg,6569
|
|
38
38
|
agent_cli/core/watch.py,sha256=MKgGxxMe0yLlu78-XXqO4ferCpu_ljNr4MAzOMDsuuo,1951
|
|
39
39
|
agent_cli/dev/__init__.py,sha256=doTYiUFEBpnOxsQA69HQP9AA4QHBN0DjuHSTGRq5Xbg,551
|
|
40
|
-
agent_cli/dev/cli.py,sha256=
|
|
40
|
+
agent_cli/dev/cli.py,sha256=SWTQzyCVWHQCfILH7fcwAziFqwsIRPa6w4wIiG6i1YQ,51121
|
|
41
41
|
agent_cli/dev/project.py,sha256=wJMGKTK1rmw8letrV6l6wcLU1fkQQDjCSEixAnsvyaY,18971
|
|
42
42
|
agent_cli/dev/registry.py,sha256=c6t3ClyRFPvU4GGXJT79-D-qV4FqY7W_7P-tLT7LKZs,1887
|
|
43
43
|
agent_cli/dev/worktree.py,sha256=Yw8jlhkf8BeKFc6pPEazGXnUIvryvYwbUmYxTluXILs,26916
|
|
@@ -173,8 +173,8 @@ agent_cli/services/asr.py,sha256=V6SV-USnMhK-0aE-pneiktU4HpmLqenmMb-jZ-_74zU,169
|
|
|
173
173
|
agent_cli/services/llm.py,sha256=Kwdo6pbMYI9oykF-RBe1iaL3KsYrNWTLdRSioewmsGQ,7199
|
|
174
174
|
agent_cli/services/tts.py,sha256=exKo-55_670mx8dQOzVSZkv6aWYLv04SVmBcjOlD458,14772
|
|
175
175
|
agent_cli/services/wake_word.py,sha256=j6Z8rsGq_vAdRevy9fkXIgLZd9UWfrIsefmTreNmM0c,4575
|
|
176
|
-
agent_cli-0.
|
|
177
|
-
agent_cli-0.
|
|
178
|
-
agent_cli-0.
|
|
179
|
-
agent_cli-0.
|
|
180
|
-
agent_cli-0.
|
|
176
|
+
agent_cli-0.65.0.dist-info/METADATA,sha256=ghKc18V3O-hqAi9Gfrxa_H3QfRP9T8rd6b_YvyVsYtw,152568
|
|
177
|
+
agent_cli-0.65.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
178
|
+
agent_cli-0.65.0.dist-info/entry_points.txt,sha256=FUv-fB2atLsPUk_RT4zqnZl1coz4_XHFwRALOKOF38s,97
|
|
179
|
+
agent_cli-0.65.0.dist-info/licenses/LICENSE,sha256=majJU6S9kC8R8bW39NVBHyv32Dq50FL6TDxECG2WVts,1068
|
|
180
|
+
agent_cli-0.65.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|