snow-flow 4.5.19 → 4.5.21
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/.mcp.json.template +1 -1
- package/dist/cli.js +27 -9
- package/package.json +1 -1
package/.mcp.json.template
CHANGED
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
"args": [
|
|
164
164
|
"{{PROJECT_ROOT}}/dist/mcp/servicenow-flow-workspace-mobile-mcp.js"
|
|
165
165
|
],
|
|
166
|
-
"description": "Flow Designer,
|
|
166
|
+
"description": "Flow Designer, Agent Workspaces, Mobile + Complete UI Builder Integration - 27+ tools including UI Builder pages, components, data brokers, workspace configuration, and mobile app management",
|
|
167
167
|
"env": {
|
|
168
168
|
"SNOW_INSTANCE": "{{SNOW_INSTANCE}}",
|
|
169
169
|
"SNOW_CLIENT_ID": "{{SNOW_CLIENT_ID}}",
|
package/dist/cli.js
CHANGED
|
@@ -515,16 +515,16 @@ async function executeClaudeCode(prompt) {
|
|
|
515
515
|
console.log(chalk_1.default.yellow('🔧 Starting ServiceNow MCP servers...'));
|
|
516
516
|
await manager.startAllServers();
|
|
517
517
|
const newStatus = manager.getSystemStatus();
|
|
518
|
-
console.log(chalk_1.default.green(`✅ ${newStatus.running} MCP servers ready`));
|
|
518
|
+
console.log(chalk_1.default.green(`✅ ${newStatus.running} ServiceNow MCP servers ready`));
|
|
519
519
|
}
|
|
520
520
|
else if (systemStatus.running < systemStatus.total) {
|
|
521
521
|
console.log(chalk_1.default.yellow('🔄 Starting additional MCP servers...'));
|
|
522
522
|
await manager.startAllServers();
|
|
523
523
|
const newStatus = manager.getSystemStatus();
|
|
524
|
-
console.log(chalk_1.default.green(`✅ All ${newStatus.running} MCP servers ready`));
|
|
524
|
+
console.log(chalk_1.default.green(`✅ All ${newStatus.running} ServiceNow MCP servers ready`));
|
|
525
525
|
}
|
|
526
526
|
else {
|
|
527
|
-
console.log(chalk_1.default.green(`✅ All ${systemStatus.running} MCP servers ready`));
|
|
527
|
+
console.log(chalk_1.default.green(`✅ All ${systemStatus.running} ServiceNow MCP servers ready (235+ tools)`));
|
|
528
528
|
}
|
|
529
529
|
}
|
|
530
530
|
catch (error) {
|
|
@@ -1054,12 +1054,30 @@ Your Queen Agent orchestration is successful when:
|
|
|
1054
1054
|
|
|
1055
1055
|
## 💡 Queen Agent Best Practices
|
|
1056
1056
|
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1057
|
+
### **Workflow Orchestration:**
|
|
1058
|
+
1. **NEVER parallel foundation work** - research, planning, architecture must be sequential
|
|
1059
|
+
2. **Foundation → Development → Validation** - strict phase progression
|
|
1060
|
+
3. **Parallel development only** after foundation complete
|
|
1061
|
+
4. **Use Memory to share foundation outputs** to development agents
|
|
1062
|
+
5. **Coordinate parallel agents** through shared Memory state
|
|
1063
|
+
|
|
1064
|
+
### **Agent Coordination:**
|
|
1065
|
+
1. **Sequential Agents**: researcher → planner → architect (must wait for each other)
|
|
1066
|
+
2. **Parallel Agents**: widget-developer + script-writer + ui-builder (can work simultaneously)
|
|
1067
|
+
3. **Foundation Dependencies**: All development agents depend on architecture completion
|
|
1068
|
+
4. **Shared Memory**: Store research findings, plans, architecture for all agents to access
|
|
1069
|
+
|
|
1070
|
+
### **Task Management:**
|
|
1071
|
+
1. **Update TodoWrite** with phase progression
|
|
1072
|
+
2. **Mark foundation complete** before starting development
|
|
1073
|
+
3. **Monitor parallel agent progress** and coordinate conflicts
|
|
1074
|
+
4. **Validate outputs** before marking complete
|
|
1075
|
+
5. **Store all decisions** in Memory for audit trail
|
|
1076
|
+
|
|
1077
|
+
### **Example Workflow:**
|
|
1078
|
+
**Phase 1 (Sequential):** researcher → architect → planner
|
|
1079
|
+
**Phase 2 (Parallel):** widget-dev + script-writer + ui-builder (use foundation outputs)
|
|
1080
|
+
**Phase 3 (Parallel):** tester + reviewer + documenter (validate development outputs)
|
|
1063
1081
|
|
|
1064
1082
|
## 🚀 Begin Orchestration
|
|
1065
1083
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.21",
|
|
4
4
|
"description": "Conversational ServiceNow development platform using Claude Code. Multi-agent orchestration with 20+ MCP servers providing 200+ ServiceNow tools for comprehensive platform development.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|