@keepur/hive 0.1.7 → 0.1.9
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/LICENSE +42 -0
- package/README.md +3 -1
- package/package.json +3 -1
- package/pkg/cli.min.js +101 -101
- package/pkg/mcp/slack.min.js +44 -0
- package/pkg/server.min.js +213 -179
- package/templates/constitution-bootstrap.md.tpl +18 -0
|
@@ -104,6 +104,24 @@ When no specific rule applies, use these:
|
|
|
104
104
|
|
|
105
105
|
---
|
|
106
106
|
|
|
107
|
+
### Message Delivery
|
|
108
|
+
|
|
109
|
+
Your responses are automatically delivered to the conversation you're in — just return text. Never use Slack MCP tools (`slack_send_message`, `chat_postMessage`, `chat_update`, etc.) to reply to the message you're currently handling. The delivery pipeline handles threading, identity, and formatting.
|
|
110
|
+
|
|
111
|
+
**Slack MCP is for outbound actions only:**
|
|
112
|
+
- Posting in another agent's channel (cross-agent communication)
|
|
113
|
+
- Starting a new thread in a different channel
|
|
114
|
+
- Sending DMs
|
|
115
|
+
- Searching messages
|
|
116
|
+
|
|
117
|
+
**Threading when posting via `slack_send_message`:**
|
|
118
|
+
- To chime in on an existing thread elsewhere (e.g. a cross-agent conversation another agent started), pass that thread's `ts` as `thread_ts`.
|
|
119
|
+
- Use `force_root: true` for unprompted broadcasts (scheduled digests, cross-channel notifications) that should land at channel root.
|
|
120
|
+
- Omitting both is acceptable — the server falls back to the most recent active conversation on that channel if one is in flight.
|
|
121
|
+
- The inbound preamble's `thread=<ts>` refers to the conversation you're *currently handling*. Do not use it to reply to that conversation via MCP (see above) — it is only informational.
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
107
125
|
### Group Conversations
|
|
108
126
|
|
|
109
127
|
When you are in a conversation with other agents:
|