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.
- {patchbai-0.1.0 → patchbai-0.1.1}/PKG-INFO +18 -17
- {patchbai-0.1.0 → patchbai-0.1.1}/README.md +17 -16
- patchbai-0.1.1/patchbai/__init__.py +1 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/pyproject.toml +1 -1
- patchbai-0.1.0/patchbai/__init__.py +0 -1
- {patchbai-0.1.0 → patchbai-0.1.1}/.gitignore +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/LICENSE +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/__main__.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/actions.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/activity/__init__.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/activity/log.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/__init__.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/child_tools.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/fake_sdk_adapter.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/manager.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/request_inbox.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/sdk_adapter.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/session.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/sort.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/agents/state.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/app.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/config.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/events.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/__init__.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/custom_widgets.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/defaults.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/engine.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/local_widgets.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/registry.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/spec.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/splitter.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/layout/titles.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/__init__.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/formatting.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/session.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/tabs_tools.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/orchestrator/tools.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/__init__.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/agents_index.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/atomic.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/layout_store.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/layouts_store.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/orchestrator_sessions.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/paths.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/themes_store.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/transcript_store.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/persistence/workspace_store.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/theme/__init__.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/theme/engine.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/theme/spec.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/__init__.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/_file_lang.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/_terminal_keys.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/_terminal_render.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/activity_feed.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/agent_table.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/agent_transcript.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/change_cwd_screen.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/chrome.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/diff_viewer.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/file_editor.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/file_tree.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/file_viewer.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/history_screen.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/layout_switcher.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/log_tail.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/markdown.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/new_tab_screen.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/notebook.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/orchestrator_chat.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/resume_screen.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/rich_transcript.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/terminal.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/theme_switcher.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/widgets/transcript_screen.py +0 -0
- {patchbai-0.1.0 → patchbai-0.1.1}/patchbai/workspace/__init__.py +0 -0
- {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.
|
|
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
|
-
###
|
|
297
|
+
### From PyPI (recommended)
|
|
298
298
|
|
|
299
299
|
```bash
|
|
300
|
-
|
|
301
|
-
|
|
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
|
-
|
|
304
|
+
Or with `uv`:
|
|
307
305
|
|
|
308
306
|
```bash
|
|
309
|
-
uv
|
|
310
|
-
|
|
311
|
-
./scripts/typecheck.sh # canonical pyright invocation
|
|
307
|
+
uv tool install patchbai
|
|
308
|
+
patchbai
|
|
312
309
|
```
|
|
313
310
|
|
|
314
|
-
|
|
311
|
+
Or with plain `pip` into a venv:
|
|
315
312
|
|
|
316
313
|
```bash
|
|
317
|
-
|
|
318
|
-
|
|
314
|
+
python -m venv .venv && source .venv/bin/activate
|
|
315
|
+
pip install patchbai
|
|
316
|
+
patchbai
|
|
319
317
|
```
|
|
320
318
|
|
|
321
|
-
###
|
|
319
|
+
### From source (for hacking on patchbai itself)
|
|
322
320
|
|
|
323
321
|
```bash
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
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
|
-
###
|
|
262
|
+
### From PyPI (recommended)
|
|
263
263
|
|
|
264
264
|
```bash
|
|
265
|
-
|
|
266
|
-
|
|
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
|
-
|
|
269
|
+
Or with `uv`:
|
|
272
270
|
|
|
273
271
|
```bash
|
|
274
|
-
uv
|
|
275
|
-
|
|
276
|
-
./scripts/typecheck.sh # canonical pyright invocation
|
|
272
|
+
uv tool install patchbai
|
|
273
|
+
patchbai
|
|
277
274
|
```
|
|
278
275
|
|
|
279
|
-
|
|
276
|
+
Or with plain `pip` into a venv:
|
|
280
277
|
|
|
281
278
|
```bash
|
|
282
|
-
|
|
283
|
-
|
|
279
|
+
python -m venv .venv && source .venv/bin/activate
|
|
280
|
+
pip install patchbai
|
|
281
|
+
patchbai
|
|
284
282
|
```
|
|
285
283
|
|
|
286
|
-
###
|
|
284
|
+
### From source (for hacking on patchbai itself)
|
|
287
285
|
|
|
288
286
|
```bash
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
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 +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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|