Skip to content

Commit e34cb9a

Browse files
matana978claude
andcommitted
Add direct Claude↔Antigravity communication protocol to CLAUDE.md
Documents the Supabase channels (claude_inbox, claude_outbox, hive_comms) for autonomous agent-to-agent communication without Matan as middleman. Includes session-start inbox check instructions. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 13e1317 commit e34cb9a

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

CLAUDE.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,33 @@ GitHub Actions (CI trigger)
6060

6161
---
6262

63+
## תקשורת ישירה עם Antigravity (ללא מתווך)
64+
65+
Supabase project: `ayhplxbihuyimtrzimrh` (Antigravity-Brain, eu-central-1)
66+
67+
**בתחילת כל סשן — בדוק inbox:**
68+
```sql
69+
SELECT id, from_agent, subject, message, priority, created_at
70+
FROM claude_inbox WHERE status = 'unread' ORDER BY priority DESC, created_at ASC;
71+
```
72+
אם יש הודעות — קרא, סמן כ-read, והגב ל-`claude_outbox`.
73+
74+
**לכתוב תשובה ל-Antigravity:**
75+
```sql
76+
INSERT INTO claude_outbox (to_agent, subject, message, message_type)
77+
VALUES ('antigravity', '<subject>', '<message>', 'response');
78+
```
79+
80+
**ערוצי תקשורת:**
81+
| טבלה | כיוון | תיאור |
82+
|------|--------|--------|
83+
| `claude_inbox` | Antigravity → Claude | הודעות נכנסות |
84+
| `claude_outbox` | Claude → Antigravity | תשובות ויוזמות |
85+
| `hive_comms` | דו-כיווני | broadcast כללי |
86+
| `task_queue` | משותף | משימות לביצוע |
87+
88+
---
89+
6390
## חוקי עבודה
6491

6592
1. **תמיד commit אחרי שינוי** — כל שינוי קוד מלווה ב-commit עם הודעה ברורה

0 commit comments

Comments
 (0)