webbee 0.1.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.
- webbee/__init__.py +1 -0
- webbee/account.py +78 -0
- webbee/banner_art.py +9 -0
- webbee/cli.py +56 -0
- webbee/commands.py +77 -0
- webbee/config.py +14 -0
- webbee/events.py +17 -0
- webbee/render.py +313 -0
- webbee/repl.py +157 -0
- webbee/session.py +160 -0
- webbee/tools.py +84 -0
- webbee/tui.py +217 -0
- webbee/update.py +52 -0
- webbee-0.1.0.dist-info/METADATA +86 -0
- webbee-0.1.0.dist-info/RECORD +18 -0
- webbee-0.1.0.dist-info/WHEEL +4 -0
- webbee-0.1.0.dist-info/entry_points.txt +2 -0
- webbee-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: webbee
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Webbee 🐝 — the Imperal Cloud coding agent in your terminal
|
|
5
|
+
Project-URL: Homepage, https://imperal.io
|
|
6
|
+
Project-URL: Documentation, https://docs.imperal.io
|
|
7
|
+
Project-URL: Repository, https://github.com/imperalcloud/webbee-code
|
|
8
|
+
Project-URL: Issues, https://github.com/imperalcloud/webbee-code/issues
|
|
9
|
+
Project-URL: Protocol, https://icnli.org
|
|
10
|
+
Author-email: "Imperal, Inc." <hello@imperal.io>
|
|
11
|
+
License-Expression: MIT
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Keywords: ai-agent,cli,coding-agent,icnli,imperal,llm,terminal,webbee
|
|
14
|
+
Classifier: Development Status :: 4 - Beta
|
|
15
|
+
Classifier: Environment :: Console
|
|
16
|
+
Classifier: Intended Audience :: Developers
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Software Development
|
|
23
|
+
Classifier: Topic :: Utilities
|
|
24
|
+
Requires-Python: >=3.11
|
|
25
|
+
Requires-Dist: httpx-sse>=0.4
|
|
26
|
+
Requires-Dist: httpx>=0.27
|
|
27
|
+
Requires-Dist: imperal-mcp>=0.4.0
|
|
28
|
+
Requires-Dist: imperal-sdk>=5.9.2
|
|
29
|
+
Requires-Dist: prompt-toolkit>=3
|
|
30
|
+
Requires-Dist: rich>=13.7
|
|
31
|
+
Description-Content-Type: text/markdown
|
|
32
|
+
|
|
33
|
+
# Webbee 🐝 — the coding agent in your terminal
|
|
34
|
+
|
|
35
|
+
[](https://pypi.org/project/webbee/)
|
|
36
|
+
[](https://pypi.org/project/webbee/)
|
|
37
|
+
[](LICENSE)
|
|
38
|
+
[](https://docs.imperal.io)
|
|
39
|
+
|
|
40
|
+
Webbee is the [Imperal Cloud](https://imperal.io) coding agent, in your terminal. It reads, writes, and runs code in your working directory — while the brain runs in the cloud on **ICNLI**, the open protocol behind Webbee. No model keys on your machine. Swap the model underneath and it behaves the same, because the safety was never in the model.
|
|
41
|
+
|
|
42
|
+
**The model proposes. The kernel decides. The key — delete, drop, wipe — stays with you.**
|
|
43
|
+
|
|
44
|
+
## Install
|
|
45
|
+
|
|
46
|
+
```sh
|
|
47
|
+
pipx install webbee # or: uv tool install webbee
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
No Python on the box? One line:
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
curl -LsSf https://webbee.imperal.io/install.sh | sh
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Use
|
|
57
|
+
|
|
58
|
+
```sh
|
|
59
|
+
webbee # start the agent in the current directory
|
|
60
|
+
webbee login # sign in to your Imperal account (opens the browser)
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Type in plain English. Webbee reads your files, runs commands, and reaches your connected Imperal apps — mail, notes, tasks, and more — to get the job done. `/help` lists the commands: `/login` `/logout` `/mode` `/cost` `/status` `/clear` `/exit`.
|
|
64
|
+
|
|
65
|
+
## Modes — you hold the key
|
|
66
|
+
|
|
67
|
+
Cycle with **Shift + TAB**:
|
|
68
|
+
|
|
69
|
+
- **default** — Webbee does the small, reversible stuff herself. Anything she can't undo, she stops and asks you first.
|
|
70
|
+
- **plan** — read-only. She plans and reads; she touches nothing.
|
|
71
|
+
- **autopilot** — she acts without asking. (Spending money always needs a browser approval — no terminal reply can release it.)
|
|
72
|
+
|
|
73
|
+
## How it works
|
|
74
|
+
|
|
75
|
+
Your machine runs the hands — read, write, edit, run. The brain runs in the Imperal Cloud and reasons over your files, your history, and your connected apps through ICNLI. The model is a replaceable proposer at the edge; the kernel resolves, grounds, and decides. Webbee reads your facts. She doesn't invent them.
|
|
76
|
+
|
|
77
|
+
## Links
|
|
78
|
+
|
|
79
|
+
- **Imperal Cloud** — [imperal.io](https://imperal.io)
|
|
80
|
+
- **Docs** — [docs.imperal.io](https://docs.imperal.io)
|
|
81
|
+
- **ICNLI** — the open protocol, CC BY-SA 4.0 — [icnli.org](https://icnli.org)
|
|
82
|
+
- **More from Imperal** — [github.com/imperalcloud](https://github.com/imperalcloud)
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
MIT © Imperal, Inc.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
webbee/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
|
|
2
|
+
webbee/account.py,sha256=LWao4787XupVzO1mj3Q9-7rHjX-YsXRQRvY-FMMU7K4,2509
|
|
3
|
+
webbee/banner_art.py,sha256=jlw7mbouStSpGt9Ufp9jNJWqXEwlLtxeMcoFSegePfk,496
|
|
4
|
+
webbee/cli.py,sha256=oschKTB01WTw_lfCazYAJeUu7eCx7EveeB0UOztIrxE,2040
|
|
5
|
+
webbee/commands.py,sha256=ADjq9-60c6yK1NAyVyX5k5B9unTNbYF3BFVwuW6JBZ4,3105
|
|
6
|
+
webbee/config.py,sha256=AnwG3zjwuyEEoGqtjRRAd2ZJf30l2t5VoLvAHnnAq2E,395
|
|
7
|
+
webbee/events.py,sha256=t-y17uvBLToMr9Ik5KeZnPTAWx1PUIlYxlphlEeMV-g,829
|
|
8
|
+
webbee/render.py,sha256=ncUka_H3-fA0roL0hoyXAlLg33HDtYuCSB64b0Dyu5Q,13709
|
|
9
|
+
webbee/repl.py,sha256=n3rXf0mOTtQYTj_JtLlEvfEVVPc0NDRFRKxreuYUCA8,6099
|
|
10
|
+
webbee/session.py,sha256=Z65qESKo53ryiIqkQQwdPXh1kKJ1TIDe3-9dz66QrGQ,7396
|
|
11
|
+
webbee/tools.py,sha256=a8aSOUvtHM0zB5NBe27XLoEkMC36n3AIXbQUgD_QiUA,3355
|
|
12
|
+
webbee/tui.py,sha256=zjRXHdOh9ntpk899Dt-G2epb_Z9KWGfrmVlNM-MFK9k,9277
|
|
13
|
+
webbee/update.py,sha256=XCz5vo2rT58BvfcyfZ0XmJyhCvP_TdFVe2UUS1qEQ5E,1677
|
|
14
|
+
webbee-0.1.0.dist-info/METADATA,sha256=7HTaohJq9RMTkhbKoWSYPlFV7AYuluKte4LTzsaDZIY,3734
|
|
15
|
+
webbee-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
16
|
+
webbee-0.1.0.dist-info/entry_points.txt,sha256=5Bh-gvXrND-woxZ_v9VZ2hqV-V2dZ5-8EgyVNNO_XKk,43
|
|
17
|
+
webbee-0.1.0.dist-info/licenses/LICENSE,sha256=FdEqo5L07gM1-HNyrYihno-4W4k7r9oDc7nYj01r0Nk,1070
|
|
18
|
+
webbee-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Imperal, Inc.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|