webbee 0.3.24__tar.gz → 0.3.26__tar.gz
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-0.3.24 → webbee-0.3.26}/CHANGELOG.md +43 -0
- {webbee-0.3.24 → webbee-0.3.26}/PKG-INFO +1 -1
- webbee-0.3.26/docs/superpowers/plans/2026-07-21-interactive-home-dashboard.md +1942 -0
- {webbee-0.3.24 → webbee-0.3.26}/pyproject.toml +1 -1
- webbee-0.3.26/src/webbee/__init__.py +1 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/commands.py +5 -0
- webbee-0.3.26/src/webbee/home.py +194 -0
- webbee-0.3.26/src/webbee/home_view.py +565 -0
- webbee-0.3.26/src/webbee/instance_lock.py +83 -0
- webbee-0.3.26/src/webbee/newtab_mode.py +35 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/repl.py +203 -33
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/slots.py +105 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/steer.py +14 -0
- webbee-0.3.26/src/webbee/tabs.py +191 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/thread.py +15 -2
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/tui.py +202 -40
- webbee-0.3.26/src/webbee/urlopen.py +16 -0
- webbee-0.3.26/src/webbee/wallet.py +65 -0
- webbee-0.3.26/tests/conftest.py +39 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_commands.py +16 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_home.py +129 -167
- webbee-0.3.26/tests/test_home_view.py +281 -0
- webbee-0.3.26/tests/test_instance_lock.py +89 -0
- webbee-0.3.26/tests/test_newtab_mode.py +30 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_repl.py +189 -7
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_slots.py +142 -1
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_steer.py +109 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_tabs.py +216 -49
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_thread.py +115 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_tui.py +408 -13
- webbee-0.3.26/tests/test_urlopen.py +18 -0
- webbee-0.3.26/tests/test_wallet.py +50 -0
- webbee-0.3.24/src/webbee/__init__.py +0 -1
- webbee-0.3.24/src/webbee/home.py +0 -290
- webbee-0.3.24/src/webbee/tabs.py +0 -140
- webbee-0.3.24/tests/conftest.py +0 -18
- {webbee-0.3.24 → webbee-0.3.26}/.github/workflows/publish.yml +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/.gitignore +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/LICENSE +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/README.md +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/install.sh +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/account.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/active_sessions.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/banner_art.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/boot.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/checkpoints.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/cli.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/clipboard.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/coding_context.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/config.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/consent.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/details.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/events.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/frames.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/http.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/__init__.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/chunker.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/embed.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/graph.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/indexer.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/models.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/query.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/service.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/store.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/vectors.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/intel/watch.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/mode_store.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/output_pane.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/queue_panel.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/reflow.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/remote.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/render.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/repo.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/selection.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/session.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/sessions.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/sizing.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/stream.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/todo_panel.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/tokens.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/tools.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/update.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/src/webbee/worktrees.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/__init__.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_account.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_active_sessions.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_checkpoints.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_cli.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_clipboard.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_config.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_cpc_contract_stable.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_details.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_events.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_freeze_fix.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_chunker.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_embed.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_graph.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_indexer.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_no_numpy.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_query.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_service.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_store.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_vectors.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_intel_watch.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_marathon.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_mode_store.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_packaging.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_reflow.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_render.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_repo.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_session.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_sessions.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_sizing.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_stream.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_todo_panel.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_tokens.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_tools.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_tui_hardening.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_update.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_version.py +0 -0
- {webbee-0.3.24 → webbee-0.3.26}/tests/test_worktrees.py +0 -0
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.26
|
|
4
|
+
|
|
5
|
+
The Home tab is now an interactive dashboard — a little website inside your
|
|
6
|
+
terminal. Everything is clickable and keyboard-navigable, with a highlight
|
|
7
|
+
that follows your focus and the mouse.
|
|
8
|
+
|
|
9
|
+
- Home shows your account and plan, your credits balance, your open tabs
|
|
10
|
+
(with each tab's mode, a close button, and how much that session has
|
|
11
|
+
spent), your recent repositories (one click reopens one in a new tab),
|
|
12
|
+
the devices you're signed in on, and a small Settings panel.
|
|
13
|
+
- Settings you can change right from Home: the mode new tabs open in,
|
|
14
|
+
where a running session sends notifications, and a Top-up credits button.
|
|
15
|
+
- A Trust & security panel explains, in plain terms, how your data is
|
|
16
|
+
handled — with a link to the full security and privacy docs.
|
|
17
|
+
- The new-tab "+" button is now bee-yellow and easy to spot.
|
|
18
|
+
- Ctrl+T now opens a new tab, like a browser (it used to jump to Home).
|
|
19
|
+
Home is still one click away on its own tab (or Alt+0).
|
|
20
|
+
|
|
21
|
+
## 0.3.25
|
|
22
|
+
|
|
23
|
+
Tabs name themselves after your first message, a + button opens a tab like
|
|
24
|
+
a browser, the tab bar got breathing room and a proper bar background, and
|
|
25
|
+
stray terminal codes can't pollute the input anymore.
|
|
26
|
+
|
|
27
|
+
- A session tab now renames itself from your first message — like a
|
|
28
|
+
browser page title — so you can tell tabs apart at a glance instead of
|
|
29
|
+
seeing the same folder name everywhere. `/rename <name>` sets your own
|
|
30
|
+
title any time and it sticks (auto-naming never overrides it).
|
|
31
|
+
- A new + button at the end of the tab bar opens a new tab, just like a
|
|
32
|
+
browser — no more remembering the keyboard shortcut.
|
|
33
|
+
- The tab bar now sits on its own subtle bar background with a blank row of
|
|
34
|
+
breathing room below it, separating it clearly from your conversation.
|
|
35
|
+
- Clicking the ✕ or the + button now only reacts to a precise click on the
|
|
36
|
+
glyph itself — a near-miss next to it no longer accidentally closes a tab.
|
|
37
|
+
- Closing a tab that's still busy now asks you to confirm first (click ✕
|
|
38
|
+
again) — the server-side run keeps going either way, this just protects
|
|
39
|
+
against an accidental close.
|
|
40
|
+
- Opening the same project in two separate windows no longer makes them
|
|
41
|
+
freeze each other — the second window notices and starts its own
|
|
42
|
+
parallel session automatically.
|
|
43
|
+
- Stray terminal focus-tracking codes (from switching windows or tmux
|
|
44
|
+
panes) can no longer leak into what you're typing.
|
|
45
|
+
|
|
3
46
|
## 0.3.24
|
|
4
47
|
|
|
5
48
|
The tab bar got a real design: the active tab is a solid highlighted chip,
|