@rallycry/conveyor-agent 7.2.11 → 7.2.13
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/{chunk-JYSWXYG6.js → chunk-HXDVU6IH.js} +5 -3
- package/dist/chunk-HXDVU6IH.js.map +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/dist/{task-audit-handler-6XWYK6KZ.js → task-audit-handler-KGTVMVAP.js} +21 -3
- package/dist/task-audit-handler-KGTVMVAP.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-JYSWXYG6.js.map +0 -1
- package/dist/task-audit-handler-6XWYK6KZ.js.map +0 -1
|
@@ -2744,7 +2744,9 @@ function buildCreateSuggestionTool(connection) {
|
|
|
2744
2744
|
"Suggest a feature, improvement, or idea for the project. If you want to recommend something \u2014 a document, a rule, a feature, a task, an optimization \u2014 use this tool. If a similar suggestion already exists, your vote will be added to it instead of creating a duplicate.",
|
|
2745
2745
|
{
|
|
2746
2746
|
title: z.string().describe("Short title for the suggestion"),
|
|
2747
|
-
description: z.string().optional().describe(
|
|
2747
|
+
description: z.string().optional().describe(
|
|
2748
|
+
"1-2 sentence description of what should change and why. Keep concise and project-focused."
|
|
2749
|
+
),
|
|
2748
2750
|
tag_names: z.array(z.string()).optional().describe("Tag names to categorize the suggestion")
|
|
2749
2751
|
},
|
|
2750
2752
|
async ({ title, description, tag_names }) => {
|
|
@@ -7234,7 +7236,7 @@ var ProjectRunner = class {
|
|
|
7234
7236
|
async handleAuditTasks(request) {
|
|
7235
7237
|
this.connection.emitStatus("busy");
|
|
7236
7238
|
try {
|
|
7237
|
-
const { handleTaskAudit } = await import("./task-audit-handler-
|
|
7239
|
+
const { handleTaskAudit } = await import("./task-audit-handler-KGTVMVAP.js");
|
|
7238
7240
|
await handleTaskAudit(request, this.connection, this.projectDir);
|
|
7239
7241
|
} catch (error) {
|
|
7240
7242
|
const msg = error instanceof Error ? error.message : String(error);
|
|
@@ -7679,4 +7681,4 @@ export {
|
|
|
7679
7681
|
loadForwardPorts,
|
|
7680
7682
|
loadConveyorConfig
|
|
7681
7683
|
};
|
|
7682
|
-
//# sourceMappingURL=chunk-
|
|
7684
|
+
//# sourceMappingURL=chunk-HXDVU6IH.js.map
|