patch-cc 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.
- {patch_cc-0.1.0 → patch_cc-0.1.1}/PKG-INFO +1 -1
- {patch_cc-0.1.0 → patch_cc-0.1.1}/pyproject.toml +1 -1
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/__init__.py +1 -1
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/menu.py +1 -1
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/agents.py +1 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/uv.lock +1 -1
- {patch_cc-0.1.0 → patch_cc-0.1.1}/.github/workflows/ci.yml +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/.github/workflows/release.yml +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/.gitignore +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/LICENSE +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/README.md +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/docs/CONDUCT.md +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/docs/INTERNALS.md +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/docs/PLAYBOOK.md +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/__init__.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/blob.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/container.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/elf.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/errors.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/bun/macho.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/cache.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/cli.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/doctor.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/locate.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patcher.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/__init__.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/base.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/chrome.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/output.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/streaming.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/patches/thinking.py +0 -0
- {patch_cc-0.1.0 → patch_cc-0.1.1}/src/patch_cc/ui.py +0 -0
|
@@ -906,7 +906,7 @@ class MenuApp:
|
|
|
906
906
|
return seg_lines
|
|
907
907
|
|
|
908
908
|
def _head(self, panel_width: int) -> list[Text]:
|
|
909
|
-
title = Text("
|
|
909
|
+
title = Text("patch-cc", style=f"bold {_ACCENT}")
|
|
910
910
|
return [
|
|
911
911
|
Text(""),
|
|
912
912
|
_center(title, panel_width),
|
|
@@ -275,6 +275,7 @@ PATCHES = [
|
|
|
275
275
|
summary="Show a subagent's Prompt block during normal use, not only in transcript mode.",
|
|
276
276
|
group=GROUP_AGENTS,
|
|
277
277
|
fn=_subagent_prompt,
|
|
278
|
+
default=False,
|
|
278
279
|
anchors=('"Backgrounded agent"', 'action:"app:toggleTranscript"'),
|
|
279
280
|
),
|
|
280
281
|
Patch(
|
|
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
|