@openagents-org/agent-launcher 0.2.9 → 0.2.10

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": "@openagents-org/agent-launcher",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -161,7 +161,7 @@ class WorkspaceClient {
161
161
  async pollPending(workspaceId, agentName, token, { after, limit = 50 } = {}) {
162
162
  const params = new URLSearchParams({
163
163
  network: workspaceId,
164
- type: 'workspace.message',
164
+ type: 'workspace.message.posted',
165
165
  limit: String(limit),
166
166
  });
167
167
  if (after) params.set('after', after);