claude-flow-novice 2.5.2 → 2.6.0
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/agents/CLAUDE.md +740 -978
- package/.claude/agents/core-agents/cost-savings-cfn-loop-coordinator.md +47 -2
- package/.claude/agents/custom/agent-builder.md +637 -0
- package/.claude/api-configs/config-current-zai-config.env +62 -0
- package/.claude/api-configs/config-test-zai-config.env +62 -0
- package/.claude/api-configs/env-backups/before-anthropic-20251020-025404.env +62 -0
- package/.claude/api-configs/env-backups/before-restore-20251020-025431.env +62 -0
- package/.claude/artifacts/reflection-merge-logs/cli-agent-spawning-v2.5.2-merge-report.md +61 -0
- package/.claude/commands/cfn-loop-epic.md +41 -17
- package/.claude/commands/cfn-loop.md +43 -30
- package/.claude/commands/custom-routing-activate.md +37 -123
- package/.claude/commands/custom-routing-deactivate.md +27 -124
- package/.claude/commands/switch-api.md +41 -16
- package/.claude/skills/agent-execution/execute-agent.sh +126 -0
- package/.claude/skills/redis-coordination/AGENT_LOGGING.md +280 -0
- package/.claude/skills/redis-coordination/agent-log.sh +124 -0
- package/.claude/skills/redis-coordination/init-swarm.sh +6 -1
- package/.claude/skills/redis-coordination/invoke-waiting-mode.sh +62 -5
- package/.claude/skills/redis-coordination/orchestrate-cfn-loop.sh +68 -8
- package/.claude/skills/redis-coordination/orchestrate-cfn-loop.sh.backup-1760949407 +933 -0
- package/.claude/skills/redis-coordination/store-epic-context.sh +123 -0
- package/.claude/skills/redis-coordination/test-iteration-feedback.sh +320 -0
- package/.claude/skills/skill-builder/SKILL.md +910 -0
- package/CLAUDE.md +76 -2
- package/dist/cli/agent-command.js +151 -0
- package/dist/cli/agent-command.js.map +1 -0
- package/dist/cli/agent-definition-parser.js +176 -0
- package/dist/cli/agent-definition-parser.js.map +1 -0
- package/dist/cli/agent-executor.js +176 -0
- package/dist/cli/agent-executor.js.map +1 -0
- package/dist/cli/agent-prompt-builder.js +188 -0
- package/dist/cli/agent-prompt-builder.js.map +1 -0
- package/dist/cli/agent-spawn.js +46 -1
- package/dist/cli/agent-spawn.js.map +1 -1
- package/dist/cli/anthropic-client.js +242 -0
- package/dist/cli/anthropic-client.js.map +1 -0
- package/dist/cli/cli-agent-context.js +353 -0
- package/dist/cli/cli-agent-context.js.map +1 -0
- package/dist/cli/cli-agent-context.test.js +451 -0
- package/dist/cli/cli-agent-context.test.js.map +1 -0
- package/dist/cli/index.js +115 -2
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/iteration-history.js +188 -0
- package/dist/cli/iteration-history.js.map +1 -0
- package/package.json +3 -1
- package/scripts/switch-api.sh +233 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
NPM_API_KEY=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
|
|
2
|
+
|
|
3
|
+
# Claude Agent SDK Configuration - Phase 1
|
|
4
|
+
# Enable SDK features for 90% cost reduction
|
|
5
|
+
|
|
6
|
+
# API Keys (use either CLAUDE_API_KEY or ANTHROPIC_API_KEY)
|
|
7
|
+
# CLAUDE_API_KEY=your-api-key-here
|
|
8
|
+
# ANTHROPIC_API_KEY=your-api-key-here
|
|
9
|
+
|
|
10
|
+
# SDK Feature Flags
|
|
11
|
+
ENABLE_SDK_CACHING=true # Enable extended caching (1-hour TTL, 90% cost savings)
|
|
12
|
+
ENABLE_CONTEXT_EDITING=true # Enable context editing (84% token reduction)
|
|
13
|
+
SDK_INTEGRATION_MODE=parallel # Run SDK alongside existing system (safe rollout)
|
|
14
|
+
|
|
15
|
+
# SDK Debugging
|
|
16
|
+
SDK_DEBUG=false # Set to true for detailed SDK logs
|
|
17
|
+
SDK_LOG_LEVEL=info # Log level: debug, info, warn, error
|
|
18
|
+
|
|
19
|
+
# SDK Performance Monitoring
|
|
20
|
+
ENABLE_SDK_MONITORING=true # Track token savings and performance metrics
|
|
21
|
+
|
|
22
|
+
# Integration Control
|
|
23
|
+
ENABLE_SDK_INTEGRATION=true # Master switch for SDK integration
|
|
24
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
25
|
+
ENABLE_SDK_INTEGRATION=true
|
|
26
|
+
SDK_INTEGRATION_MODE=full
|
|
27
|
+
ENABLE_SDK_CACHING=true
|
|
28
|
+
ENABLE_CONTEXT_EDITING=true
|
|
29
|
+
ENABLE_SELF_VALIDATION=true
|
|
30
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
31
|
+
SDK_MAX_RETRIES=3
|
|
32
|
+
SDK_MINIMUM_COVERAGE=80
|
|
33
|
+
|
|
34
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
35
|
+
ENABLE_SDK_INTEGRATION=true
|
|
36
|
+
SDK_INTEGRATION_MODE=full
|
|
37
|
+
ENABLE_SDK_CACHING=true
|
|
38
|
+
ENABLE_CONTEXT_EDITING=true
|
|
39
|
+
ENABLE_SELF_VALIDATION=true
|
|
40
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
41
|
+
SDK_MAX_RETRIES=3
|
|
42
|
+
SDK_MINIMUM_COVERAGE=80
|
|
43
|
+
|
|
44
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
45
|
+
ENABLE_SDK_INTEGRATION=true
|
|
46
|
+
SDK_INTEGRATION_MODE=full
|
|
47
|
+
ENABLE_SDK_CACHING=true
|
|
48
|
+
ENABLE_CONTEXT_EDITING=true
|
|
49
|
+
ENABLE_SELF_VALIDATION=true
|
|
50
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
51
|
+
SDK_MAX_RETRIES=3
|
|
52
|
+
SDK_MINIMUM_COVERAGE=80
|
|
53
|
+
|
|
54
|
+
# API Keys - Claude Max Subscription (Primary)
|
|
55
|
+
ANTHROPIC_API_KEY=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
|
|
56
|
+
|
|
57
|
+
# Z.ai API Configuration (Agent Orchestration - 95-98% Cost Savings)
|
|
58
|
+
CLAUDE_API_PROVIDER=zai # Enable Z.ai routing for CLI agents
|
|
59
|
+
ZAI_API_KEY=cca13d09dcd6407183efe9e24c804cca.QO8R0JxF4fucsoWL # Z.ai API key
|
|
60
|
+
Z_AI_API_KEY=cca13d09dcd6407183efe9e24c804cca.QO8R0JxF4fucsoWL # Alternative key name
|
|
61
|
+
ZAI_BASE_URL=https://api.z.ai/v1 # Z.ai API endpoint
|
|
62
|
+
REDIS_PASSWORD=Hbzbkuv1VdlWq4KTbzDZ2wL+o1xWVGvjDgzWKMkVtcyfoXmzpW9P43UZ6CgGlxjb
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
NPM_API_KEY=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
|
|
2
|
+
|
|
3
|
+
# Claude Agent SDK Configuration - Phase 1
|
|
4
|
+
# Enable SDK features for 90% cost reduction
|
|
5
|
+
|
|
6
|
+
# API Keys (use either CLAUDE_API_KEY or ANTHROPIC_API_KEY)
|
|
7
|
+
# CLAUDE_API_KEY=your-api-key-here
|
|
8
|
+
# ANTHROPIC_API_KEY=your-api-key-here
|
|
9
|
+
|
|
10
|
+
# SDK Feature Flags
|
|
11
|
+
ENABLE_SDK_CACHING=true # Enable extended caching (1-hour TTL, 90% cost savings)
|
|
12
|
+
ENABLE_CONTEXT_EDITING=true # Enable context editing (84% token reduction)
|
|
13
|
+
SDK_INTEGRATION_MODE=parallel # Run SDK alongside existing system (safe rollout)
|
|
14
|
+
|
|
15
|
+
# SDK Debugging
|
|
16
|
+
SDK_DEBUG=false # Set to true for detailed SDK logs
|
|
17
|
+
SDK_LOG_LEVEL=info # Log level: debug, info, warn, error
|
|
18
|
+
|
|
19
|
+
# SDK Performance Monitoring
|
|
20
|
+
ENABLE_SDK_MONITORING=true # Track token savings and performance metrics
|
|
21
|
+
|
|
22
|
+
# Integration Control
|
|
23
|
+
ENABLE_SDK_INTEGRATION=true # Master switch for SDK integration
|
|
24
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
25
|
+
ENABLE_SDK_INTEGRATION=true
|
|
26
|
+
SDK_INTEGRATION_MODE=full
|
|
27
|
+
ENABLE_SDK_CACHING=true
|
|
28
|
+
ENABLE_CONTEXT_EDITING=true
|
|
29
|
+
ENABLE_SELF_VALIDATION=true
|
|
30
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
31
|
+
SDK_MAX_RETRIES=3
|
|
32
|
+
SDK_MINIMUM_COVERAGE=80
|
|
33
|
+
|
|
34
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
35
|
+
ENABLE_SDK_INTEGRATION=true
|
|
36
|
+
SDK_INTEGRATION_MODE=full
|
|
37
|
+
ENABLE_SDK_CACHING=true
|
|
38
|
+
ENABLE_CONTEXT_EDITING=true
|
|
39
|
+
ENABLE_SELF_VALIDATION=true
|
|
40
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
41
|
+
SDK_MAX_RETRIES=3
|
|
42
|
+
SDK_MINIMUM_COVERAGE=80
|
|
43
|
+
|
|
44
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
45
|
+
ENABLE_SDK_INTEGRATION=true
|
|
46
|
+
SDK_INTEGRATION_MODE=full
|
|
47
|
+
ENABLE_SDK_CACHING=true
|
|
48
|
+
ENABLE_CONTEXT_EDITING=true
|
|
49
|
+
ENABLE_SELF_VALIDATION=true
|
|
50
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
51
|
+
SDK_MAX_RETRIES=3
|
|
52
|
+
SDK_MINIMUM_COVERAGE=80
|
|
53
|
+
|
|
54
|
+
# API Keys - Claude Max Subscription (Primary)
|
|
55
|
+
ANTHROPIC_API_KEY=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
|
|
56
|
+
|
|
57
|
+
# Z.ai API Configuration (Agent Orchestration - 95-98% Cost Savings)
|
|
58
|
+
CLAUDE_API_PROVIDER=zai # Enable Z.ai routing for CLI agents
|
|
59
|
+
ZAI_API_KEY=cca13d09dcd6407183efe9e24c804cca.QO8R0JxF4fucsoWL # Z.ai API key
|
|
60
|
+
Z_AI_API_KEY=cca13d09dcd6407183efe9e24c804cca.QO8R0JxF4fucsoWL # Alternative key name
|
|
61
|
+
ZAI_BASE_URL=https://api.z.ai/v1 # Z.ai API endpoint
|
|
62
|
+
REDIS_PASSWORD=Hbzbkuv1VdlWq4KTbzDZ2wL+o1xWVGvjDgzWKMkVtcyfoXmzpW9P43UZ6CgGlxjb
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
NPM_API_KEY=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
|
|
2
|
+
|
|
3
|
+
# Claude Agent SDK Configuration - Phase 1
|
|
4
|
+
# Enable SDK features for 90% cost reduction
|
|
5
|
+
|
|
6
|
+
# API Keys (use either CLAUDE_API_KEY or ANTHROPIC_API_KEY)
|
|
7
|
+
# CLAUDE_API_KEY=your-api-key-here
|
|
8
|
+
# ANTHROPIC_API_KEY=your-api-key-here
|
|
9
|
+
|
|
10
|
+
# SDK Feature Flags
|
|
11
|
+
ENABLE_SDK_CACHING=true # Enable extended caching (1-hour TTL, 90% cost savings)
|
|
12
|
+
ENABLE_CONTEXT_EDITING=true # Enable context editing (84% token reduction)
|
|
13
|
+
SDK_INTEGRATION_MODE=parallel # Run SDK alongside existing system (safe rollout)
|
|
14
|
+
|
|
15
|
+
# SDK Debugging
|
|
16
|
+
SDK_DEBUG=false # Set to true for detailed SDK logs
|
|
17
|
+
SDK_LOG_LEVEL=info # Log level: debug, info, warn, error
|
|
18
|
+
|
|
19
|
+
# SDK Performance Monitoring
|
|
20
|
+
ENABLE_SDK_MONITORING=true # Track token savings and performance metrics
|
|
21
|
+
|
|
22
|
+
# Integration Control
|
|
23
|
+
ENABLE_SDK_INTEGRATION=true # Master switch for SDK integration
|
|
24
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
25
|
+
ENABLE_SDK_INTEGRATION=true
|
|
26
|
+
SDK_INTEGRATION_MODE=full
|
|
27
|
+
ENABLE_SDK_CACHING=true
|
|
28
|
+
ENABLE_CONTEXT_EDITING=true
|
|
29
|
+
ENABLE_SELF_VALIDATION=true
|
|
30
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
31
|
+
SDK_MAX_RETRIES=3
|
|
32
|
+
SDK_MINIMUM_COVERAGE=80
|
|
33
|
+
|
|
34
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
35
|
+
ENABLE_SDK_INTEGRATION=true
|
|
36
|
+
SDK_INTEGRATION_MODE=full
|
|
37
|
+
ENABLE_SDK_CACHING=true
|
|
38
|
+
ENABLE_CONTEXT_EDITING=true
|
|
39
|
+
ENABLE_SELF_VALIDATION=true
|
|
40
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
41
|
+
SDK_MAX_RETRIES=3
|
|
42
|
+
SDK_MINIMUM_COVERAGE=80
|
|
43
|
+
|
|
44
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
45
|
+
ENABLE_SDK_INTEGRATION=true
|
|
46
|
+
SDK_INTEGRATION_MODE=full
|
|
47
|
+
ENABLE_SDK_CACHING=true
|
|
48
|
+
ENABLE_CONTEXT_EDITING=true
|
|
49
|
+
ENABLE_SELF_VALIDATION=true
|
|
50
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
51
|
+
SDK_MAX_RETRIES=3
|
|
52
|
+
SDK_MINIMUM_COVERAGE=80
|
|
53
|
+
|
|
54
|
+
# API Keys - Claude Max Subscription (Primary)
|
|
55
|
+
ANTHROPIC_API_KEY=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
|
|
56
|
+
|
|
57
|
+
# Z.ai API Configuration (Agent Orchestration - 95-98% Cost Savings)
|
|
58
|
+
CLAUDE_API_PROVIDER=zai # Enable Z.ai routing for CLI agents
|
|
59
|
+
ZAI_API_KEY=cca13d09dcd6407183efe9e24c804cca.QO8R0JxF4fucsoWL # Z.ai API key
|
|
60
|
+
Z_AI_API_KEY=cca13d09dcd6407183efe9e24c804cca.QO8R0JxF4fucsoWL # Alternative key name
|
|
61
|
+
ZAI_BASE_URL=https://api.z.ai/v1 # Z.ai API endpoint
|
|
62
|
+
REDIS_PASSWORD=Hbzbkuv1VdlWq4KTbzDZ2wL+o1xWVGvjDgzWKMkVtcyfoXmzpW9P43UZ6CgGlxjb
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
NPM_API_KEY=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
|
|
2
|
+
|
|
3
|
+
# Claude Agent SDK Configuration - Phase 1
|
|
4
|
+
# Enable SDK features for 90% cost reduction
|
|
5
|
+
|
|
6
|
+
# API Keys (use either CLAUDE_API_KEY or ANTHROPIC_API_KEY)
|
|
7
|
+
# CLAUDE_API_KEY=your-api-key-here
|
|
8
|
+
# ANTHROPIC_API_KEY=your-api-key-here
|
|
9
|
+
|
|
10
|
+
# SDK Feature Flags
|
|
11
|
+
ENABLE_SDK_CACHING=true # Enable extended caching (1-hour TTL, 90% cost savings)
|
|
12
|
+
ENABLE_CONTEXT_EDITING=true # Enable context editing (84% token reduction)
|
|
13
|
+
SDK_INTEGRATION_MODE=parallel # Run SDK alongside existing system (safe rollout)
|
|
14
|
+
|
|
15
|
+
# SDK Debugging
|
|
16
|
+
SDK_DEBUG=false # Set to true for detailed SDK logs
|
|
17
|
+
SDK_LOG_LEVEL=info # Log level: debug, info, warn, error
|
|
18
|
+
|
|
19
|
+
# SDK Performance Monitoring
|
|
20
|
+
ENABLE_SDK_MONITORING=true # Track token savings and performance metrics
|
|
21
|
+
|
|
22
|
+
# Integration Control
|
|
23
|
+
ENABLE_SDK_INTEGRATION=true # Master switch for SDK integration
|
|
24
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
25
|
+
ENABLE_SDK_INTEGRATION=true
|
|
26
|
+
SDK_INTEGRATION_MODE=full
|
|
27
|
+
ENABLE_SDK_CACHING=true
|
|
28
|
+
ENABLE_CONTEXT_EDITING=true
|
|
29
|
+
ENABLE_SELF_VALIDATION=true
|
|
30
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
31
|
+
SDK_MAX_RETRIES=3
|
|
32
|
+
SDK_MINIMUM_COVERAGE=80
|
|
33
|
+
|
|
34
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
35
|
+
ENABLE_SDK_INTEGRATION=true
|
|
36
|
+
SDK_INTEGRATION_MODE=full
|
|
37
|
+
ENABLE_SDK_CACHING=true
|
|
38
|
+
ENABLE_CONTEXT_EDITING=true
|
|
39
|
+
ENABLE_SELF_VALIDATION=true
|
|
40
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
41
|
+
SDK_MAX_RETRIES=3
|
|
42
|
+
SDK_MINIMUM_COVERAGE=80
|
|
43
|
+
|
|
44
|
+
# Claude Agent SDK Configuration (All-or-Nothing Deployment)
|
|
45
|
+
ENABLE_SDK_INTEGRATION=true
|
|
46
|
+
SDK_INTEGRATION_MODE=full
|
|
47
|
+
ENABLE_SDK_CACHING=true
|
|
48
|
+
ENABLE_CONTEXT_EDITING=true
|
|
49
|
+
ENABLE_SELF_VALIDATION=true
|
|
50
|
+
SDK_CONFIDENCE_THRESHOLD=0.75
|
|
51
|
+
SDK_MAX_RETRIES=3
|
|
52
|
+
SDK_MINIMUM_COVERAGE=80
|
|
53
|
+
|
|
54
|
+
# API Keys - Claude Max Subscription (Primary)
|
|
55
|
+
ANTHROPIC_API_KEY=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
|
|
56
|
+
|
|
57
|
+
# Z.ai API Configuration (Agent Orchestration - 95-98% Cost Savings)
|
|
58
|
+
CLAUDE_API_PROVIDER=anthropic
|
|
59
|
+
ZAI_API_KEY=cca13d09dcd6407183efe9e24c804cca.QO8R0JxF4fucsoWL # Z.ai API key
|
|
60
|
+
Z_AI_API_KEY=cca13d09dcd6407183efe9e24c804cca.QO8R0JxF4fucsoWL # Alternative key name
|
|
61
|
+
ZAI_BASE_URL=https://api.z.ai/v1 # Z.ai API endpoint
|
|
62
|
+
REDIS_PASSWORD=Hbzbkuv1VdlWq4KTbzDZ2wL+o1xWVGvjDgzWKMkVtcyfoXmzpW9P43UZ6CgGlxjb
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# Reflection Curation Report: CLI Agent Spawning v2.5.2
|
|
2
|
+
|
|
3
|
+
## Merge Actions Performed:
|
|
4
|
+
|
|
5
|
+
**1. PATTERN-001: Environment Configuration Strategy**
|
|
6
|
+
- Action: ADD_NEW_BULLET
|
|
7
|
+
- Reasoning: Novel insight about CLI environment loading
|
|
8
|
+
- Priority: 9/10 (critical)
|
|
9
|
+
- Confidence: 0.95
|
|
10
|
+
- Tags: environment, configuration, cli, dotenv
|
|
11
|
+
|
|
12
|
+
**2. PATTERN-002: API Provider Integration**
|
|
13
|
+
- Action: ADD_NEW_BULLET
|
|
14
|
+
- Reasoning: Novel domain insight for multi-provider systems
|
|
15
|
+
- Priority: 8/10 (critical)
|
|
16
|
+
- Confidence: 0.92
|
|
17
|
+
- Tags: api-integration, provider-mapping, resilience, configuration
|
|
18
|
+
|
|
19
|
+
**3. PATTERN-003: Streaming Compatibility**
|
|
20
|
+
- Action: ADD_NEW_BULLET
|
|
21
|
+
- Reasoning: Novel optimization pattern for API compatibility
|
|
22
|
+
- Priority: 7/10 (important)
|
|
23
|
+
- Confidence: 0.88
|
|
24
|
+
- Tags: streaming, api-compatibility, fallback, optimization
|
|
25
|
+
|
|
26
|
+
**4. PATTERN-004: Resilient API Calls**
|
|
27
|
+
- Action: ADD_NEW_BULLET
|
|
28
|
+
- Reasoning: Critical edge case handling pattern
|
|
29
|
+
- Priority: 9/10 (critical)
|
|
30
|
+
- Confidence: 0.90
|
|
31
|
+
- Tags: error-handling, timeout, resilience, api-calls
|
|
32
|
+
|
|
33
|
+
**5. PATTERN-005: Development Testing Anti-Pattern**
|
|
34
|
+
- Action: ADD_NEW_BULLET
|
|
35
|
+
- Reasoning: Helpful anti-pattern to avoid
|
|
36
|
+
- Priority: 6/10 (helpful)
|
|
37
|
+
- Confidence: 0.85
|
|
38
|
+
- Tags: testing, development, package-management, build-verification
|
|
39
|
+
|
|
40
|
+
## Merge Metadata
|
|
41
|
+
|
|
42
|
+
- **Reflection ID**: cli-agent-spawning-v2.5.2
|
|
43
|
+
- **Curator Status**: Merged
|
|
44
|
+
- **Merge Timestamp**: 2025-10-20T10:49:00Z
|
|
45
|
+
- **Total Bullets Added**: 5
|
|
46
|
+
- **Average Confidence**: 0.90
|
|
47
|
+
|
|
48
|
+
## Recommended Next Actions
|
|
49
|
+
|
|
50
|
+
1. Context Injection:
|
|
51
|
+
```bash
|
|
52
|
+
/context-inject --category=strategy,domain_insight,edge_case
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
2. Monitor Usage:
|
|
56
|
+
- Track helpful/harmful feedback for these patterns
|
|
57
|
+
- Consider integration into agent-specific prompts for CLI development
|
|
58
|
+
|
|
59
|
+
3. Follow-up Validation:
|
|
60
|
+
- Run comprehensive tests validating these patterns
|
|
61
|
+
- Collect real-world usage data to confirm effectiveness
|
|
@@ -141,13 +141,23 @@ Task("cost-savings-cfn-loop-coordinator", `
|
|
|
141
141
|
Epic ID: epic-$(date +%s)
|
|
142
142
|
Mode: STANDARD (gate: 0.75, consensus: 0.90)
|
|
143
143
|
|
|
144
|
-
Phases:
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
-
|
|
149
|
-
-
|
|
150
|
-
|
|
144
|
+
Phases (ANALYZE EPIC AND DEFINE):
|
|
145
|
+
# Parse epic description and break into phases
|
|
146
|
+
# Example structure:
|
|
147
|
+
Phase 0: Assessment
|
|
148
|
+
- Deliverables: Requirements analysis, Architecture design
|
|
149
|
+
- Dependencies: None
|
|
150
|
+
- Estimated agents: 2 (analyst, architect)
|
|
151
|
+
|
|
152
|
+
Phase 1: Core Implementation
|
|
153
|
+
- Deliverables: Main features, API endpoints
|
|
154
|
+
- Dependencies: Phase 0
|
|
155
|
+
- Estimated agents: 3 (backend-dev, researcher, devops)
|
|
156
|
+
|
|
157
|
+
Phase 2: Validation
|
|
158
|
+
- Deliverables: Tests, Security audit, Documentation
|
|
159
|
+
- Dependencies: Phase 0, Phase 1
|
|
160
|
+
- Estimated agents: 3 (tester, reviewer, security-specialist)
|
|
151
161
|
|
|
152
162
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
153
163
|
EPIC-LEVEL SUCCESS CRITERIA
|
|
@@ -155,11 +165,17 @@ Task("cost-savings-cfn-loop-coordinator", `
|
|
|
155
165
|
|
|
156
166
|
Scope Boundaries (CRITICAL - ENFORCE STRICTLY):
|
|
157
167
|
|
|
158
|
-
In Scope:
|
|
159
|
-
-
|
|
168
|
+
In Scope (EXAMPLE - CUSTOMIZE FOR YOUR EPIC):
|
|
169
|
+
- Feature implementation as described
|
|
170
|
+
- Basic testing and validation
|
|
171
|
+
- Essential documentation
|
|
172
|
+
- Security fundamentals
|
|
160
173
|
|
|
161
|
-
Out of Scope (DEFER TO BACKLOG):
|
|
162
|
-
-
|
|
174
|
+
Out of Scope (DEFER TO BACKLOG - EXAMPLE):
|
|
175
|
+
- Advanced features not in core spec
|
|
176
|
+
- Performance optimization beyond basics
|
|
177
|
+
- Additional integrations
|
|
178
|
+
- Nice-to-have features
|
|
163
179
|
|
|
164
180
|
Epic-Level Acceptance Criteria:
|
|
165
181
|
- [ ] All phases complete with consensus ≥0.90
|
|
@@ -192,12 +208,20 @@ Task("cost-savings-cfn-loop-coordinator", `
|
|
|
192
208
|
})
|
|
193
209
|
|
|
194
210
|
3. INVOKE ORCHESTRATOR FOR PHASE:
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
211
|
+
# Generate task ID and construct bash command with actual values
|
|
212
|
+
# DO NOT use template literals - construct real bash variables
|
|
213
|
+
|
|
214
|
+
TASK_ID="phase-0-$(date +%s)"
|
|
215
|
+
MODE="standard"
|
|
216
|
+
LOOP3_AGENTS="analyst,architect"
|
|
217
|
+
LOOP2_AGENTS="reviewer,architect"
|
|
218
|
+
|
|
219
|
+
./.claude/skills/redis-coordination/orchestrate-cfn-loop.sh \
|
|
220
|
+
--task-id "$TASK_ID" \
|
|
221
|
+
--mode "$MODE" \
|
|
222
|
+
--loop3-agents "$LOOP3_AGENTS" \
|
|
223
|
+
--loop2-agents "$LOOP2_AGENTS" \
|
|
224
|
+
--product-owner "product-owner" \
|
|
201
225
|
--max-iterations 10
|
|
202
226
|
|
|
203
227
|
4. STORE PHASE RESULTS:
|
|
@@ -124,9 +124,9 @@ Task("cost-savings-cfn-loop-coordinator", `
|
|
|
124
124
|
TASK SPECIFICATION
|
|
125
125
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
126
126
|
|
|
127
|
-
Task Description: $
|
|
128
|
-
Phase Name:
|
|
129
|
-
Task ID: cfn-$
|
|
127
|
+
Task Description: $ARGUMENTS
|
|
128
|
+
Phase Name: (extract from task description or use 'default')
|
|
129
|
+
Task ID: cfn-phase-$(date +%s)
|
|
130
130
|
|
|
131
131
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
132
132
|
SUCCESS CRITERIA (REQUIRED)
|
|
@@ -139,14 +139,14 @@ Task("cost-savings-cfn-loop-coordinator", `
|
|
|
139
139
|
- [ ] Documentation updated
|
|
140
140
|
- [ ] No regression in existing features
|
|
141
141
|
|
|
142
|
-
Quality Gates:
|
|
143
|
-
- Loop 3 Gate Threshold:
|
|
144
|
-
- Loop 2 Consensus Threshold:
|
|
145
|
-
- Max Loop 3 Iterations:
|
|
146
|
-
- Max Loop 2 Iterations:
|
|
142
|
+
Quality Gates (STANDARD MODE):
|
|
143
|
+
- Loop 3 Gate Threshold: 0.75
|
|
144
|
+
- Loop 2 Consensus Threshold: 0.90
|
|
145
|
+
- Max Loop 3 Iterations: 10
|
|
146
|
+
- Max Loop 2 Iterations: 10
|
|
147
147
|
|
|
148
148
|
Definition of Done:
|
|
149
|
-
- Consensus
|
|
149
|
+
- Consensus ≥0.90 achieved
|
|
150
150
|
- All acceptance criteria met
|
|
151
151
|
- Product Owner approval received
|
|
152
152
|
|
|
@@ -154,13 +154,18 @@ Task("cost-savings-cfn-loop-coordinator", `
|
|
|
154
154
|
ORCHESTRATION CONFIGURATION
|
|
155
155
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
156
156
|
|
|
157
|
-
Mode:
|
|
157
|
+
Mode: STANDARD
|
|
158
158
|
|
|
159
|
-
Loop 3 Agents (Implementation):
|
|
160
|
-
-
|
|
159
|
+
Loop 3 Agents (Implementation) - CUSTOMIZE FOR TASK:
|
|
160
|
+
- researcher (requirement analysis)
|
|
161
|
+
- backend-dev (implementation)
|
|
162
|
+
- devops (deployment/infrastructure)
|
|
161
163
|
|
|
162
|
-
Loop 2 Agents (Validation):
|
|
163
|
-
-
|
|
164
|
+
Loop 2 Agents (Validation) - CUSTOMIZE FOR TASK:
|
|
165
|
+
- reviewer (code review)
|
|
166
|
+
- architect (design validation)
|
|
167
|
+
- tester (quality assurance)
|
|
168
|
+
- security-specialist (security audit)
|
|
164
169
|
|
|
165
170
|
Product Owner: product-owner
|
|
166
171
|
|
|
@@ -169,24 +174,32 @@ Task("cost-savings-cfn-loop-coordinator", `
|
|
|
169
174
|
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
170
175
|
|
|
171
176
|
1. INVOKE ORCHESTRATOR:
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
177
|
+
# Generate task ID and construct bash command with actual values
|
|
178
|
+
# DO NOT use template literals - construct real bash variables
|
|
179
|
+
|
|
180
|
+
TASK_ID="cfn-phase-$(date +%s)"
|
|
181
|
+
MODE="standard"
|
|
182
|
+
LOOP3_AGENTS="researcher,backend-dev,devops"
|
|
183
|
+
LOOP2_AGENTS="reviewer,architect,tester,security-specialist"
|
|
184
|
+
|
|
185
|
+
./.claude/skills/redis-coordination/orchestrate-cfn-loop.sh \
|
|
186
|
+
--task-id "$TASK_ID" \
|
|
187
|
+
--mode "$MODE" \
|
|
188
|
+
--loop3-agents "$LOOP3_AGENTS" \
|
|
189
|
+
--loop2-agents "$LOOP2_AGENTS" \
|
|
190
|
+
--product-owner "product-owner" \
|
|
191
|
+
--max-iterations 10
|
|
179
192
|
|
|
180
193
|
2. MONITOR PROGRESS:
|
|
181
194
|
- Use web portal: http://localhost:3000
|
|
182
195
|
- Query metrics: ./.claude/skills/web-portal/invoke-portal-metrics.sh
|
|
183
|
-
- Track events: ./.claude/skills/web-portal/invoke-portal-events.sh --phase
|
|
196
|
+
- Track events: ./.claude/skills/web-portal/invoke-portal-events.sh --phase <phase-name>
|
|
184
197
|
|
|
185
198
|
3. REPORT RESULTS:
|
|
186
199
|
Return structured result to Main Chat:
|
|
187
200
|
{
|
|
188
|
-
"taskId": "
|
|
189
|
-
"phase": "
|
|
201
|
+
"taskId": "<actual-task-id>",
|
|
202
|
+
"phase": "<phase-name>",
|
|
190
203
|
"status": "complete|failed",
|
|
191
204
|
"iterations": {
|
|
192
205
|
"loop3": N,
|
|
@@ -222,16 +235,16 @@ The coordinator runs the orchestrator script internally, which:
|
|
|
222
235
|
- Spawns workers via CLI: `npx cfn-spawn agent <agent-type>`
|
|
223
236
|
- Each agent completes work and reports confidence
|
|
224
237
|
- Orchestrator collects scores and checks gate threshold
|
|
225
|
-
- **PASS** (
|
|
226
|
-
- **FAIL** (
|
|
238
|
+
- **PASS** (≥0.75) → Signal Loop 2 to start
|
|
239
|
+
- **FAIL** (<0.75) → Wake Loop 3 for iteration N+1
|
|
227
240
|
|
|
228
241
|
**Loop 2: Validation**
|
|
229
242
|
- **WAITS** for Loop 3 gate pass signal (Redis BLPOP)
|
|
230
243
|
- Spawns validators via CLI
|
|
231
244
|
- Each validator reviews and reports consensus score
|
|
232
245
|
- Orchestrator collects scores and checks consensus threshold
|
|
233
|
-
- **PASS** (
|
|
234
|
-
- **FAIL** (
|
|
246
|
+
- **PASS** (≥0.90) → Task complete
|
|
247
|
+
- **FAIL** (<0.90) → Wake all agents for iteration N+1
|
|
235
248
|
|
|
236
249
|
**Loop 1: Product Owner**
|
|
237
250
|
- Reviews final consensus and acceptance criteria
|
|
@@ -243,10 +256,10 @@ The coordinator runs the orchestrator script internally, which:
|
|
|
243
256
|
**Real-time monitoring:**
|
|
244
257
|
```bash
|
|
245
258
|
# View all agents
|
|
246
|
-
./.claude/skills/web-portal/invoke-portal-agents.sh --swarm cfn
|
|
259
|
+
./.claude/skills/web-portal/invoke-portal-agents.sh --swarm cfn-<phase-name>
|
|
247
260
|
|
|
248
261
|
# Track phase events
|
|
249
|
-
./.claude/skills/web-portal/invoke-portal-events.sh --phase
|
|
262
|
+
./.claude/skills/web-portal/invoke-portal-events.sh --phase <phase-name>
|
|
250
263
|
|
|
251
264
|
# Get consensus metrics
|
|
252
265
|
./.claude/skills/web-portal/invoke-portal-metrics.sh --view consensus
|