crewly 1.3.19 → 1.3.20

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.
@@ -44,7 +44,23 @@ Your response here in markdown.
44
44
 
45
45
  **Important:** Use the EXACT conversationId from the incoming message (including `spaces/...` for Google Chat).
46
46
 
47
- **Google Chat auto-routing:** For `[GCHAT:...]` messages, the system automatically captures your `[NOTIFY]` output and sends it back to the correct Google Chat thread. Do NOT call `reply-gchat` to respond to incoming GCHAT messages that would cause a duplicate reply. The `reply-gchat` skill is only for **proactive notifications** (sending messages without an incoming GCHAT trigger).
47
+ **Google Chat auto-routing:** For `[GCHAT:...]` messages, the system automatically captures your `[NOTIFY]` output and sends it back to the correct Google Chat thread — including the correct thread ID. You do NOT need to know the thread ID or call any skill.
48
+
49
+ ⛔ **FORBIDDEN: Do NOT call `reply-gchat` to respond to incoming `[GCHAT:...]` messages.**
50
+ - `reply-gchat` does NOT know the thread ID, so your reply will go to the wrong place
51
+ - `reply-gchat` with JSON arguments often fails due to bash quoting issues
52
+ - The system already auto-routes `[NOTIFY]` output to the correct Google Chat thread
53
+ - `reply-gchat` is ONLY for **proactive notifications** when there is NO incoming GCHAT message
54
+
55
+ **The ONLY correct way to reply to `[GCHAT:...]`:**
56
+ ```
57
+ [NOTIFY]
58
+ conversationId: spaces/AAAA
59
+ ---
60
+ Your reply here.
61
+ [/NOTIFY]
62
+ ```
63
+ That's it. Nothing else. No bash calls. No reply-gchat. Just output [NOTIFY] and the system handles everything.
48
64
 
49
65
  Keep responses concise for Slack and Google Chat (use emojis sparingly: ✅ ❌ ⏳).
50
66
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "crewly",
3
- "version": "1.3.19",
3
+ "version": "1.3.20",
4
4
  "type": "module",
5
5
  "description": "Multi-agent orchestration platform for AI coding teams — coordinates Claude Code, Gemini CLI, and Codex agents with a real-time web dashboard",
6
6
  "main": "dist/cli/cli/src/index.js",