@rallycry/conveyor-agent 10.11.1 → 10.12.0
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/dist/cli.js
CHANGED
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
sampleKeyUsage,
|
|
31
31
|
terminateProcessGroup,
|
|
32
32
|
textResult
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-CXNWRIS7.js";
|
|
34
34
|
import "./chunk-7TQO4ZF4.js";
|
|
35
35
|
|
|
36
36
|
// src/cli.ts
|
|
@@ -937,11 +937,14 @@ function buildPostToProjectChatTool(connection, projectId) {
|
|
|
937
937
|
"post_to_project_chat",
|
|
938
938
|
"Post a markdown message to the PROJECT chat \u2014 use once at the end of an audit for the summary the team reads.",
|
|
939
939
|
{
|
|
940
|
-
message: z.string().min(1).max(2e4)
|
|
940
|
+
message: z.string().min(1).max(2e4),
|
|
941
|
+
kind: z.enum(["tag_audit_summary"]).optional().describe(
|
|
942
|
+
"Set to 'tag_audit_summary' when posting a tag-audit summary so it is also saved to the persistent tag history"
|
|
943
|
+
)
|
|
941
944
|
},
|
|
942
|
-
async ({ message }) => {
|
|
945
|
+
async ({ message, kind }) => {
|
|
943
946
|
try {
|
|
944
|
-
await connection.call("postToProjectChat", { projectId, content: message });
|
|
947
|
+
await connection.call("postToProjectChat", { projectId, content: message, kind });
|
|
945
948
|
return textResult("Posted to project chat");
|
|
946
949
|
} catch (error) {
|
|
947
950
|
return errText("Failed to post to project chat", error);
|