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 +1 -1
- package/shared/orchestrator-client/orchestrator-client.d.ts +1 -0
- package/shared/orchestrator-client/orchestrator-client.integration-mock.js +1 -0
- package/shared/orchestrator-client/orchestrator-client.js +1 -0
- package/shared/tools/get-configs.js +4 -1
- package/shared/types.d.ts +1 -0
package/package.json
CHANGED
|
@@ -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