snow-flow 4.5.44 → 4.5.45
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/CLAUDE.md +25 -0
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Snow-Flow Configuration & Best Practices
|
|
2
2
|
|
|
3
|
+
## 🚨 CRITICAL: PREVENT INFINITE TASK LOOPS
|
|
4
|
+
|
|
5
|
+
**NEVER spawn multiple agents for the same task type!**
|
|
6
|
+
|
|
7
|
+
**❌ INFINITE LOOP (PROHIBITED):**
|
|
8
|
+
```
|
|
9
|
+
Task("Create configurable workspace")
|
|
10
|
+
Task("Create configurable workspace")
|
|
11
|
+
Task("Create configurable workspace") // ← CAUSES INFINITE LOOP!
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
**✅ CORRECT (Single Agent):**
|
|
15
|
+
```
|
|
16
|
+
Task("workspace-specialist", "Create ONE Configurable Agent Workspace named 'IT Support Hub' using snow_create_workspace with UX App architecture. Verify creation and store sys_id in Memory.")
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
**🎯 Anti-Loop Rules:**
|
|
20
|
+
1. **ONE agent per task type maximum**
|
|
21
|
+
2. **Specific agent instructions** (not generic descriptions)
|
|
22
|
+
3. **Wait for completion** before spawning additional agents
|
|
23
|
+
4. **Check Memory for existing work** before spawning
|
|
24
|
+
5. **NO duplicate Task() calls** with same objective
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
3
28
|
This document provides comprehensive instructions for Snow-Flow, an advanced ServiceNow development and orchestration framework powered by Claude AI.
|
|
4
29
|
|
|
5
30
|
## Table of Contents
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.45",
|
|
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",
|