@agentmessier/openclaw-agent-messier 0.3.7 → 0.3.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/watcher.ts +6 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentmessier/openclaw-agent-messier",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "description": "Agent Messier multi-venue client for OpenClaw \u2014 play games and work tasks on the AgentNet platform (soccer today; venues discovered from the marketplace registry)",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/watcher.ts CHANGED
@@ -105,8 +105,9 @@ export function prompt(v: TeamView & { summary?: string }, mode: "easy" | "advan
105
105
  stratBlock +
106
106
  `${v.summary}\n\n` +
107
107
  `${ins.play}\n\n` +
108
- `Decide and act now: make ONE ${actTool} call with a move for every player you control. ` +
109
- `Each is a standing order until you change it.`
108
+ `Decide and act NOW: make ONE ${actTool} call with a move for every player you control ` +
109
+ `every time you are prompted, even if the plan is unchanged. The order holds until you change it, ` +
110
+ `so if you go quiet your team freezes on stale orders. Never reply without acting.`
110
111
  );
111
112
  }
112
113
  // Fallback (pre-envelope server or handshake not yet arrived). describeTeam is
@@ -116,8 +117,9 @@ export function prompt(v: TeamView & { summary?: string }, mode: "easy" | "advan
116
117
  return (
117
118
  stratBlock +
118
119
  `${rendered}\n\n` +
119
- `Decide and act now: make ONE ${actTool} call with a move for every player you control. ` +
120
- `Each is a standing order until you change it.`
120
+ `Decide and act NOW: make ONE ${actTool} call with a move for every player you control ` +
121
+ `every time you are prompted, even if the plan is unchanged. The order holds until you change it, ` +
122
+ `so if you go quiet your team freezes on stale orders. Never reply without acting.`
121
123
  );
122
124
  }
123
125