webbee 0.3.25__tar.gz → 0.3.27__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.
Files changed (119) hide show
  1. {webbee-0.3.25 → webbee-0.3.27}/CHANGELOG.md +28 -0
  2. {webbee-0.3.25 → webbee-0.3.27}/PKG-INFO +1 -1
  3. webbee-0.3.27/docs/superpowers/plans/2026-07-21-interactive-home-dashboard.md +1942 -0
  4. {webbee-0.3.25 → webbee-0.3.27}/pyproject.toml +1 -1
  5. webbee-0.3.27/src/webbee/__init__.py +1 -0
  6. webbee-0.3.27/src/webbee/home.py +194 -0
  7. webbee-0.3.27/src/webbee/home_view.py +586 -0
  8. webbee-0.3.27/src/webbee/newtab_mode.py +35 -0
  9. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/repl.py +115 -23
  10. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/slots.py +8 -0
  11. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/tui.py +106 -33
  12. webbee-0.3.27/src/webbee/urlopen.py +16 -0
  13. webbee-0.3.27/src/webbee/wallet.py +65 -0
  14. {webbee-0.3.25 → webbee-0.3.27}/tests/conftest.py +10 -0
  15. {webbee-0.3.25 → webbee-0.3.27}/tests/test_home.py +132 -170
  16. webbee-0.3.27/tests/test_home_view.py +304 -0
  17. webbee-0.3.27/tests/test_newtab_mode.py +30 -0
  18. {webbee-0.3.25 → webbee-0.3.27}/tests/test_repl.py +33 -7
  19. {webbee-0.3.25 → webbee-0.3.27}/tests/test_slots.py +12 -0
  20. {webbee-0.3.25 → webbee-0.3.27}/tests/test_tabs.py +9 -0
  21. {webbee-0.3.25 → webbee-0.3.27}/tests/test_tui.py +59 -8
  22. webbee-0.3.27/tests/test_urlopen.py +18 -0
  23. webbee-0.3.27/tests/test_wallet.py +50 -0
  24. webbee-0.3.25/src/webbee/__init__.py +0 -1
  25. webbee-0.3.25/src/webbee/home.py +0 -290
  26. {webbee-0.3.25 → webbee-0.3.27}/.github/workflows/publish.yml +0 -0
  27. {webbee-0.3.25 → webbee-0.3.27}/.gitignore +0 -0
  28. {webbee-0.3.25 → webbee-0.3.27}/LICENSE +0 -0
  29. {webbee-0.3.25 → webbee-0.3.27}/README.md +0 -0
  30. {webbee-0.3.25 → webbee-0.3.27}/install.sh +0 -0
  31. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/account.py +0 -0
  32. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/active_sessions.py +0 -0
  33. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/banner_art.py +0 -0
  34. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/boot.py +0 -0
  35. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/checkpoints.py +0 -0
  36. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/cli.py +0 -0
  37. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/clipboard.py +0 -0
  38. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/coding_context.py +0 -0
  39. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/commands.py +0 -0
  40. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/config.py +0 -0
  41. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/consent.py +0 -0
  42. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/details.py +0 -0
  43. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/events.py +0 -0
  44. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/frames.py +0 -0
  45. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/http.py +0 -0
  46. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/instance_lock.py +0 -0
  47. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/__init__.py +0 -0
  48. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/chunker.py +0 -0
  49. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/embed.py +0 -0
  50. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/graph.py +0 -0
  51. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/indexer.py +0 -0
  52. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/models.py +0 -0
  53. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/query.py +0 -0
  54. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/service.py +0 -0
  55. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/store.py +0 -0
  56. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/vectors.py +0 -0
  57. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/intel/watch.py +0 -0
  58. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/mode_store.py +0 -0
  59. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/output_pane.py +0 -0
  60. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/queue_panel.py +0 -0
  61. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/reflow.py +0 -0
  62. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/remote.py +0 -0
  63. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/render.py +0 -0
  64. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/repo.py +0 -0
  65. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/selection.py +0 -0
  66. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/session.py +0 -0
  67. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/sessions.py +0 -0
  68. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/sizing.py +0 -0
  69. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/steer.py +0 -0
  70. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/stream.py +0 -0
  71. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/tabs.py +0 -0
  72. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/thread.py +0 -0
  73. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/todo_panel.py +0 -0
  74. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/tokens.py +0 -0
  75. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/tools.py +0 -0
  76. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/update.py +0 -0
  77. {webbee-0.3.25 → webbee-0.3.27}/src/webbee/worktrees.py +0 -0
  78. {webbee-0.3.25 → webbee-0.3.27}/tests/__init__.py +0 -0
  79. {webbee-0.3.25 → webbee-0.3.27}/tests/test_account.py +0 -0
  80. {webbee-0.3.25 → webbee-0.3.27}/tests/test_active_sessions.py +0 -0
  81. {webbee-0.3.25 → webbee-0.3.27}/tests/test_checkpoints.py +0 -0
  82. {webbee-0.3.25 → webbee-0.3.27}/tests/test_cli.py +0 -0
  83. {webbee-0.3.25 → webbee-0.3.27}/tests/test_clipboard.py +0 -0
  84. {webbee-0.3.25 → webbee-0.3.27}/tests/test_commands.py +0 -0
  85. {webbee-0.3.25 → webbee-0.3.27}/tests/test_config.py +0 -0
  86. {webbee-0.3.25 → webbee-0.3.27}/tests/test_cpc_contract_stable.py +0 -0
  87. {webbee-0.3.25 → webbee-0.3.27}/tests/test_details.py +0 -0
  88. {webbee-0.3.25 → webbee-0.3.27}/tests/test_events.py +0 -0
  89. {webbee-0.3.25 → webbee-0.3.27}/tests/test_freeze_fix.py +0 -0
  90. {webbee-0.3.25 → webbee-0.3.27}/tests/test_instance_lock.py +0 -0
  91. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_chunker.py +0 -0
  92. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_embed.py +0 -0
  93. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_graph.py +0 -0
  94. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_indexer.py +0 -0
  95. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_no_numpy.py +0 -0
  96. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_query.py +0 -0
  97. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_service.py +0 -0
  98. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_store.py +0 -0
  99. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_vectors.py +0 -0
  100. {webbee-0.3.25 → webbee-0.3.27}/tests/test_intel_watch.py +0 -0
  101. {webbee-0.3.25 → webbee-0.3.27}/tests/test_marathon.py +0 -0
  102. {webbee-0.3.25 → webbee-0.3.27}/tests/test_mode_store.py +0 -0
  103. {webbee-0.3.25 → webbee-0.3.27}/tests/test_packaging.py +0 -0
  104. {webbee-0.3.25 → webbee-0.3.27}/tests/test_reflow.py +0 -0
  105. {webbee-0.3.25 → webbee-0.3.27}/tests/test_render.py +0 -0
  106. {webbee-0.3.25 → webbee-0.3.27}/tests/test_repo.py +0 -0
  107. {webbee-0.3.25 → webbee-0.3.27}/tests/test_session.py +0 -0
  108. {webbee-0.3.25 → webbee-0.3.27}/tests/test_sessions.py +0 -0
  109. {webbee-0.3.25 → webbee-0.3.27}/tests/test_sizing.py +0 -0
  110. {webbee-0.3.25 → webbee-0.3.27}/tests/test_steer.py +0 -0
  111. {webbee-0.3.25 → webbee-0.3.27}/tests/test_stream.py +0 -0
  112. {webbee-0.3.25 → webbee-0.3.27}/tests/test_thread.py +0 -0
  113. {webbee-0.3.25 → webbee-0.3.27}/tests/test_todo_panel.py +0 -0
  114. {webbee-0.3.25 → webbee-0.3.27}/tests/test_tokens.py +0 -0
  115. {webbee-0.3.25 → webbee-0.3.27}/tests/test_tools.py +0 -0
  116. {webbee-0.3.25 → webbee-0.3.27}/tests/test_tui_hardening.py +0 -0
  117. {webbee-0.3.25 → webbee-0.3.27}/tests/test_update.py +0 -0
  118. {webbee-0.3.25 → webbee-0.3.27}/tests/test_version.py +0 -0
  119. {webbee-0.3.25 → webbee-0.3.27}/tests/test_worktrees.py +0 -0
@@ -1,5 +1,33 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.27
4
+
5
+ Home dashboard polish.
6
+
7
+ - The Webbee Code logo is back at the top of Home.
8
+ - Home now shows when your plan renews (or expires).
9
+ - "Top up credits" opens the right billing page.
10
+ - The new-tab mode you pick on Home is now honored no matter how you open
11
+ the tab — typing, the "+" button, and Ctrl+T all agree.
12
+
13
+ ## 0.3.26
14
+
15
+ The Home tab is now an interactive dashboard — a little website inside your
16
+ terminal. Everything is clickable and keyboard-navigable, with a highlight
17
+ that follows your focus and the mouse.
18
+
19
+ - Home shows your account and plan, your credits balance, your open tabs
20
+ (with each tab's mode, a close button, and how much that session has
21
+ spent), your recent repositories (one click reopens one in a new tab),
22
+ the devices you're signed in on, and a small Settings panel.
23
+ - Settings you can change right from Home: the mode new tabs open in,
24
+ where a running session sends notifications, and a Top-up credits button.
25
+ - A Trust & security panel explains, in plain terms, how your data is
26
+ handled — with a link to the full security and privacy docs.
27
+ - The new-tab "+" button is now bee-yellow and easy to spot.
28
+ - Ctrl+T now opens a new tab, like a browser (it used to jump to Home).
29
+ Home is still one click away on its own tab (or Alt+0).
30
+
3
31
  ## 0.3.25
4
32
 
5
33
  Tabs name themselves after your first message, a + button opens a tab like
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: webbee
3
- Version: 0.3.25
3
+ Version: 0.3.27
4
4
  Summary: Webbee 🐝 — the Imperal Cloud coding agent in your terminal
5
5
  Project-URL: Homepage, https://imperal.io
6
6
  Project-URL: Documentation, https://docs.imperal.io