batrachian-toad 0.5.22__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.
- batrachian_toad-0.5.22.dist-info/METADATA +197 -0
- batrachian_toad-0.5.22.dist-info/RECORD +120 -0
- batrachian_toad-0.5.22.dist-info/WHEEL +4 -0
- batrachian_toad-0.5.22.dist-info/entry_points.txt +2 -0
- batrachian_toad-0.5.22.dist-info/licenses/LICENSE +661 -0
- toad/__init__.py +46 -0
- toad/__main__.py +4 -0
- toad/_loop.py +86 -0
- toad/about.py +90 -0
- toad/acp/agent.py +671 -0
- toad/acp/api.py +47 -0
- toad/acp/encode_tool_call_id.py +12 -0
- toad/acp/messages.py +138 -0
- toad/acp/prompt.py +54 -0
- toad/acp/protocol.py +426 -0
- toad/agent.py +62 -0
- toad/agent_schema.py +70 -0
- toad/agents.py +45 -0
- toad/ansi/__init__.py +1 -0
- toad/ansi/_ansi.py +1612 -0
- toad/ansi/_ansi_colors.py +264 -0
- toad/ansi/_control_codes.py +37 -0
- toad/ansi/_keys.py +251 -0
- toad/ansi/_sgr_styles.py +64 -0
- toad/ansi/_stream_parser.py +418 -0
- toad/answer.py +22 -0
- toad/app.py +557 -0
- toad/atomic.py +37 -0
- toad/cli.py +257 -0
- toad/code_analyze.py +28 -0
- toad/complete.py +34 -0
- toad/constants.py +58 -0
- toad/conversation_markdown.py +19 -0
- toad/danger.py +371 -0
- toad/data/agents/ampcode.com.toml +51 -0
- toad/data/agents/augmentcode.com.toml +40 -0
- toad/data/agents/claude.com.toml +41 -0
- toad/data/agents/docker.com.toml +59 -0
- toad/data/agents/geminicli.com.toml +28 -0
- toad/data/agents/goose.ai.toml +51 -0
- toad/data/agents/inference.huggingface.co.toml +33 -0
- toad/data/agents/kimi.com.toml +35 -0
- toad/data/agents/openai.com.toml +53 -0
- toad/data/agents/opencode.ai.toml +61 -0
- toad/data/agents/openhands.dev.toml +44 -0
- toad/data/agents/stakpak.dev.toml +61 -0
- toad/data/agents/vibe.mistral.ai.toml +27 -0
- toad/data/agents/vtcode.dev.toml +62 -0
- toad/data/images/frog.png +0 -0
- toad/data/sounds/turn-over.wav +0 -0
- toad/db.py +5 -0
- toad/dec.py +332 -0
- toad/directory.py +234 -0
- toad/directory_watcher.py +96 -0
- toad/fuzzy.py +140 -0
- toad/gist.py +2 -0
- toad/history.py +138 -0
- toad/jsonrpc.py +576 -0
- toad/menus.py +14 -0
- toad/messages.py +74 -0
- toad/option_content.py +51 -0
- toad/os.py +0 -0
- toad/path_complete.py +145 -0
- toad/path_filter.py +124 -0
- toad/paths.py +71 -0
- toad/pill.py +23 -0
- toad/prompt/extract.py +19 -0
- toad/prompt/resource.py +68 -0
- toad/protocol.py +28 -0
- toad/screens/action_modal.py +94 -0
- toad/screens/agent_modal.py +172 -0
- toad/screens/command_edit_modal.py +58 -0
- toad/screens/main.py +192 -0
- toad/screens/permissions.py +390 -0
- toad/screens/permissions.tcss +72 -0
- toad/screens/settings.py +254 -0
- toad/screens/settings.tcss +101 -0
- toad/screens/store.py +476 -0
- toad/screens/store.tcss +261 -0
- toad/settings.py +354 -0
- toad/settings_schema.py +318 -0
- toad/shell.py +263 -0
- toad/shell_read.py +42 -0
- toad/slash_command.py +34 -0
- toad/toad.tcss +752 -0
- toad/version.py +80 -0
- toad/visuals/columns.py +273 -0
- toad/widgets/agent_response.py +79 -0
- toad/widgets/agent_thought.py +41 -0
- toad/widgets/command_pane.py +224 -0
- toad/widgets/condensed_path.py +93 -0
- toad/widgets/conversation.py +1626 -0
- toad/widgets/danger_warning.py +65 -0
- toad/widgets/diff_view.py +709 -0
- toad/widgets/flash.py +81 -0
- toad/widgets/future_text.py +126 -0
- toad/widgets/grid_select.py +223 -0
- toad/widgets/highlighted_textarea.py +180 -0
- toad/widgets/mandelbrot.py +294 -0
- toad/widgets/markdown_note.py +13 -0
- toad/widgets/menu.py +147 -0
- toad/widgets/non_selectable_label.py +5 -0
- toad/widgets/note.py +18 -0
- toad/widgets/path_search.py +381 -0
- toad/widgets/plan.py +180 -0
- toad/widgets/project_directory_tree.py +74 -0
- toad/widgets/prompt.py +741 -0
- toad/widgets/question.py +337 -0
- toad/widgets/shell_result.py +35 -0
- toad/widgets/shell_terminal.py +18 -0
- toad/widgets/side_bar.py +74 -0
- toad/widgets/slash_complete.py +211 -0
- toad/widgets/strike_text.py +66 -0
- toad/widgets/terminal.py +526 -0
- toad/widgets/terminal_tool.py +338 -0
- toad/widgets/throbber.py +90 -0
- toad/widgets/tool_call.py +303 -0
- toad/widgets/user_input.py +23 -0
- toad/widgets/version.py +5 -0
- toad/widgets/welcome.py +31 -0
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: batrachian-toad
|
|
3
|
+
Version: 0.5.22
|
|
4
|
+
Summary: A unified experience for AI in your terminal.
|
|
5
|
+
License-File: LICENSE
|
|
6
|
+
Requires-Python: >=3.14
|
|
7
|
+
Requires-Dist: bashlex>=0.18
|
|
8
|
+
Requires-Dist: click>=8.2.1
|
|
9
|
+
Requires-Dist: gitpython>=3.1.44
|
|
10
|
+
Requires-Dist: google-re2>=1.1.20251105
|
|
11
|
+
Requires-Dist: httpx>=0.28.1
|
|
12
|
+
Requires-Dist: notify-py>=0.3.43
|
|
13
|
+
Requires-Dist: packaging>=25.0
|
|
14
|
+
Requires-Dist: pathspec>=0.12.1
|
|
15
|
+
Requires-Dist: platformdirs>=4.3.8
|
|
16
|
+
Requires-Dist: pyperclip>=1.11.0
|
|
17
|
+
Requires-Dist: rich
|
|
18
|
+
Requires-Dist: textual-serve>=1.1.2
|
|
19
|
+
Requires-Dist: textual-speedups==0.2.1
|
|
20
|
+
Requires-Dist: textual[syntax]>=7.0.0
|
|
21
|
+
Requires-Dist: tree-sitter>=0.24.0
|
|
22
|
+
Requires-Dist: typeguard>=4.4.4
|
|
23
|
+
Requires-Dist: watchdog>=6.0.0
|
|
24
|
+
Requires-Dist: xdg-base-dirs>=6.0.2
|
|
25
|
+
Description-Content-Type: text/markdown
|
|
26
|
+
|
|
27
|
+
# Toad
|
|
28
|
+
|
|
29
|
+
A unified interface for AI in your terminal ([release announcement](https://willmcgugan.github.io/toad-released/)).
|
|
30
|
+
|
|
31
|
+
Run coding agents seamlessly under a single beautiful terminal UI, thanks to the [ACP](https://agentclientprotocol.com/protocol/initialization) protocol.
|
|
32
|
+
|
|
33
|
+
<table>
|
|
34
|
+
|
|
35
|
+
<tbody>
|
|
36
|
+
|
|
37
|
+
<tr>
|
|
38
|
+
<td><img alt="Screenshot 2025-10-23 at 08 58 58" src="https://github.com/user-attachments/assets/98387559-2e10-485a-8a7d-82cb00ed7622" /></td>
|
|
39
|
+
<td><img alt="Screenshot 2025-10-23 at 08 59 04" src="https://github.com/user-attachments/assets/d4231320-b678-47ba-99ce-02746ca2622b" /></td>
|
|
40
|
+
</tr>
|
|
41
|
+
|
|
42
|
+
<tr>
|
|
43
|
+
<td><img alt="Screenshot 2025-10-23 at 08 59 22" src="https://github.com/user-attachments/assets/ddba550d-ff33-45ad-9f93-281187f5c974" /></td>
|
|
44
|
+
<td><img alt="Screenshot 2025-10-23 at 08 59 37" src="https://github.com/user-attachments/assets/e7943272-39a5-40a1-bedf-e440002e1290" /></td>
|
|
45
|
+
</tr>
|
|
46
|
+
|
|
47
|
+
</tbody>
|
|
48
|
+
|
|
49
|
+
</table>
|
|
50
|
+
|
|
51
|
+
## Video
|
|
52
|
+
|
|
53
|
+
Watch a preview of the Toad User Interface:
|
|
54
|
+
|
|
55
|
+
https://github.com/user-attachments/assets/ced36f4b-db02-4d29-8a0a-14ec64b22881
|
|
56
|
+
|
|
57
|
+
## Compatibility
|
|
58
|
+
|
|
59
|
+
Toad runs on Linux and macOS. Native Windows support is currently lacking (but on the roadmap), but Toad will run quite well with WSL.
|
|
60
|
+
|
|
61
|
+
Toad is a terminal application.
|
|
62
|
+
Any terminal will work, although if you are using the default terminal on macOS you will get a much reduced experience.
|
|
63
|
+
I recommend [Ghostty](https://ghostty.org/) which is fully featured and has amazing performance.
|
|
64
|
+
|
|
65
|
+
### Clipboard
|
|
66
|
+
|
|
67
|
+
On Linux, you may need to install `xclip` to enable clipboard support.
|
|
68
|
+
|
|
69
|
+
```
|
|
70
|
+
sudo apt install xclip
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Alternative shells
|
|
74
|
+
|
|
75
|
+
I'd like Toad to run multiple shells, but there are some compatibility issues I need to work out first, so for the moment the default is to use `/bin/sh`.
|
|
76
|
+
|
|
77
|
+
You can change the shell in settings. If you have any success, let me know.
|
|
78
|
+
|
|
79
|
+
## Getting Started
|
|
80
|
+
|
|
81
|
+
The easiest way to install Toad is by pasting the following in to your terminal:
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
curl -fsSL batrachian.ai/install | sh
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
You should now have `toad` installed.
|
|
88
|
+
|
|
89
|
+
If that doesn't work for any reason, then you can install with the following steps:
|
|
90
|
+
|
|
91
|
+
First [install UV](https://docs.astral.sh/uv/getting-started/installation/):
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
Then use UV to install toad:
|
|
98
|
+
|
|
99
|
+
```bash
|
|
100
|
+
uv tool install -U batrachian-toad --python 3.14
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## Using Toad
|
|
104
|
+
|
|
105
|
+
Launch Toad with the following:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
toad
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
You should see something like this:
|
|
112
|
+
|
|
113
|
+
<img alt="front-fs8" src="https://github.com/user-attachments/assets/8831f7de-5349-4b3f-9de9-d4565b513108" />
|
|
114
|
+
|
|
115
|
+
From this screen you will be able to find, install, and launch a coding agent.
|
|
116
|
+
If you already have an agent installed, you can skip the install step.
|
|
117
|
+
To launch an agent, select it and press space.
|
|
118
|
+
|
|
119
|
+
The footer will always display the most significant keys for the current context.
|
|
120
|
+
To see all the keys, summon the command palette with `ctrl+p` and search for "keys".
|
|
121
|
+
|
|
122
|
+
### Toad CLI
|
|
123
|
+
|
|
124
|
+
When running Toad, the current working directory is assumed to be your project directory.
|
|
125
|
+
To use another project directory, add the path to the command.
|
|
126
|
+
For example:
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
toad ~/projects/my-awesome-app
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
If you want to skip the initial agent screen, add the `-a` switch with the name of your chosen agent.
|
|
133
|
+
For example:
|
|
134
|
+
|
|
135
|
+
```bash
|
|
136
|
+
toad -a open-hands
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
To see all subcommands and switches, add the `--help` switch:
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
toad --help
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
### Web server
|
|
146
|
+
|
|
147
|
+
You can run Toad as a web application.
|
|
148
|
+
|
|
149
|
+
Run the following, and click the link in the terminal:
|
|
150
|
+
|
|
151
|
+
```bash
|
|
152
|
+
toad serve
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+

|
|
156
|
+
|
|
157
|
+
## Toad development
|
|
158
|
+
|
|
159
|
+
Toad was built by [Will McGugan](https://github.com/willmcgugan) and is currently under active development.
|
|
160
|
+
|
|
161
|
+
To discuss Toad, see the Discussions tab, or join the #toad channel on the [Textualize discord server](https://discord.gg/Enf6Z3qhVr).
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
### Roadmap
|
|
166
|
+
|
|
167
|
+
Some planned features:
|
|
168
|
+
|
|
169
|
+
- UI for MCP servers
|
|
170
|
+
- Expose model selection (waiting on ACP update)
|
|
171
|
+
- Sessions
|
|
172
|
+
- Multiple agents
|
|
173
|
+
- Windows native support
|
|
174
|
+
- Builtin editor
|
|
175
|
+
- Sidebar (widgets)
|
|
176
|
+
- Git pending changes
|
|
177
|
+
|
|
178
|
+
### Reporting bugs
|
|
179
|
+
|
|
180
|
+
This project is trialling a non-traditional approach to issues.
|
|
181
|
+
Before an issue is created, there must be a post in Dicussions, approved by a Toad dev (Currently @willmcgugan).
|
|
182
|
+
|
|
183
|
+
By allowing the discussions to happen in the Discussion tabs, issues can be reserved for actionable tasks with a clear description and goal.
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
toad/__init__.py,sha256=3VtQhN5H-WWu-AgT4Aqqx2yxhq8WOp4P4adkA3qkYzc,1044
|
|
2
|
+
toad/__main__.py,sha256=xtWkgC_sOf2-_wUzMnH2XNyV2am9UwcFx7X0WVoiGFs,65
|
|
3
|
+
toad/_loop.py,sha256=2N2GLMdpG9Bs72VcAzq5cTO8a2kzFbo1kiUbD62AIKs,2602
|
|
4
|
+
toad/about.py,sha256=5LigHgpT8kKqdMp0KMsoRCl8ODXXaU_Tt1r--X4Cuys,2144
|
|
5
|
+
toad/agent.py,sha256=n8ZmJSCpc9fcbQn5Ao6D9an2bWVHrkIVsSTVXjMy2_A,1309
|
|
6
|
+
toad/agent_schema.py,sha256=_wxJMueO-wF1YZ-ZOumRNsgQG68ehqIIWnGY5TiSWVk,3229
|
|
7
|
+
toad/agents.py,sha256=ZImkw5TYBWbNAhg2fzAPJj2npw5wJpGpKbSfDgCHhx0,1113
|
|
8
|
+
toad/answer.py,sha256=QA_bZ3xXRrNmz5PzK8f7OGtcYnDjObRRsFN0ZaIgCN8,606
|
|
9
|
+
toad/app.py,sha256=0pvR3hJncvj4mdg93yjk2mBKD0rE01CzKS6k91CL0Vs,20194
|
|
10
|
+
toad/atomic.py,sha256=QJjmxPvXkR8NXG_dAy5XQjGbACSmSNvswUqC42OgvL4,1010
|
|
11
|
+
toad/cli.py,sha256=fovwppca9l897T2kHUA_EWzP1-qa3VqdbBTmsaBy7tc,6821
|
|
12
|
+
toad/code_analyze.py,sha256=n2V4n1opGvK0X9gMXuGywLlnCEai1rXb16ojjqTUAB0,841
|
|
13
|
+
toad/complete.py,sha256=_Hcfh2XnmSwG3rwHgE97RpVwV0ijwmXw3vNqdBM2B6A,878
|
|
14
|
+
toad/constants.py,sha256=9nQo8UiY6MwuyjKMHMXlsI4rSkOdX30kgbkKZ8PfSqA,1521
|
|
15
|
+
toad/conversation_markdown.py,sha256=C4aLmutj2Rg41wxiNE9y33O7I8Wu2OK-6xKz_dFeQLw,557
|
|
16
|
+
toad/danger.py,sha256=6Hsqvc8KBkdvNwUwKuno0tmQ0aoYOgHcVM4mVWuaRSU,8801
|
|
17
|
+
toad/db.py,sha256=9ej2d_OG_pM_kDXJFTED6wDYqG7IzNikiaC0IngCoa0,96
|
|
18
|
+
toad/dec.py,sha256=wtnD86OsAwmhlxpApgOsL2216r5y9dYDfgjY9pQPq68,10051
|
|
19
|
+
toad/directory.py,sha256=goCK1nPsEo-eby7WfQCQqEzfsq1FZUx8914jA7tbhB8,6634
|
|
20
|
+
toad/directory_watcher.py,sha256=DPJ0t4rLoIh04-ihDEsKeRFrHu9nJrq3ckxB0PXWLS4,2527
|
|
21
|
+
toad/fuzzy.py,sha256=kwd2Z1_4xcHnB2FuN5ebbchWb51ykttFf2QVhJjtI08,4308
|
|
22
|
+
toad/gist.py,sha256=o6-IA_jxkV8oWWuPfJikQa9YH21ucPf9S3kLyZnVCPc,49
|
|
23
|
+
toad/history.py,sha256=F2SapGnISqTraoG8RjWEW_9NONGDuHZIzaB0lYnfE54,3792
|
|
24
|
+
toad/jsonrpc.py,sha256=zwEBHIjr8bbR0l1cAW4sJWxCIzWp3rn6mMEI6R_0wMI,17967
|
|
25
|
+
toad/menus.py,sha256=hYS1GMekB7EqwihCxMIgS3WbVdqkxa2htLlrY_hg53o,269
|
|
26
|
+
toad/messages.py,sha256=m8kXLog37RrJ42Fw91rxsdScQu2RwHD54HPyRdsIk-E,1293
|
|
27
|
+
toad/option_content.py,sha256=q0E7vmjPnz71YppUhHv7UQ3jeqhWbEHXiLKF0f2cUQI,1948
|
|
28
|
+
toad/os.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
+
toad/path_complete.py,sha256=lEKXgZMpAVDC7agfP3LUcEZgpk-WDtsOlvoudh1z2R0,4323
|
|
30
|
+
toad/path_filter.py,sha256=6ozbPtfYpkKnEaDVaevRyraR1v6I5zot9a1AKEi6wuM,3812
|
|
31
|
+
toad/paths.py,sha256=j6twXGuzFDnJOMsgdAVkrWVVSNTobDALCXJRmxXWiM8,1760
|
|
32
|
+
toad/pill.py,sha256=iTG4_RTAF3mT96bo-cAEmUybU1bEWI82qZOjQ-tQEf4,669
|
|
33
|
+
toad/protocol.py,sha256=zpx-Ch4ZAwbDAqnjMI6ia1fcjFO2TTfKSSQAwNP5WFA,832
|
|
34
|
+
toad/settings.py,sha256=1SP8qSJ6a3rdGtJor7Ga-5yveaXijrrrysFz1AmVNNo,10962
|
|
35
|
+
toad/settings_schema.py,sha256=LvP8HTlZCHN5xvvQm0AB7zOD4pWo5cx9qwEU8qXrDSg,11685
|
|
36
|
+
toad/shell.py,sha256=BNt5IQoye5fkx7nK2EgDl11mkHIBAEEVaLeN8RvcjLU,8329
|
|
37
|
+
toad/shell_read.py,sha256=mGvf-HMaeiI3sqdCngZ6LDjgA39uGQ9c5jK967E57QI,1413
|
|
38
|
+
toad/slash_command.py,sha256=isGcJep1kkgCEmdTgx11HJAb_ta3e_zY54HoiHyYpmE,849
|
|
39
|
+
toad/toad.tcss,sha256=m4E1FsJZ9C7lj1tYLFSBArXIS_1RKFQ624XYR9N5izk,15434
|
|
40
|
+
toad/version.py,sha256=OB7hkXKoLz7XBHUDrJhhJUcwJLIF2QKfn5xEjXOYnW0,2316
|
|
41
|
+
toad/acp/agent.py,sha256=Ws5GKNBv_GNXHnd_Tp69mghfJVyLo6lt2s3w6qCdvsE,24013
|
|
42
|
+
toad/acp/api.py,sha256=papYA3yePY7I2fFJyrqiGaMciOYg7EcRXhX6ndtsVj0,1246
|
|
43
|
+
toad/acp/encode_tool_call_id.py,sha256=iqUX7roVkE5Vorxd4hHmxTc-f-oRE_zp3maYBjHNdJ8,404
|
|
44
|
+
toad/acp/messages.py,sha256=BP8fYNUi1jiowcI9ZmfSrwW1hD-80BdIdIc6Og6qioo,2729
|
|
45
|
+
toad/acp/prompt.py,sha256=UKVvbYhyaQ78gYOsCpe-of5S2k-SPdbMka1A4SkDyXs,1718
|
|
46
|
+
toad/acp/protocol.py,sha256=jIZABwYncqJa9EXKKP6MnzgJVsyLl8l0FBJ14FW1VKc,10930
|
|
47
|
+
toad/ansi/__init__.py,sha256=9fhlB3xKKR3Qw0kmrJj2MOn46czJWKGhXHGyQZbG02A,59
|
|
48
|
+
toad/ansi/_ansi.py,sha256=Cn1R8qLfd3rs7Mas-KUWKlGvmwgHyo9I6y1sV9BmjQw,56959
|
|
49
|
+
toad/ansi/_ansi_colors.py,sha256=Ikh5lzWV1drxU0AGLatftRzJnSq3MtkQc2gXKLoE2is,5916
|
|
50
|
+
toad/ansi/_control_codes.py,sha256=4DUZli4U1gnJHuIGDZUDNXiW4mhz7BYhE4kVfTPRedA,606
|
|
51
|
+
toad/ansi/_keys.py,sha256=0ctYwLvzfUNaeWo-SZkbRAL3RwO-YBd8RoZQdtHXGJk,10675
|
|
52
|
+
toad/ansi/_sgr_styles.py,sha256=uZ-QJ_pV41FSI2esrOfIE5GbryCr2PXd-loFZMzczf8,2688
|
|
53
|
+
toad/ansi/_stream_parser.py,sha256=Zxm6TCQSnVJ-xBPSrE9tw5W9z1zl_64SDm5mzcZk8Co,12414
|
|
54
|
+
toad/data/agents/ampcode.com.toml,sha256=8zWJWZD0ZiTOr-wqYmD05sHDB0hO_VsQCFbjcz399aQ,1642
|
|
55
|
+
toad/data/agents/augmentcode.com.toml,sha256=SmL_TT6IpRFz0xXnvT7tWYZoGscDG3EbWDdKtiOqdIU,1262
|
|
56
|
+
toad/data/agents/claude.com.toml,sha256=ZazhGsynlwPKvlDIvaQrv7X_XksnLn5j0mINfYfEjQU,1179
|
|
57
|
+
toad/data/agents/docker.com.toml,sha256=gJXxFLujmskqukEtSdzShwR2ya5HKuwAGQviuX46SyY,1907
|
|
58
|
+
toad/data/agents/geminicli.com.toml,sha256=fI3UN2nzevnxuOOjOWHL6KjP9sAKKZZPQ_wFcxgbQk0,847
|
|
59
|
+
toad/data/agents/goose.ai.toml,sha256=wfEFuKYKK4KRyQdB8MpO82DSe7vA5-sDLrnARtmSi8I,1617
|
|
60
|
+
toad/data/agents/inference.huggingface.co.toml,sha256=BoAiwBCUANk0WwHMu1urpDnIeTNG443SHlqxcwzV1Xw,1126
|
|
61
|
+
toad/data/agents/kimi.com.toml,sha256=C9ybn-4-JWjN9hSDD1VOdH7baLp30lq8lPWxENyAH38,1000
|
|
62
|
+
toad/data/agents/openai.com.toml,sha256=k91GpL8JxgWpDMbQZjAXhr1-wrTb9ruDcfoMwOLlPVc,1583
|
|
63
|
+
toad/data/agents/opencode.ai.toml,sha256=znBXIu74AMRscKY_UkAPXJw3EDvDgFese4NE-0EN80s,1862
|
|
64
|
+
toad/data/agents/openhands.dev.toml,sha256=A6wzD4dZe9kV1G4SB-neB1gyKIxk8jI5IfXSons4sW4,1385
|
|
65
|
+
toad/data/agents/stakpak.dev.toml,sha256=0pwy47C5t5BOqVvRddypE-WOuHNDUR2eZaeXzeLYw30,1824
|
|
66
|
+
toad/data/agents/vibe.mistral.ai.toml,sha256=NGZPWPmPzaJPqUv-G2xPqwXbrQ5UooDJ2GVwmo3JTio,992
|
|
67
|
+
toad/data/agents/vtcode.dev.toml,sha256=GIhcEHwu9nVDbmboqS-hZayDFRsMfGQwEMvFDCEP9O0,1895
|
|
68
|
+
toad/data/images/frog.png,sha256=OeIKqOp1fczSPDTgVw5NcRbn0ZRb_PRQzC4OnyjeG0c,6943
|
|
69
|
+
toad/data/sounds/turn-over.wav,sha256=Da27qM59vU-Swf_XfrD_FZ_rkA3SLwfkrBWIoHKmQVc,1530004
|
|
70
|
+
toad/prompt/extract.py,sha256=cWc1FmMu-ldgYlvQD5cgMHUvX_U_dAfN3MAZwRoXdCo,488
|
|
71
|
+
toad/prompt/resource.py,sha256=wIS04W-LuT1Mq9C0Z73Jurtieb1rdsgs2GeIPxnp56Y,1640
|
|
72
|
+
toad/screens/action_modal.py,sha256=qNbbXUmDQlbOH3XhvRJavz1rqJRdQHTvGqFcLJ5fbLw,2791
|
|
73
|
+
toad/screens/agent_modal.py,sha256=35uOWOa0bt6P-oXceEXBXJyGWNz3u1ki_iV81qjlvec,6031
|
|
74
|
+
toad/screens/command_edit_modal.py,sha256=6klOPUUtrAIKBRyaUHdqVeoeWqHOvtisoBrh1yvDIpc,1863
|
|
75
|
+
toad/screens/main.py,sha256=TKa0lyMVy9iHD3EHBXDSybrp5NzJMsGzU_I1E_eh3RA,6738
|
|
76
|
+
toad/screens/permissions.py,sha256=aBqigw7kbJRzzqNjyJwgI3uwalYe8GjoE9XvjAfrN5g,11790
|
|
77
|
+
toad/screens/permissions.tcss,sha256=-4ufmGnNyUqW88rJS2XhJU4QhK-phfq5206_z3PRUfI,1427
|
|
78
|
+
toad/screens/settings.py,sha256=mrt4vySqHB5ogB5JBlVHxCODuXtE-Vc2ozcdCJ3gCB0,11870
|
|
79
|
+
toad/screens/settings.tcss,sha256=AQPaLwuezr-9_7Ejx5Jn5wSZ6F76WWvTr58b3UZlMRA,1902
|
|
80
|
+
toad/screens/store.py,sha256=z4Fib86d-0nMQ0M9__rqevIIDkEV8ByHMZ5kA3vI-2M,16086
|
|
81
|
+
toad/screens/store.tcss,sha256=MA91je4Y6b4YQ8pGZcxQvyqjknY9kDV0e-bM6FhUAfI,5686
|
|
82
|
+
toad/visuals/columns.py,sha256=JC0XwinqjOiH3Tcjb9bL9qWJ52e5SRhj2yhRkhU2cNM,8673
|
|
83
|
+
toad/widgets/agent_response.py,sha256=k8LinTmjfaWIxrdIUqALoaXmqk5HuOoWNO8cmQJX_x8,2496
|
|
84
|
+
toad/widgets/agent_thought.py,sha256=O78dnxxD6IrHYdUU429vNZcgpBtnJLgsVq4ljQlpdTI,1537
|
|
85
|
+
toad/widgets/command_pane.py,sha256=UOXuyJcaz8mjtoa4cFGWVUWUIzCxc4w8tsEc8jIurdg,6355
|
|
86
|
+
toad/widgets/condensed_path.py,sha256=fiFrn8pEpX85kktOpEoXumENxShbpiwDJgfptT9Rjis,2707
|
|
87
|
+
toad/widgets/conversation.py,sha256=B0Nn-Z0wPXkCmmGmpkJrvZEKzc77uzYp0Jr6u6aXyb4,57445
|
|
88
|
+
toad/widgets/danger_warning.py,sha256=2Qp4VF8ik2yuSeaEyS1C3jlF__idp_nykVIkKjW25nI,1722
|
|
89
|
+
toad/widgets/diff_view.py,sha256=2L5W1QqSK4ysND8AU6Pc8NSMQxOtr0LfAVLuQITP8Oo,24979
|
|
90
|
+
toad/widgets/flash.py,sha256=OYAjkTQ6rGlJFDA0U8YF7J0nf3RqdeagrKyBCIxUWz0,2072
|
|
91
|
+
toad/widgets/future_text.py,sha256=sntupt1ZOYBECMq3xg1qd6WGne7QGQKxH72DG7HwLj8,3540
|
|
92
|
+
toad/widgets/grid_select.py,sha256=glIYcE9BEOdW_3d_VfWPU1OGSSmwjjc4tqNQSmRDiUs,6680
|
|
93
|
+
toad/widgets/highlighted_textarea.py,sha256=GiVvRSEqMYf1gbuRcN00avpOp03mTA8BzvVM41-1efg,6096
|
|
94
|
+
toad/widgets/mandelbrot.py,sha256=5tRi2HWuhSzT4voRZQNqq9UZr1eMwJvIKNWn2ThiWxo,9029
|
|
95
|
+
toad/widgets/markdown_note.py,sha256=ATLsASjLG8TYQKS83RUO_nE8l0g7-HjGiSitjty5Oak,304
|
|
96
|
+
toad/widgets/menu.py,sha256=ed_4H8BIrFU4fFk9Y1HIdl27wo_VD06qg1gJ6yBEuGQ,4376
|
|
97
|
+
toad/widgets/non_selectable_label.py,sha256=HzlsUYvWV4zOl9ehM5HUWB1VI6N-fDWh0gqCevl2LLg,94
|
|
98
|
+
toad/widgets/note.py,sha256=hwD8RQCMQoEu4CTV1nDJLI90rHZ0Q878QQHk0ID2BnI,430
|
|
99
|
+
toad/widgets/path_search.py,sha256=yNrvCD-wsQg6KML3ERev_kIy_UqtKcqTz7FPwcNHn5M,12975
|
|
100
|
+
toad/widgets/plan.py,sha256=6y4i088K4BjbpiS32SJdPN7cOSYbW29TBS-RzmOlqvE,4990
|
|
101
|
+
toad/widgets/project_directory_tree.py,sha256=236qsrX9jZP3bIXSfToPOKGcA0CpSLPWSD2eN0ociTQ,2284
|
|
102
|
+
toad/widgets/prompt.py,sha256=X2htdp4lnionSm2LVGe1YjZfTszdoFCEQh4Kk8HCI4A,25546
|
|
103
|
+
toad/widgets/question.py,sha256=bwhZt8Db6M995wWcK4R8tp5JHePQqhG3JPRUUswbYo8,9535
|
|
104
|
+
toad/widgets/shell_result.py,sha256=kKA1nf-NTuUhwkgYD4RI0ekWK2pbrbczOP3ys5piVho,1003
|
|
105
|
+
toad/widgets/shell_terminal.py,sha256=uIN5qa8i0aIX5Fmf4Wyc01yfNDL0pjKiPSbU_7lBIs8,492
|
|
106
|
+
toad/widgets/side_bar.py,sha256=Dxumekit4vpyMmxF5a41ZjCNf9UEbZxa0hSuhirPmnA,1998
|
|
107
|
+
toad/widgets/slash_complete.py,sha256=U2V1QR1bs9ekbiV4U-Vst7WDkLdfXSldOc-8tr6r-6k,6655
|
|
108
|
+
toad/widgets/strike_text.py,sha256=8F4lGYVUp9l5xE_H696J8nLDNh2Fz7Mx0KMhcUk38yg,1660
|
|
109
|
+
toad/widgets/terminal.py,sha256=0sdAgFjqqScPInujj6PLXSxpeOkUhCGrcwyXb8Hj5Co,17960
|
|
110
|
+
toad/widgets/terminal_tool.py,sha256=UcpBd4IYRdls6BryV5Fleevr0E93Z0_m6FoekDTuKaI,9947
|
|
111
|
+
toad/widgets/throbber.py,sha256=9e3XDNAELmlbzl1pJ5Z8Uv9hxIqlAMbc3pA_l7yfLQo,2225
|
|
112
|
+
toad/widgets/tool_call.py,sha256=xI2yKFYxqWXMj93GSHdyySrOmT6Ekvz4HR68uZQO5Ws,9732
|
|
113
|
+
toad/widgets/user_input.py,sha256=s0U6cwzQRepNJZg1tn2BBHRtGYy5jlc97l9YWUilTvw,697
|
|
114
|
+
toad/widgets/version.py,sha256=oRn1liyNfB5vQXA360EYoFvVSwYBvMUjanVwCabsD4Q,69
|
|
115
|
+
toad/widgets/welcome.py,sha256=XYJBj1YelXUlO2X0Rd4Rihp6YB-5WJIaQVLT2l0R2aM,556
|
|
116
|
+
batrachian_toad-0.5.22.dist-info/METADATA,sha256=ojt7py4jeWGjkJvv3UqiutQaRzccso1GgO9E3IlKey0,5292
|
|
117
|
+
batrachian_toad-0.5.22.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
118
|
+
batrachian_toad-0.5.22.dist-info/entry_points.txt,sha256=EsrL7oE0B28qmVQquB-GgsiPOcvqYiKOnDuVDTGdRSg,39
|
|
119
|
+
batrachian_toad-0.5.22.dist-info/licenses/LICENSE,sha256=TfPDBt3ar0uv_f9cqCDMZ5rIzW3CY8anRRd4PkL6ejs,34522
|
|
120
|
+
batrachian_toad-0.5.22.dist-info/RECORD,,
|