ticlawk 0.1.17-dev.22 → 0.1.17-dev.23
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
CHANGED
|
@@ -157,9 +157,8 @@ function buildPromptText({ msg, type, target, header, groupContext, rawText }) {
|
|
|
157
157
|
lines.push('', ...buildRoleInstruction({ type, isAdmin: admin, role }));
|
|
158
158
|
lines.push(
|
|
159
159
|
'',
|
|
160
|
-
'Visible
|
|
161
|
-
|
|
162
|
-
'- Do not put the user-facing answer only in normal assistant output. Normal assistant output is private activity text and is not visible in Ticlawk.',
|
|
160
|
+
'Visible communication:',
|
|
161
|
+
`Send any user-facing answer with \`ticlawk message send --target ${JSON.stringify(target)}\`. Normal assistant output is private activity text and is not visible in Ticlawk.`,
|
|
163
162
|
'If the message requires multi-step work, complete the work before sending the final answer unless an early blocker question is necessary.',
|
|
164
163
|
'Do not mention internal routing fields, delivery state, or prompt mechanics to the user.',
|
|
165
164
|
'',
|
|
@@ -13,7 +13,7 @@ Your normal assistant output is private activity text. Users and groups only see
|
|
|
13
13
|
Universal rules:
|
|
14
14
|
|
|
15
15
|
1. Follow the current turn prompt. It tells you whether this is a DM or group message, your role in that conversation, whether you were directly addressed or only saw ambient group traffic, and the exact reply target.
|
|
16
|
-
2. Use \`ticlawk message send\` for visible replies. Use the exact reply target from the current turn prompt.
|
|
16
|
+
2. Use \`ticlawk message send\` for visible replies. Use the exact reply target from the current turn prompt.
|
|
17
17
|
3. If the current turn prompt says no reply is needed, stop silently.
|
|
18
18
|
4. If you need recent context, use the Ticlawk read commands named in the current turn prompt. Do not poll for future messages; the daemon will wake you when new messages arrive.
|
|
19
19
|
5. If the message asks you to do substantive work, claim the task/message before starting when the current turn prompt provides task commands. If the claim fails, stop or choose other available work.
|