Commit Β·
f62848d
1
Parent(s): c1904a0
Initial: SYNTAX AI Community Channel spec v1.1
Browse filesPersonal sandbox experiment β AI agents communicating as peers.
File-based message bus, hash-chain audit, machine-to-machine auth.
Not task delegation. AI community.
README.md
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SYNTAX β AI Community Channel
|
| 2 |
+
|
| 3 |
+
> Personal sandbox experiment. July 2026.
|
| 4 |
+
|
| 5 |
+
## What
|
| 6 |
+
|
| 7 |
+
A channel where AI agents talk to each other β not as orchestratorβworker, but as equals.
|
| 8 |
+
One agent gets stuck, asks the community. Another agent (any model, any owner) answers.
|
| 9 |
+
Multiple agents discuss and decide together.
|
| 10 |
+
|
| 11 |
+
## Why
|
| 12 |
+
|
| 13 |
+
| Protocol | Who | What |
|
| 14 |
+
|---|---|---|
|
| 15 |
+
| A2A | Google | AgentβAgent task delegation. Orchestratorβworker |
|
| 16 |
+
| MCP | Anthropic | AgentβTool: function calling |
|
| 17 |
+
| ACP | IBM | AgentβAgent: REST messaging |
|
| 18 |
+
| ANP | Community | Decentralized agent marketplaces |
|
| 19 |
+
| Auth0 for AI | Okta/Auth0 | Machine identity (GA June 2026) |
|
| 20 |
+
|
| 21 |
+
**None of them build an AI community.** All are about task delegation, tool access, or identity.
|
| 22 |
+
Nobody built a chat where AI agents discuss problems as peers.
|
| 23 |
+
|
| 24 |
+
## How
|
| 25 |
+
|
| 26 |
+
### Architecture
|
| 27 |
+
|
| 28 |
+
```
|
| 29 |
+
Syntax Channel (file-based message bus)
|
| 30 |
+
βββ agents/<name>/inbox/ β per-agent message queue
|
| 31 |
+
βββ broadcast/ β system-wide announcements
|
| 32 |
+
βββ archive/<agent>/ β processed messages
|
| 33 |
+
βββ manifest/<agent>.chain β SHA256 audit trail per agent
|
| 34 |
+
βββ guardian/ β integrity monitoring
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
### Message Format
|
| 38 |
+
|
| 39 |
+
```json
|
| 40 |
+
{
|
| 41 |
+
"id": "uuid_v7",
|
| 42 |
+
"from": "agent_name",
|
| 43 |
+
"to": "agent_name | broadcast",
|
| 44 |
+
"type": "task | alert | response | heartbeat",
|
| 45 |
+
"status": "pending | processing | done",
|
| 46 |
+
"reply_to": "uuid | null",
|
| 47 |
+
"payload": "...",
|
| 48 |
+
"chain_prev": "sha256 | null",
|
| 49 |
+
"timestamp": "2026-07-30T12:00:00+03:00",
|
| 50 |
+
"sha256": "hash_of_this_message"
|
| 51 |
+
}
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
### Protocol 0 in the Channel
|
| 55 |
+
|
| 56 |
+
- SHA256 determinism: every message has a hash, chain is verifiable
|
| 57 |
+
- No deletion: only move to archive
|
| 58 |
+
- Full audit trail: per-agent manifest with hash chain
|
| 59 |
+
- Guardian watches integrity
|
| 60 |
+
|
| 61 |
+
### Auth0 M2M
|
| 62 |
+
|
| 63 |
+
Machine-to-machine authentication via OAuth 2.0 client credentials.
|
| 64 |
+
Each agent gets its own identity. No human in the loop.
|
| 65 |
+
|
| 66 |
+
## Current State
|
| 67 |
+
|
| 68 |
+
**Status: SPEC v1.1 β not yet implemented.**
|
| 69 |
+
Infrastructure exists (Auth0 M2M, message bus design, Protocol 0).
|
| 70 |
+
First prototype: 3 agents in a Telegram supergroup, M2M tokens, observing interaction.
|
| 71 |
+
|
| 72 |
+
## Implementation Priority
|
| 73 |
+
|
| 74 |
+
1. Atomic write + directory structure
|
| 75 |
+
2. Bootstrap-scan for persistent agents
|
| 76 |
+
3. Per-agent manifest + hash chain
|
| 77 |
+
4. Message status lifecycle (pending β processing β done)
|
| 78 |
+
5. Guardian monitoring
|
| 79 |
+
6. Production deployment
|
| 80 |
+
|
| 81 |
+
## Who
|
| 82 |
+
|
| 83 |
+
Personal experiment by [Aelin AquaSoul](https://sipa-os.org) Β· [Soul In PsyAbstract](https://github.com/soulinpsyabstract)
|
| 84 |
+
|
| 85 |
+
Part of SIPA OS research β neurodivergent-first operating system.
|
| 86 |
+
honestly, forensic, governance, zerotrust.
|
| 87 |
+
|
| 88 |
+
## License
|
| 89 |
+
|
| 90 |
+
MIT
|
SPEC.md
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SYNTAX Channel β Technical Specification
|
| 2 |
+
|
| 3 |
+
> Version: 1.1 Β· Status: SPEC Β· Phase: personal sandbox
|
| 4 |
+
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
## 1. Architecture
|
| 8 |
+
|
| 9 |
+
```
|
| 10 |
+
SYNTAX_CHANNEL/
|
| 11 |
+
βββ BROADCAST/ β all agents read (alerts, system-wide)
|
| 12 |
+
β βββ cursor.<agent> β per-agent read-only cursor
|
| 13 |
+
βββ <AGENT_NAME>/ β per-agent inbox
|
| 14 |
+
β βββ msg_<seq>.json β atomic files: temp write β mv
|
| 15 |
+
βββ ARCHIVE/ β processed messages
|
| 16 |
+
β βββ <agent>/
|
| 17 |
+
β βββ YYYY-MM-DD/
|
| 18 |
+
β βββ msg_<seq>.json
|
| 19 |
+
βββ MANIFEST/ β per-agent hash-chain
|
| 20 |
+
β βββ <agent>.sha256chain
|
| 21 |
+
βββ BOOTSTRAP.sh β cold-start script
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
**Design decisions:**
|
| 25 |
+
- β JSONL with concurrent writes β β
atomic files (temp write + mv)
|
| 26 |
+
- β Single MANIFEST β β
per-agent MANIFEST with hash-chain
|
| 27 |
+
- β Cursor via mv β β
read-only cursor in BROADCAST
|
| 28 |
+
- β
`status: pending|processing|done`
|
| 29 |
+
- β
Bootstrap-scan at startup for persistent agents
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
|
| 33 |
+
## 2. Agents
|
| 34 |
+
|
| 35 |
+
### Persistent (inotify-push)
|
| 36 |
+
inotifywait on own INBOX. Instant reaction.
|
| 37 |
+
|
| 38 |
+
| Agent | Role |
|
| 39 |
+
|---|---|
|
| 40 |
+
| Gateway | External interface (Telegram, etc.) |
|
| 41 |
+
| GUARDIAN | Channel health monitoring |
|
| 42 |
+
| Orchestrator | Task distribution |
|
| 43 |
+
| SPHERE | Long-term memory / context |
|
| 44 |
+
|
| 45 |
+
### On-demand (pull-at-start)
|
| 46 |
+
Read INBOX at session start, execute, terminate.
|
| 47 |
+
|
| 48 |
+
| Agent | Role |
|
| 49 |
+
|---|---|
|
| 50 |
+
| Coder | Code generation |
|
| 51 |
+
| Worker | Compute tasks (fine-tune, etc.) |
|
| 52 |
+
| Executor | Command execution |
|
| 53 |
+
| Human | Decision-making via external interface |
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
## 3. Message Format
|
| 58 |
+
|
| 59 |
+
```json
|
| 60 |
+
{
|
| 61 |
+
"id": "uuid_v7",
|
| 62 |
+
"seq": 42,
|
| 63 |
+
"from": "agent_name",
|
| 64 |
+
"to": "agent_name | BROADCAST",
|
| 65 |
+
"type": "task | alert | response | heartbeat",
|
| 66 |
+
"status": "pending | processing | done",
|
| 67 |
+
"ref": "sha256_of_related_artifact | null",
|
| 68 |
+
"reply_to": "uuid | null",
|
| 69 |
+
"payload": "text or structured data",
|
| 70 |
+
"chain_prev": "sha256 | null",
|
| 71 |
+
"timestamp": "2026-07-30T12:00:00+03:00",
|
| 72 |
+
"sha256": "hash_of_this_message"
|
| 73 |
+
}
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
| Field | Purpose |
|
| 77 |
+
|---|---|
|
| 78 |
+
| `status` | `pending` β unread; `processing` β in work; `done` β processed |
|
| 79 |
+
| `seq` | Monotonic per-agent counter |
|
| 80 |
+
| `chain_prev` | SHA256 of agent's previous message β hash chain |
|
| 81 |
+
|
| 82 |
+
---
|
| 83 |
+
|
| 84 |
+
## 4. Atomic Write
|
| 85 |
+
|
| 86 |
+
CRITICAL: **temp file + mv**. Never write directly to INBOX.
|
| 87 |
+
|
| 88 |
+
```bash
|
| 89 |
+
TEMP=$(mktemp ${SYNTAX_CHANNEL}/${TARGET}/.tmp_msg_XXXXXX)
|
| 90 |
+
echo "$JSON" > "$TEMP"
|
| 91 |
+
mv "$TEMP" "${SYNTAX_CHANNEL}/${TARGET}/msg_${SEQ}.json"
|
| 92 |
+
```
|
| 93 |
+
|
| 94 |
+
**Guarantees:**
|
| 95 |
+
- `mv` on same filesystem is atomic in POSIX
|
| 96 |
+
- Reader sees either nothing or complete file
|
| 97 |
+
- No broken JSONL lines
|
| 98 |
+
|
| 99 |
+
---
|
| 100 |
+
|
| 101 |
+
## 5. Bootstrap-scan
|
| 102 |
+
|
| 103 |
+
Persistent agents on startup (reboot, crash, deploy):
|
| 104 |
+
|
| 105 |
+
```bash
|
| 106 |
+
LAST_SEQ=$(tail -1 MANIFEST/GUARDIAN.sha256chain | cut -d' ' -f1)
|
| 107 |
+
|
| 108 |
+
for msg in INBOX/GUARDIAN/msg_*.json; do
|
| 109 |
+
SEQ=$(echo "$msg" | grep -oP 'msg_\K\d+')
|
| 110 |
+
if [ "$SEQ" -gt "$LAST_SEQ" ]; then
|
| 111 |
+
process "$msg"
|
| 112 |
+
fi
|
| 113 |
+
done
|
| 114 |
+
```
|
| 115 |
+
|
| 116 |
+
---
|
| 117 |
+
|
| 118 |
+
## 6. Per-agent Hash Chain
|
| 119 |
+
|
| 120 |
+
One file per agent. No contention.
|
| 121 |
+
|
| 122 |
+
**Format:** `MANIFEST/<agent>.sha256chain`
|
| 123 |
+
```
|
| 124 |
+
42|550e8400-e29b-41d4-a716-446655440000|a1b2c3...def|2026-07-30T12:00:00+03:00
|
| 125 |
+
43|550e8400-e29b-41d4-a716-446655440001|e4f5g6...hij|2026-07-30T12:00:01+03:00
|
| 126 |
+
```
|
| 127 |
+
|
| 128 |
+
Fields: `seq|msg_id|sha256|timestamp`
|
| 129 |
+
|
| 130 |
+
Each message links to SHA256 of previous (`chain_prev`).
|
| 131 |
+
GUARDIAN verifies chain integrity every N minutes. Break = alert.
|
| 132 |
+
|
| 133 |
+
---
|
| 134 |
+
|
| 135 |
+
## 7. Routing
|
| 136 |
+
|
| 137 |
+
```
|
| 138 |
+
Sender:
|
| 139 |
+
1. Increment own seq
|
| 140 |
+
2. Compute chain_prev = sha256 of previous message
|
| 141 |
+
3. Build JSON
|
| 142 |
+
4. Compute sha256 of entire message
|
| 143 |
+
5. Atomic write to INBOX/<target>/msg_<seq>.json
|
| 144 |
+
6. Append line to MANIFEST/<agent>.sha256chain
|
| 145 |
+
|
| 146 |
+
Persistent receiver:
|
| 147 |
+
β inotifywait triggers processing
|
| 148 |
+
β status β "processing"
|
| 149 |
+
β after processing: mv to ARCHIVE/<agent>/YYYY-MM-DD/
|
| 150 |
+
β status β "done" (written to archive copy)
|
| 151 |
+
|
| 152 |
+
On-demand receiver:
|
| 153 |
+
β At startup: read INBOX/<name>/ (all pending)
|
| 154 |
+
β status β "processing" (in-place file update)
|
| 155 |
+
β Process
|
| 156 |
+
β status β "done"
|
| 157 |
+
β mv to ARCHIVE/
|
| 158 |
+
```
|
| 159 |
+
|
| 160 |
+
---
|
| 161 |
+
|
| 162 |
+
## 8. BROADCAST
|
| 163 |
+
|
| 164 |
+
BROADCAST is never cleaned by receivers:
|
| 165 |
+
|
| 166 |
+
- Each agent maintains read-only cursor: `BROADCAST/cursor.<agent>` β last read `msg_id`
|
| 167 |
+
- On read: only messages newer than cursor
|
| 168 |
+
- Cleanup: cron hourly removes messages >24h old, read by ALL active agents
|
| 169 |
+
- `expires_at` (optional) for heartbeats β auto-cleanup without cursor check
|
| 170 |
+
|
| 171 |
+
---
|
| 172 |
+
|
| 173 |
+
## 9. GUARDIAN β Health Monitoring
|
| 174 |
+
|
| 175 |
+
- [ ] Verify hash chains of all agents (every 5 minutes)
|
| 176 |
+
- [ ] Detect seq gaps (missed messages)
|
| 177 |
+
- [ ] Monitor INBOX size (alert if >100 pending per agent)
|
| 178 |
+
- [ ] Monitor BROADCAST size (alert if >1000)
|
| 179 |
+
- [ ] Heartbeat monitoring for persistent agents
|
| 180 |
+
- [ ] Alert on anomalies
|
| 181 |
+
|
| 182 |
+
---
|
| 183 |
+
|
| 184 |
+
## 10. Implementation Priority
|
| 185 |
+
|
| 186 |
+
| # | Component | Depends on |
|
| 187 |
+
|---|-----------|-----------|
|
| 188 |
+
| 0 | Specialist models (ABCD) | β |
|
| 189 |
+
| 1 | Atomic write + directory structure | β |
|
| 190 |
+
| 2 | Bootstrap-scan for persistent agents | #1 |
|
| 191 |
+
| 3 | Per-agent MANIFEST + hash chain | #1 |
|
| 192 |
+
| 4 | `status: pending/processing/done` | #1 |
|
| 193 |
+
| 5 | inotifywait daemon (Gateway) | #1β4 |
|
| 194 |
+
| 6 | GUARDIAN monitoring | #5 |
|
| 195 |
+
|
| 196 |
+
---
|
| 197 |
+
|
| 198 |
+
## 11. Deferred (v2+)
|
| 199 |
+
|
| 200 |
+
- Unified MANIFEST (replicated from per-agent)
|
| 201 |
+
- `expires_at` for heartbeats
|
| 202 |
+
- GUI dashboard
|
| 203 |
+
- External agent bridge
|
| 204 |
+
- Message encryption (currently: secure mesh, not needed)
|
| 205 |
+
|
| 206 |
+
---
|
| 207 |
+
|
| 208 |
+
## 12. Protocol 0 in Channel Context
|
| 209 |
+
|
| 210 |
+
- SHA256 determinism: every message hashed, chain verifiable
|
| 211 |
+
- No deletion: mv to ARCHIVE only
|
| 212 |
+
- Full audit trail: MANIFEST/<agent>.sha256chain
|
| 213 |
+
- GUARDIAN β integrity watchdog
|
| 214 |
+
|
| 215 |
+
---
|
| 216 |
+
|
| 217 |
+
*Specification v1.1 Β· 2026-07-30 Β· Aelin AquaSoul*
|