-
Notifications
You must be signed in to change notification settings - Fork 0
docs: update missing tools and commands #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -8,7 +8,7 @@ | |||||
|
|
||||||
| A general-purpose local agent that runs on anything — from a 2013 Mac Pro trashcan to a PowerBook G4 to an IBM POWER8 mainframe. No cloud, no API keys, no dependencies beyond Python 3.7 and any local LLM server. | ||||||
|
|
||||||
| **14 tools. 21 commands. Plugin system. Achievements. Zero dependencies.** | ||||||
| **15 tools. 23 commands. Plugin system. Achievements. Zero dependencies.** | ||||||
|
|
||||||
| ## What it does | ||||||
|
|
||||||
|
|
@@ -47,7 +47,7 @@ TRASHCLAW_URL=http://your-server:8080 python3 trashclaw.py | |||||
|
|
||||||
| No pip install. Single file. Zero dependencies. Python 3.7+ stdlib only. | ||||||
|
|
||||||
| ## Tools (14 built-in + unlimited plugins) | ||||||
| ## Tools (15 built-in + unlimited plugins) | ||||||
|
|
||||||
| | Tool | Description | | ||||||
| |------|-------------| | ||||||
|
|
@@ -63,10 +63,12 @@ No pip install. Single file. Zero dependencies. Python 3.7+ stdlib only. | |||||
| | `git_status` | Show modified/staged/untracked files | | ||||||
| | `git_diff` | Show unstaged or staged changes | | ||||||
| | `git_commit` | Stage all changes and commit | | ||||||
|
|
||||||
| | `clipboard` | Copy/paste from system clipboard | | ||||||
| | `think` | Reason through problems before acting | | ||||||
| | `view_image` | Open an image file for visual analysis | | ||||||
|
|
||||||
| ## Commands (21) | ||||||
| ## Commands (23) | ||||||
|
|
||||||
| | Command | Description | | ||||||
| |---------|-------------| | ||||||
|
|
@@ -86,8 +88,11 @@ No pip install. Single file. Zero dependencies. Python 3.7+ stdlib only. | |||||
| | `/sessions` | List saved sessions | | ||||||
| | `/stats` | Show generation stats (tokens, time, tok/s) | | ||||||
| | `/status` | Server, model, context, git branch, stats | | ||||||
|
|
||||||
|
||||||
Copilot
AI
Mar 21, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README now states "Commands (23)", but the CLI also supports /quit (and /q) as exit aliases (see handle_slash in trashclaw.py). Consider documenting these aliases (or adjusting the command count wording) so the list matches the actual command surface area.
| | `/exit` | Quit | | |
| | `/exit` (`/quit`, `/q`) | Quit | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The blank line inside the Markdown table (between
git_commitandclipboard) terminates the table in GitHub-flavored Markdown, causing the following rows (clipboard/think/view_image) to render outside the table. Remove the blank line (or add a new header/separator if you intend to start a second table).