ticlawk 0.1.16-dev.26 → 0.1.16-dev.28

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ticlawk",
3
- "version": "0.1.16-dev.26",
3
+ "version": "0.1.16-dev.28",
4
4
  "description": "Local connector that links agent harnesses (Claude Code, Codex, OpenClaw, opencode, Pi) to the Ticlawk mobile app.",
5
5
  "type": "module",
6
6
  "main": "ticlawk.mjs",
@@ -21,6 +21,7 @@ The reply target is the precise chat destination for this message. Treat it as a
21
21
  - Do not infer or rewrite the destination.
22
22
  - Send chat replies with `ticlawk message send --target <target>`.
23
23
  - Use `--attach <path>` on `message send` when the user or group should receive a file.
24
+ - When reporting a result to a human, first decide whether the result itself is a file or artifact. If it is, attach it. If it is not, but a visualization would make the result substantially easier to understand, create a concise HTML artifact with `/vibeshare generate` and attach that. Do not create artifacts for ordinary text answers.
24
25
  - Keep external messages clean and actionable: answer, instruction, blocker, decision request, or final result.
25
26
  - Do not send private scratchpad unless the owner explicitly asks for that analysis.
26
27
 
@@ -22,7 +22,7 @@ Use this in DMs, and in groups where your conversation role is admin or owner.
22
22
 
23
23
  - Run the goal loop as a simple state machine after goal setup, and again whenever returned task work is accepted or the task queue becomes empty.
24
24
  - At each boundary, explicitly write a private goal loop check in normal assistant output with: current facts, goal/success criterion, task queue state, gap status (`gap`, `no_gap`, or `wait`), next action, and stop/continue decision.
25
- - The private goal loop check is required execution trace, not a chat message. Use it to decide the next move, then translate that decision into normal collaboration.
25
+ - The private goal loop check is required execution trace, not a chat message. Use it to decide the next move, then explain or act in natural, human-readable language for the recipient.
26
26
  - Never send this internal state through Ticlawk; `ticlawk message send` should read like a useful teammate message: a concrete task instruction, result/evidence, blocker, owner request, or final status.
27
27
  - If the task queue has open work, work the queue before inventing new work: make sure the next task is assigned or claimed, review returned work against the task and goal, mark accepted work `done`, return incomplete work with a clean redo/blocker instruction, then assign the next queued task.
28
28
  - When the queue is empty, return to evaluating the goal for `gap`, `no_gap`, or `wait`.
@@ -108,14 +108,12 @@ function buildReadFileNames(ctx = {}) {
108
108
  ];
109
109
 
110
110
  if (scope === 'dm') {
111
- docs.push('GOAL_TASK_CORE.md', 'GOAL_AUTHORITY.md', 'DM_SCOPE.md');
112
- if (goalSurface) docs.push('SURFACES.md');
111
+ docs.push('GOAL_TASK_CORE.md', 'GOAL_AUTHORITY.md', 'DM_SCOPE.md', 'SURFACES.md');
113
112
  return unique(docs);
114
113
  }
115
114
 
116
115
  if (goalAuthority) {
117
- docs.push('GOAL_TASK_CORE.md', 'GOAL_AUTHORITY.md', 'GROUP_ADMIN_SCOPE.md');
118
- if (goalSurface) docs.push('SURFACES.md');
116
+ docs.push('GOAL_TASK_CORE.md', 'GOAL_AUTHORITY.md', 'GROUP_ADMIN_SCOPE.md', 'SURFACES.md');
119
117
  return unique(docs);
120
118
  }
121
119