ework-daemon 0.4.49 → 0.4.50
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/package.json +1 -1
- package/src/opencode.ts +4 -2
package/package.json
CHANGED
package/src/opencode.ts
CHANGED
|
@@ -1520,7 +1520,9 @@ export class Engine {
|
|
|
1520
1520
|
): string {
|
|
1521
1521
|
const who = authorKind === "bot" ? `@${commentUser} (bot)` : `@${commentUser} (user)`;
|
|
1522
1522
|
return [
|
|
1523
|
-
`
|
|
1523
|
+
`[SYSTEM FORWARD] User ${who} posted a new comment on ${instructions.issueRef} "${issueTitle}".`,
|
|
1524
|
+
`The platform forwarded it to you; the user cannot see your terminal output —`,
|
|
1525
|
+
`your reply tool posts a \`[bot]\` comment into the thread they read.`,
|
|
1524
1526
|
``,
|
|
1525
1527
|
`---`,
|
|
1526
1528
|
commentBody,
|
|
@@ -1528,7 +1530,7 @@ export class Engine {
|
|
|
1528
1530
|
``,
|
|
1529
1531
|
`Working directory: ${workdir}`,
|
|
1530
1532
|
``,
|
|
1531
|
-
`Reply
|
|
1533
|
+
`Reply using the \`reply\` tool.`,
|
|
1532
1534
|
].join("\n");
|
|
1533
1535
|
}
|
|
1534
1536
|
|