agent-orchestrator-mcp-server 0.4.3 → 0.4.4

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": "agent-orchestrator-mcp-server",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Local implementation of agent-orchestrator MCP server",
5
5
  "main": "build/index.js",
6
6
  "type": "module",
@@ -16,6 +16,7 @@ export interface RawAgentRoot {
16
16
  default_stop_condition?: string;
17
17
  default?: boolean;
18
18
  default_mcp_servers?: string[];
19
+ default_skills?: string[];
19
20
  }
20
21
  /**
21
22
  * Maps a raw API agent root to the normalized AgentRootInfo interface.
@@ -415,6 +415,7 @@ export function createIntegrationMockOrchestratorClient(initialMockData) {
415
415
  git_root: 'https://github.com/pulsemcp/mcp-servers.git',
416
416
  default_branch: 'main',
417
417
  default_mcp_servers: ['github-development'],
418
+ default_skills: ['discovery-classify', 'discovery-validate'],
418
419
  },
419
420
  ],
420
421
  stop_conditions: [
@@ -18,6 +18,7 @@ export function mapAgentRoot(raw) {
18
18
  default_subdirectory: raw.subdirectory,
19
19
  default_stop_condition: raw.default_stop_condition,
20
20
  default_mcp_servers: raw.default_mcp_servers,
21
+ default_skills: raw.default_skills,
21
22
  };
22
23
  }
23
24
  /** Default timeout for API requests in milliseconds */
@@ -11,7 +11,7 @@ const TOOL_DESCRIPTION = `Fetches all static configuration data in a single call
11
11
 
12
12
  Returns:
13
13
  - **MCP servers**: Available servers for use with start_session (name, title, description)
14
- - **Agent roots**: Preconfigured repository settings with defaults (git_root, branch, mcp_servers, stop_condition)
14
+ - **Agent roots**: Preconfigured repository settings with defaults (git_root, branch, mcp_servers, skills, stop_condition)
15
15
  - **Stop conditions**: Available session completion criteria (id, name, description)
16
16
 
17
17
  **Use this tool** to get all configuration options before calling start_session.
@@ -156,6 +156,9 @@ function formatAgentRoot(lines, root) {
156
156
  if (root.default_stop_condition) {
157
157
  lines.push(`- **Default Stop Condition:** \`${root.default_stop_condition}\``);
158
158
  }
159
+ if (root.default_skills && root.default_skills.length > 0) {
160
+ lines.push(`- **Default Skills:** ${root.default_skills.map((s) => `\`${s}\``).join(', ')}`);
161
+ }
159
162
  lines.push('');
160
163
  }
161
164
  function formatStopCondition(lines, condition) {
package/shared/types.d.ts CHANGED
@@ -114,6 +114,7 @@ export interface AgentRootInfo {
114
114
  default_subdirectory?: string;
115
115
  default_stop_condition?: string;
116
116
  default_mcp_servers?: string[];
117
+ default_skills?: string[];
117
118
  }
118
119
  export interface StopConditionInfo {
119
120
  id: string;