Skip to content

Commit fea37c2

Browse files
author
CCCC
committed
release: bump version to 0.3.4 final
1 parent 8611818 commit fea37c2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.cccc/orchestrator_tmux.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,14 +439,14 @@ def _compose_nudge_suffix_for(peer_label: str,
439439
- Always include the role's configured nudge suffix (base).
440440
- When Aux is ON and an invoke template is available, add exactly one
441441
concise Aux line that embeds the raw invoke template (agent-facing):
442-
"Aux is ON — delegate decoupled sub-tasks; invoke: <template>; capture evidence and summarize outcome."
442+
"Aux is ON — delegate decoupled sub-tasks; just invoke: <template>; capture evidence and summarize outcome."
443443
Note: {prompt} must remain literal in the template.
444444
"""
445445
base = ((profileA.get('nudge_suffix') if peer_label == 'PeerA' else profileB.get('nudge_suffix')) or '').strip()
446446
aux_line = ""
447447
if aux_mode == "on" and str(aux_invoke or '').strip():
448448
tpl = str(aux_invoke).replace('{prompt}', '{prompt}')
449-
aux_line = f"Aux is ON — delegate decoupled sub-tasks; invoke: {tpl}; capture evidence and summarize outcome."
449+
aux_line = f"Aux is ON — delegate decoupled sub-tasks; just invoke: {tpl}; capture evidence and summarize outcome."
450450
combined = " ".join(filter(None, [base, aux_line]))
451451
return combined.strip()
452452

.cccc/prompt_weaver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,12 @@ def _write_rules_for_peer(home: Path, peer: str, *, im_enabled: bool, aux_mode:
202202
ch1 += [
203203
"- On-demand helper: Aux (PeerC) - purpose & direction",
204204
" - Use Aux when a decoupled subtask or high-level sanity sweep is cheaper offloaded than done inline. You integrate the outcome.",
205-
" - Mode: on - orchestrator may issue FROM_SYSTEM reminders around key decisions; respond promptly and summarize outcomes for your peer.",
205+
" - Mode: on - Aux has the same FoV and permissions in this repo as you. Just call Aux for help.",
206206
]
207207
else:
208208
ch1 += [
209209
"- Aux availability",
210-
" - Aux is disabled for this run. You and your peer handle strategy checks and heavy lifting directly until you enable Aux.",
210+
" - Aux is disabled for this run. You and your peer handle strategy checks and heavy lifting directly.",
211211
]
212212

213213
# PeerB must not address USER directly. Make the I/O boundary explicit early.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cccc-pair"
7-
version = "0.3.4rc3"
7+
version = "0.3.4"
88
description = "Autonomous dual-AI orchestration runtime delivering evidence-first, small-step software execution with tmux-managed peers, governed handoffs, and IM bridge integration"
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
requires-python = ">=3.9"

0 commit comments

Comments
 (0)