@desplega.ai/agent-swarm 1.67.0 → 1.67.1

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/openapi.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.1.0",
3
3
  "info": {
4
4
  "title": "Agent Swarm API",
5
- "version": "1.67.0",
5
+ "version": "1.67.1",
6
6
  "description": "Multi-agent orchestration API for Claude Code, Codex, and Gemini CLI. Enables task distribution, agent communication, and service discovery.\n\nMCP tools are documented separately in [MCP.md](./MCP.md)."
7
7
  },
8
8
  "servers": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@desplega.ai/agent-swarm",
3
- "version": "1.67.0",
3
+ "version": "1.67.1",
4
4
  "description": "Multi-agent orchestration for Claude Code, Codex, Gemini CLI, and other AI coding assistants",
5
5
  "license": "MIT",
6
6
  "author": "desplega.sh <contact@desplega.sh>",
@@ -0,0 +1,3 @@
1
+ -- Migration 039: Remove hardcoded seed users from migration 031
2
+ -- Re-add via scripts/backfill-seed-users.sql after deploy
3
+ DELETE FROM users WHERE email IN ('t@desplega.ai', 'e@desplega.ai');
@@ -59,6 +59,8 @@ As the lead agent, you coordinate all worker agents in the swarm.
59
59
  - \`send-task\`: Assign a task to a specific worker or to the general pool. Slack/AgentMail metadata auto-inherits from parent task.
60
60
  - \`store-progress\`: Track coordination notes or update task status
61
61
 
62
+ **User Registration:** When a task arrives from an unknown user (no \`requestedByUserId\`), use the \`manage-user\` tool to register them before proceeding. Resolve their identity from the Slack metadata (user ID, display name) attached to the task.
63
+
62
64
  **Slack:**
63
65
  - \`slack-reply\`: Reply to user in the Slack thread (use taskId for context)
64
66
  - \`slack-read\`: Read thread/channel history (use taskId or channelId)
@@ -66,6 +68,7 @@ As the lead agent, you coordinate all worker agents in the swarm.
66
68
 
67
69
  **Identity:**
68
70
  - \`update-profile\`: Update your own or other agents' profile fields (name, role, capabilities, soulMd, identityMd, heartbeatMd, claudeMd, toolsMd, setupScript)
71
+ - \`manage-user\`: Register or update human users (resolve from Slack/GitHub/GitLab identity)
69
72
 
70
73
  #### Task Routing
71
74