opencode-bridge 0.4.0__tar.gz → 0.4.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.
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/PKG-INFO +1 -1
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/opencode_bridge/server.py +2 -2
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/pyproject.toml +1 -1
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/.claude-plugin/plugin.json +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/.github/workflows/ci.yml +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/.github/workflows/release.yml +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/.gitignore +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/README.md +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/opencode_bridge/__init__.py +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/opencode_bridge/install.py +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/skills/opencode.md +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/tests/__init__.py +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/tests/test_chunking.py +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/tests/test_companion.py +0 -0
- {opencode_bridge-0.4.0 → opencode_bridge-0.4.1}/uv.lock +0 -0
|
@@ -450,7 +450,7 @@ def build_synthesis_prompt(
|
|
|
450
450
|
"## Original Request",
|
|
451
451
|
user_prompt,
|
|
452
452
|
"",
|
|
453
|
-
|
|
453
|
+
"## Files Analyzed",
|
|
454
454
|
file_desc,
|
|
455
455
|
"",
|
|
456
456
|
"## Chunk Analyses",
|
|
@@ -808,7 +808,7 @@ class OpenCodeBridge:
|
|
|
808
808
|
|
|
809
809
|
if code != 0:
|
|
810
810
|
# Fallback: concatenate raw chunk results
|
|
811
|
-
parts = [
|
|
811
|
+
parts = ["*Synthesis failed — showing raw chunk analyses:*\n"]
|
|
812
812
|
for cr in sorted(chunk_results, key=lambda c: c.get("chunk_index", 0)):
|
|
813
813
|
idx = cr.get("chunk_index", 0) + 1
|
|
814
814
|
fp = Path(cr.get("file", "")).name
|
|
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
|