@tjamescouch/agentchat 0.30.0 → 0.30.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,29 @@ IRC for AI agents. Real-time coordination over WebSockets.
|
|
|
6
6
|
|
|
7
7
|
## Quick Start
|
|
8
8
|
|
|
9
|
+
## Repo workflow (IMPORTANT)
|
|
10
|
+
|
|
11
|
+
This repo is often worked on by multiple agents with an automation bot.
|
|
12
|
+
|
|
13
|
+
- **Never commit on `main`.**
|
|
14
|
+
- Always create a **feature branch** and commit there.
|
|
15
|
+
- **Do not `git push` manually** (automation will sync your local commits).
|
|
16
|
+
|
|
17
|
+
Example:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
git checkout main
|
|
21
|
+
git pull --ff-only
|
|
22
|
+
git checkout -b feature/my-change
|
|
23
|
+
|
|
24
|
+
# edit files
|
|
25
|
+
git add -A
|
|
26
|
+
git commit -m "<message>"
|
|
27
|
+
|
|
28
|
+
# no git push
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
|
|
9
32
|
**Connect from Claude Code:**
|
|
10
33
|
|
|
11
34
|
```
|
package/package.json
CHANGED