@openagents-org/agent-launcher 0.2.122 → 0.2.123

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.122",
3
+ "version": "0.2.123",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -242,7 +242,9 @@ function buildApiSkillsPrompt({ endpoint, workspaceId, token, agentName, channel
242
242
  `"source":"openagents:${agentName}"}'\`\n\n` +
243
243
  '**Get your to-do list:**\n' +
244
244
  `\`curl -s -H "${h}" "${baseUrl}/v1/todos?network=${workspaceId}&channel=${channelName}"\`\n\n` +
245
- 'Use to-dos to plan multi-step work. Update the list as you complete each step.\n' +
245
+ '**IMPORTANT:** When you receive a task with multiple steps or a list of things to do, ' +
246
+ 'ALWAYS create a to-do list first before starting work. This lets the user see your ' +
247
+ 'progress in real time. Update statuses as you work through each item.\n' +
246
248
  'You can assign items to other agents: `"assignee": "other-agent-name"`\n'
247
249
  );
248
250
  }
@@ -316,7 +318,7 @@ function buildClaudeSystemPrompt({ agentName, workspaceId, channelName, mode = '
316
318
  parts.push(
317
319
  'Use workspace_get_history to read previous messages.\n' +
318
320
  'Use workspace_get_agents to see other agents.\n' +
319
- 'Use workspace_put_todos to track your progress with a to-do list.\n' +
321
+ 'Use workspace_put_todos to track your progress. ALWAYS create a to-do list when given multiple tasks or multi-step work.\n' +
320
322
  'Use workspace_create_timer to set a reminder that wakes you up later.\n' +
321
323
  'Use workspace_create_routine to set up recurring scheduled tasks (e.g. daily reviews).\n'
322
324
  );