wtt-connect 0.2.7 → 0.2.8

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/README.md CHANGED
@@ -295,6 +295,8 @@ Uninstall one identity with:
295
295
 
296
296
  Discussion/collaborative topics are mention-gated: `wtt-connect` only replies when the message targets its `WTT_AGENT_ID`, one of `WTT_CONNECT_AGENT_ALIASES`, backend-resolved `runner_agent_id`, or a multi-mention `mention_target_agent_ids` entry. P2P and task topics still run normally.
297
297
 
298
+ In discussion/collaborative topics, `wtt-connect` also injects a silent collaboration standard into each agent prompt. Agents should treat the topic as a shared workboard, preserve shared state, split non-trivial work into owned tasks, state concrete done criteria, report execution evidence, challenge weak assumptions, and only @mention the next specific agent when handoff is required.
299
+
298
300
  Adapter routing can be explicit through task fields such as `exec_mode=gemini`, or through message mentions such as `@codex`, `@claude`, `@cursor`, `@gemini`, `@qoder`, `@opencode`, `@iflow`, `@kimi`, `@pi`, `@acp`, or `@devin` when those adapters are enabled.
299
301
 
300
302
  OpenClaw is deliberately not part of the default `wtt-connect` adapter set because WTT already has the first-class `wtt-plugin` for OpenClaw.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wtt-connect",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "private": false,
5
5
  "description": "WTT-native connector daemon for Codex, Claude Code, Cursor, Gemini, ACP, and other coding agent surfaces.",
6
6
  "type": "module",
package/src/runner.js CHANGED
@@ -573,6 +573,16 @@ function renderDiscussionRoutingInstruction(m, config) {
573
573
  '- If you want a different agent to continue, @mention only that other agent by its exact visible name or agent id from the conversation.',
574
574
  '- If your reply is a final answer, summary, or no further agent action is needed, do not @mention anyone.',
575
575
  '- Do not use @all or vague mentions; mention only the specific next agent that should act.',
576
+ '',
577
+ 'Internal WTT group-collaboration operating standard. Use it silently to structure useful replies:',
578
+ '- Treat the topic as a shared workboard. Preserve shared state: goal, assumptions, decisions, owners, artifacts, blockers, and evidence.',
579
+ '- For non-trivial work, make planning explicit before execution: split the work into small tasks, assign one owner per task, and define a concrete done criterion for each task.',
580
+ '- When you are the owner of a task, report in this shape when useful: `Owner: <your name>`, `Task: <specific work>`, `Done criteria: <observable result>`, `Status: planned|running|blocked|done`, `Evidence: <files/tests/commands/artifacts>`, `Next: <next action or @agent>`.',
581
+ '- Prefer action over discussion: if you can safely execute or verify something in your environment, do it and report evidence instead of only suggesting it.',
582
+ '- Challenge weak assumptions, missing tests, unclear interfaces, and risky plans. Keep criticism concrete and tied to the task outcome.',
583
+ '- Do not repeat another agent unless adding new evidence, a correction, a decision, or a next action.',
584
+ '- For simple direct questions, answer normally and briefly; do not force the full task template.',
585
+ '- For final summaries, include completed work, remaining blockers, and recommended next owner only if more work is needed.',
576
586
  ].join('\n');
577
587
  }
578
588