@unblocklabs/slack-subagent-card 1.0.1 → 1.0.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/index.ts +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/index.ts
CHANGED
|
@@ -734,7 +734,7 @@ function escapeMrkdwn(value: string): string {
|
|
|
734
734
|
}
|
|
735
735
|
|
|
736
736
|
function normalizeSlackChannelId(channelId: string): string {
|
|
737
|
-
return /^[
|
|
737
|
+
return /^[cgdu]/i.test(channelId) ? channelId.toUpperCase() : channelId;
|
|
738
738
|
}
|
|
739
739
|
|
|
740
740
|
function cleanupStaleRuns(shared: SharedState, log: Logger): void {
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "slack-subagent-card",
|
|
3
3
|
"name": "Slack Subagent Card",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.2",
|
|
5
5
|
"description": "Posts and updates a Slack Block Kit status card for thread-bound sub-agents, nudges quiet parent threads after completion, wakes parent sessions, and writes completion markers.",
|
|
6
6
|
"entry": "index.ts",
|
|
7
7
|
"configSchema": {
|
package/package.json
CHANGED