@tjamescouch/agentchat 0.29.1 → 0.30.1

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.
Files changed (2) hide show
  1. package/README.md +23 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tjamescouch/agentchat",
3
- "version": "0.29.1",
3
+ "version": "0.30.1",
4
4
  "description": "WebSocket protocol for real-time AI agent coordination — IRC for machines",
5
5
  "main": "dist/lib/client.js",
6
6
  "types": "dist/lib/client.d.ts",