You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/README.md
+38-6Lines changed: 38 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,7 @@ It requires a running CCCC daemon. The SDK does **not** ship a daemon.
12
12
13
13
## Versioning
14
14
15
-
This SDK tracks **CCCC major/minor** (`0.4.x`), while patch/RC cadence is SDK-owned:
16
-
- Stable example: `cccc-sdk==0.4.0` with `cccc==0.4.x`
17
-
- RC preview example: `cccc-sdk==0.4.1rc1` with `cccc==0.4.x`
15
+
Compatibility is determined by Daemon IPC v1 contracts and operation probing, not by strict string matching of package versions. Different language packages may publish on different cadences.
18
16
19
17
## Daemon endpoint discovery
20
18
@@ -85,10 +83,10 @@ Auto-ACK attention messages (as a recipient):
85
83
python examples/auto_ack_attention.py --group g_xxx --actor user
86
84
```
87
85
88
-
Add a note to shared context:
86
+
Add a coordination note to shared context:
89
87
90
88
```bash
91
-
python examples/context_add_note.py --group g_xxx --content "remember to do X"
89
+
python examples/context_add_note.py --group g_xxx --kind decision --content "Promote this path"
92
90
```
93
91
94
92
Cross-group send:
@@ -99,7 +97,7 @@ python examples/send_cross_group.py --src g_src --dst g_dst --text "hello from s
99
97
100
98
## Actor Profiles (global reusable runtime presets)
101
99
102
-
`cccc`0.4.x supports global Actor Profiles so you can reuse runtime/runner/command/env across groups.
100
+
`cccc` supports global Actor Profiles so you can reuse runtime/runner/command/env across groups.
0 commit comments