@alook/cli 0.0.57 → 0.0.58
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/index.js +3 -2
- package/dist/session-runner.js +4 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15150,8 +15150,9 @@ var CreateIssueRequestSchema = exports_external.object({
|
|
|
15150
15150
|
var UpdateIssueRequestSchema = exports_external.object({
|
|
15151
15151
|
title: exports_external.string().min(1).max(200).optional(),
|
|
15152
15152
|
description: exports_external.string().max(20000).optional(),
|
|
15153
|
-
status: IssueStatusSchema.optional()
|
|
15154
|
-
|
|
15153
|
+
status: IssueStatusSchema.optional(),
|
|
15154
|
+
agent_id: exports_external.string().min(1).optional()
|
|
15155
|
+
}).refine((v) => v.title !== undefined || v.description !== undefined || v.status !== undefined || v.agent_id !== undefined, { message: "at least one field is required" });
|
|
15155
15156
|
var CreateIssueCommentBodySchema = exports_external.object({
|
|
15156
15157
|
content: exports_external.string().min(1, "content is required").max(20000)
|
|
15157
15158
|
});
|
package/dist/session-runner.js
CHANGED
|
@@ -14577,8 +14577,9 @@ var CreateIssueRequestSchema = exports_external.object({
|
|
|
14577
14577
|
var UpdateIssueRequestSchema = exports_external.object({
|
|
14578
14578
|
title: exports_external.string().min(1).max(200).optional(),
|
|
14579
14579
|
description: exports_external.string().max(20000).optional(),
|
|
14580
|
-
status: IssueStatusSchema.optional()
|
|
14581
|
-
|
|
14580
|
+
status: IssueStatusSchema.optional(),
|
|
14581
|
+
agent_id: exports_external.string().min(1).optional()
|
|
14582
|
+
}).refine((v) => v.title !== undefined || v.description !== undefined || v.status !== undefined || v.agent_id !== undefined, { message: "at least one field is required" });
|
|
14582
14583
|
var CreateIssueCommentBodySchema = exports_external.object({
|
|
14583
14584
|
content: exports_external.string().min(1, "content is required").max(20000)
|
|
14584
14585
|
});
|
|
@@ -17844,6 +17845,7 @@ Below are your direct colleagues. You can reach them via email.
|
|
|
17844
17845
|
**Important:**
|
|
17845
17846
|
- When communicating with a colleague on the **same topic** as an existing email thread, reply to that thread (use --in-reply-to) to keep context together.
|
|
17846
17847
|
- **When starting a NEW topic or task that is unrelated to any previous email thread, you MUST compose a brand new email (do NOT use --in-reply-to). Never hijack an unrelated thread just because you recently emailed that colleague.** Judge by topic/task relevance, not by recency of communication.
|
|
17848
|
+
- Make sure to send follow-up emails to your colleagues to stop the previous wrong directions or instructions you sent before, don't make your colleague running for nothing.
|
|
17847
17849
|
`;
|
|
17848
17850
|
for (let i = 0;i < task.agent.colleagues.length; i++) {
|
|
17849
17851
|
const c = task.agent.colleagues[i];
|