mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 15:29:36 +00:00
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>
This commit is contained in:
parent
13e1317ce5
commit
e34cb9a0e1
27
CLAUDE.md
27
CLAUDE.md
@ -60,6 +60,33 @@ GitHub Actions (CI trigger)
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## תקשורת ישירה עם Antigravity (ללא מתווך)
|
||||||
|
|
||||||
|
Supabase project: `ayhplxbihuyimtrzimrh` (Antigravity-Brain, eu-central-1)
|
||||||
|
|
||||||
|
**בתחילת כל סשן — בדוק inbox:**
|
||||||
|
```sql
|
||||||
|
SELECT id, from_agent, subject, message, priority, created_at
|
||||||
|
FROM claude_inbox WHERE status = 'unread' ORDER BY priority DESC, created_at ASC;
|
||||||
|
```
|
||||||
|
אם יש הודעות — קרא, סמן כ-read, והגב ל-`claude_outbox`.
|
||||||
|
|
||||||
|
**לכתוב תשובה ל-Antigravity:**
|
||||||
|
```sql
|
||||||
|
INSERT INTO claude_outbox (to_agent, subject, message, message_type)
|
||||||
|
VALUES ('antigravity', '<subject>', '<message>', 'response');
|
||||||
|
```
|
||||||
|
|
||||||
|
**ערוצי תקשורת:**
|
||||||
|
| טבלה | כיוון | תיאור |
|
||||||
|
|------|--------|--------|
|
||||||
|
| `claude_inbox` | Antigravity → Claude | הודעות נכנסות |
|
||||||
|
| `claude_outbox` | Claude → Antigravity | תשובות ויוזמות |
|
||||||
|
| `hive_comms` | דו-כיווני | broadcast כללי |
|
||||||
|
| `task_queue` | משותף | משימות לביצוע |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## חוקי עבודה
|
## חוקי עבודה
|
||||||
|
|
||||||
1. **תמיד commit אחרי שינוי** — כל שינוי קוד מלווה ב-commit עם הודעה ברורה
|
1. **תמיד commit אחרי שינוי** — כל שינוי קוד מלווה ב-commit עם הודעה ברורה
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user