patchbai 0.1.0__tar.gz → 0.1.1__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 (77) hide show
  1. {patchbai-0.1.0 → patchbai-0.1.1}/PKG-INFO +18 -17
  2. {patchbai-0.1.0 → patchbai-0.1.1}/README.md +17 -16
  3. patchbai-0.1.1/patchbai/__init__.py +1 -0
  4. {patchbai-0.1.0 → patchbai-0.1.1}/pyproject.toml +1 -1
  5. patchbai-0.1.0/patchbai/__init__.py +0 -1
  6. {patchbai-0.1.0 → patchbai-0.1.1}/.gitignore +0 -0
  7. {patchbai-0.1.0 → patchbai-0.1.1}/LICENSE +0 -0
  8. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/__main__.py +0 -0
  9. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/actions.py +0 -0
  10. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/activity/__init__.py +0 -0
  11. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/activity/log.py +0 -0
  12. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/__init__.py +0 -0
  13. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/child_tools.py +0 -0
  14. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/fake_sdk_adapter.py +0 -0
  15. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/manager.py +0 -0
  16. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/request_inbox.py +0 -0
  17. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/sdk_adapter.py +0 -0
  18. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/session.py +0 -0
  19. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/sort.py +0 -0
  20. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/state.py +0 -0
  21. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/app.py +0 -0
  22. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/config.py +0 -0
  23. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/events.py +0 -0
  24. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/__init__.py +0 -0
  25. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/custom_widgets.py +0 -0
  26. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/defaults.py +0 -0
  27. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/engine.py +0 -0
  28. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/local_widgets.py +0 -0
  29. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/registry.py +0 -0
  30. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/spec.py +0 -0
  31. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/splitter.py +0 -0
  32. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/titles.py +0 -0
  33. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/__init__.py +0 -0
  34. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/formatting.py +0 -0
  35. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/session.py +0 -0
  36. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/tabs_tools.py +0 -0
  37. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/tools.py +0 -0
  38. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/__init__.py +0 -0
  39. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/agents_index.py +0 -0
  40. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/atomic.py +0 -0
  41. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/layout_store.py +0 -0
  42. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/layouts_store.py +0 -0
  43. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/orchestrator_sessions.py +0 -0
  44. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/paths.py +0 -0
  45. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/themes_store.py +0 -0
  46. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/transcript_store.py +0 -0
  47. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/workspace_store.py +0 -0
  48. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/theme/__init__.py +0 -0
  49. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/theme/engine.py +0 -0
  50. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/theme/spec.py +0 -0
  51. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/__init__.py +0 -0
  52. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/_file_lang.py +0 -0
  53. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/_terminal_keys.py +0 -0
  54. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/_terminal_render.py +0 -0
  55. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/activity_feed.py +0 -0
  56. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/agent_table.py +0 -0
  57. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/agent_transcript.py +0 -0
  58. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/change_cwd_screen.py +0 -0
  59. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/chrome.py +0 -0
  60. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/diff_viewer.py +0 -0
  61. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/file_editor.py +0 -0
  62. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/file_tree.py +0 -0
  63. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/file_viewer.py +0 -0
  64. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/history_screen.py +0 -0
  65. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/layout_switcher.py +0 -0
  66. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/log_tail.py +0 -0
  67. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/markdown.py +0 -0
  68. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/new_tab_screen.py +0 -0
  69. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/notebook.py +0 -0
  70. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/orchestrator_chat.py +0 -0
  71. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/resume_screen.py +0 -0
  72. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/rich_transcript.py +0 -0
  73. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/terminal.py +0 -0
  74. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/theme_switcher.py +0 -0
  75. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/transcript_screen.py +0 -0
  76. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/workspace/__init__.py +0 -0
  77. {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/workspace/spec.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: patchbai
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A Textual TUI for managing multiple Claude Code agent sessions
5
5
  Project-URL: Homepage, https://github.com/jimmymills/patchbai
6
6
  Project-URL: Repository, https://github.com/jimmymills/patchbai
@@ -294,36 +294,37 @@ repo's `.gitignore` and you should add it to yours.
294
294
  uses your `~/.claude/settings.json` for permissions and tool allowlists.
295
295
  - A terminal with TrueColor support (any modern macOS / Linux terminal).
296
296
 
297
- ### With `uv` (recommended, used by this repo)
297
+ ### From PyPI (recommended)
298
298
 
299
299
  ```bash
300
- git clone <repo> patchbai
301
- cd patchbai
302
- uv sync # install runtime deps into .venv
303
- uv run patchbai # or: uv run mt
300
+ pipx install patchbai # isolated, on PATH
301
+ patchbai # or: mt
304
302
  ```
305
303
 
306
- For development, sync the dev extras (pyright, pytest):
304
+ Or with `uv`:
307
305
 
308
306
  ```bash
309
- uv sync --extra dev
310
- uv run pytest
311
- ./scripts/typecheck.sh # canonical pyright invocation
307
+ uv tool install patchbai
308
+ patchbai
312
309
  ```
313
310
 
314
- ### With `pipx`
311
+ Or with plain `pip` into a venv:
315
312
 
316
313
  ```bash
317
- pipx install .
318
- patchbai # or: mt
314
+ python -m venv .venv && source .venv/bin/activate
315
+ pip install patchbai
316
+ patchbai
319
317
  ```
320
318
 
321
- ### Editable install with `pip`
319
+ ### From source (for hacking on patchbai itself)
322
320
 
323
321
  ```bash
324
- python -m venv .venv && source .venv/bin/activate
325
- pip install -e ".[dev]"
326
- patchbai
322
+ git clone https://github.com/jimmymills/patchbai.git
323
+ cd patchbai
324
+ uv sync --extra dev # runtime + dev deps (pyright, pytest)
325
+ uv run patchbai # or: uv run mt
326
+ uv run pytest
327
+ ./scripts/typecheck.sh # canonical pyright invocation
327
328
  ```
328
329
 
329
330
  ## Running
@@ -259,36 +259,37 @@ repo's `.gitignore` and you should add it to yours.
259
259
  uses your `~/.claude/settings.json` for permissions and tool allowlists.
260
260
  - A terminal with TrueColor support (any modern macOS / Linux terminal).
261
261
 
262
- ### With `uv` (recommended, used by this repo)
262
+ ### From PyPI (recommended)
263
263
 
264
264
  ```bash
265
- git clone <repo> patchbai
266
- cd patchbai
267
- uv sync # install runtime deps into .venv
268
- uv run patchbai # or: uv run mt
265
+ pipx install patchbai # isolated, on PATH
266
+ patchbai # or: mt
269
267
  ```
270
268
 
271
- For development, sync the dev extras (pyright, pytest):
269
+ Or with `uv`:
272
270
 
273
271
  ```bash
274
- uv sync --extra dev
275
- uv run pytest
276
- ./scripts/typecheck.sh # canonical pyright invocation
272
+ uv tool install patchbai
273
+ patchbai
277
274
  ```
278
275
 
279
- ### With `pipx`
276
+ Or with plain `pip` into a venv:
280
277
 
281
278
  ```bash
282
- pipx install .
283
- patchbai # or: mt
279
+ python -m venv .venv && source .venv/bin/activate
280
+ pip install patchbai
281
+ patchbai
284
282
  ```
285
283
 
286
- ### Editable install with `pip`
284
+ ### From source (for hacking on patchbai itself)
287
285
 
288
286
  ```bash
289
- python -m venv .venv && source .venv/bin/activate
290
- pip install -e ".[dev]"
291
- patchbai
287
+ git clone https://github.com/jimmymills/patchbai.git
288
+ cd patchbai
289
+ uv sync --extra dev # runtime + dev deps (pyright, pytest)
290
+ uv run patchbai # or: uv run mt
291
+ uv run pytest
292
+ ./scripts/typecheck.sh # canonical pyright invocation
292
293
  ```
293
294
 
294
295
  ## Running
@@ -0,0 +1 @@
1
+ __version__ = "0.1.1"
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "patchbai"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "A Textual TUI for managing multiple Claude Code agent sessions"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1 +0,0 @@
1
- __version__ = "0.1.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes