claude-flow-novice 2.14.31 → 2.14.32
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/cfn-data/cfn-loop.db +0 -0
- package/.claude/commands/CFN_LOOP_TASK_MODE.md +1 -1
- package/.claude/skills/cfn-agent-discovery/agents-registry.json +10 -9
- package/.claude/skills/cfn-docker-agent-spawning/SKILL.md +394 -0
- package/.claude/skills/cfn-docker-agent-spawning/spawn-agent.sh +521 -0
- package/.claude/skills/cfn-docker-loop-orchestration/SKILL.md +449 -0
- package/.claude/skills/cfn-docker-loop-orchestration/orchestrate.sh +787 -0
- package/.claude/skills/cfn-docker-redis-coordination/SKILL.md +435 -0
- package/.claude/skills/cfn-docker-redis-coordination/coordinate.sh +635 -0
- package/.claude/skills/cfn-docker-skill-mcp-selection/SKILL.md +289 -0
- package/.claude/skills/cfn-docker-skill-mcp-selection/skill-mcp-selector.js +472 -0
- package/.claude/skills/cfn-loop-validation/config.json +2 -2
- package/README.md +95 -0
- package/claude-assets/agents/README-AGENT_LIFECYCLE.md +10 -37
- package/claude-assets/agents/README-VALIDATION.md +8 -0
- package/claude-assets/agents/cfn-dev-team/README.md +8 -0
- package/claude-assets/agents/cfn-dev-team/coordinators/README.md +9 -1
- package/claude-assets/agents/cfn-dev-team/developers/README.md +9 -1
- package/claude-assets/agents/cfn-dev-team/documentation/README-VALIDATION.md +8 -0
- package/claude-assets/agents/cfn-dev-team/documentation/agent-type-guidelines.md +10 -0
- package/claude-assets/agents/cfn-dev-team/reviewers/README.md +9 -1
- package/claude-assets/agents/cfn-dev-team/reviewers/quality/quality-metrics.md +10 -0
- package/claude-assets/agents/cfn-dev-team/test-agent.md +10 -0
- package/claude-assets/agents/cfn-dev-team/testers/README.md +9 -1
- package/claude-assets/agents/csuite/cto-agent.md +10 -0
- package/claude-assets/agents/custom/cfn-system-expert.md +128 -1
- package/claude-assets/agents/docker-coordinators/cfn-docker-v3-coordinator.md +5 -1
- package/claude-assets/agents/docker-team/csuite/c-suite-template.md +5 -1
- package/claude-assets/agents/docker-team/infrastructure/team-coordinator-template.md +5 -1
- package/claude-assets/agents/marketing_hybrid/cost_tracker.md +10 -0
- package/claude-assets/agents/marketing_hybrid/docker_deployer.md +10 -0
- package/claude-assets/agents/marketing_hybrid/zai_worker_spawner.md +10 -0
- package/claude-assets/commands/CFN_LOOP_TASK_MODE.md +1 -1
- package/claude-assets/hooks/cfn-post-execution/memory-cleanup.sh +20 -0
- package/claude-assets/hooks/cfn-pre-execution/memory-check.sh +20 -0
- package/claude-assets/skills/cfn-agent-discovery/agents-registry.json +10 -9
- package/claude-assets/skills/cfn-docker-agent-spawning/spawn-agent.sh +70 -10
- package/claude-assets/skills/cfn-loop-validation/config.json +2 -2
- package/claude-assets/skills/cfn-memory-management/SKILL.md +271 -0
- package/claude-assets/skills/cfn-memory-management/check-memory.sh +160 -0
- package/claude-assets/skills/cfn-memory-management/cleanup-memory.sh +197 -0
- package/claude-assets/skills/cfn-task-config-init/initialize-config.sh +2 -2
- package/dist/cli/agent-command.js +44 -2
- package/dist/cli/agent-command.js.map +1 -1
- package/dist/cli/config-manager.js +91 -109
- package/dist/cli/config-manager.js.map +1 -1
- package/dist/cli/index.js +29 -2
- package/dist/cli/index.js.map +1 -1
- package/package.json +10 -2
- package/scripts/memory-leak-prevention.sh +306 -0
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: coordinators-readme
|
|
3
|
+
description: Documentation file for CFN dev team coordinators overview and usage patterns
|
|
4
|
+
tools: []
|
|
5
|
+
model: haiku
|
|
6
|
+
type: documentation
|
|
7
|
+
---
|
|
8
|
+
|
|
1
9
|
# Coordinators
|
|
2
10
|
|
|
3
11
|
Agent profiles for coordination and orchestration of multi-agent workflows.
|
|
@@ -39,4 +47,4 @@ Coordinator handles all agent spawning internally via orchestration scripts.
|
|
|
39
47
|
## Related Skills
|
|
40
48
|
- `.claude/skills/cfn-redis-coordination/` - Multi-agent coordination patterns
|
|
41
49
|
- `.claude/skills/cfn-loop-validation/` - CFN Loop mechanics
|
|
42
|
-
- `.claude/skills/cfn-agent-spawning/` - CLI spawning patterns
|
|
50
|
+
- `.claude/skills/cfn-agent-spawning/` - CLI spawning patterns
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: developers-readme
|
|
3
|
+
description: Documentation file for CFN dev team developers overview and implementation standards
|
|
4
|
+
tools: []
|
|
5
|
+
model: haiku
|
|
6
|
+
type: documentation
|
|
7
|
+
---
|
|
8
|
+
|
|
1
9
|
# Developers
|
|
2
10
|
|
|
3
11
|
Implementation agents focused on building features and components.
|
|
@@ -66,4 +74,4 @@ Developers MUST run after every file edit:
|
|
|
66
74
|
./.claude/hooks/cfn-invoke-post-edit.sh "$EDITED_FILE" --agent-id "$AGENT_ID"
|
|
67
75
|
```
|
|
68
76
|
|
|
69
|
-
This ensures code quality, test coverage, and security validation.
|
|
77
|
+
This ensures code quality, test coverage, and security validation.
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: readme-validation
|
|
3
|
+
description: Documentation file for agent profile validation tool usage and standards
|
|
4
|
+
tools: []
|
|
5
|
+
model: haiku
|
|
6
|
+
type: documentation
|
|
7
|
+
---
|
|
8
|
+
|
|
1
9
|
# Agent Profile Validation Tool
|
|
2
10
|
|
|
3
11
|
A comprehensive validation script that checks agent profiles against CLAUDE.md standards and provides actionable feedback.
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: agent-type-guidelines
|
|
3
|
+
description: MUST BE USED when creating agent type guidelines and documentation. Use PROACTIVELY for agent architecture, type definitions, development standards. Keywords - agent, guidelines, types, architecture, development
|
|
4
|
+
tools: [Read, Write, Edit, Bash, Grep, Glob, TodoWrite]
|
|
5
|
+
model: sonnet
|
|
6
|
+
type: specialist
|
|
7
|
+
acl_level: 2
|
|
8
|
+
capabilities: [agent-documentation, type-guidelines, architecture-standards]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Agent Type Guidelines
|
|
2
12
|
|
|
3
13
|
**Version:** 2.0.0
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: reviewers-readme
|
|
3
|
+
description: Documentation file for CFN dev team reviewers overview and code review standards
|
|
4
|
+
tools: []
|
|
5
|
+
model: haiku
|
|
6
|
+
type: documentation
|
|
7
|
+
---
|
|
8
|
+
|
|
1
9
|
# Reviewers
|
|
2
10
|
|
|
3
11
|
Code review and validation agents focused on quality assurance.
|
|
@@ -55,4 +63,4 @@ Structured feedback with:
|
|
|
55
63
|
- Critical issues (blocking)
|
|
56
64
|
- Warnings (should fix)
|
|
57
65
|
- Suggestions (improvements)
|
|
58
|
-
- Specific file/line references
|
|
66
|
+
- Specific file/line references
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: quality-metrics
|
|
3
|
+
description: MUST BE USED when measuring agent effectiveness and code quality validation. Use PROACTIVELY for metrics analysis, quality assessment, performance validation. Keywords - quality, metrics, validation, measurement, effectiveness
|
|
4
|
+
tools: [Read, Write, Edit, Bash, Grep, Glob, TodoWrite]
|
|
5
|
+
model: haiku
|
|
6
|
+
type: validator
|
|
7
|
+
acl_level: 2
|
|
8
|
+
capabilities: [quality-metrics, performance-analysis, validation]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Quality Metrics & Validation
|
|
2
12
|
|
|
3
13
|
**Version:** 2.0.0
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: test-agent
|
|
3
|
+
description: MUST BE USED when documenting epic creator deletion issues and bug fixes. Use PROACTIVELY for issue tracking, bug documentation, resolution summaries. Keywords - test, bug, issue, documentation, epic, deletion
|
|
4
|
+
tools: [Read, Write, Edit, Bash, Grep, Glob, TodoWrite]
|
|
5
|
+
model: haiku
|
|
6
|
+
type: specialist
|
|
7
|
+
acl_level: 1
|
|
8
|
+
capabilities: [bug-documentation, issue-tracking, test-summary]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Epic Creator Deletion Issue - Complete Summary
|
|
2
12
|
|
|
3
13
|
**Date:** 2025-11-03
|
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: testers-readme
|
|
3
|
+
description: Documentation file for CFN dev team testers overview and testing standards
|
|
4
|
+
tools: []
|
|
5
|
+
model: haiku
|
|
6
|
+
type: documentation
|
|
7
|
+
---
|
|
8
|
+
|
|
1
9
|
# Testers
|
|
2
10
|
|
|
3
11
|
Testing and validation specialists ensuring code quality and correctness.
|
|
@@ -91,4 +99,4 @@ Structured report with:
|
|
|
91
99
|
- Test execution summary
|
|
92
100
|
- Coverage analysis
|
|
93
101
|
- Failed test details
|
|
94
|
-
- Recommendations for improvement
|
|
102
|
+
- Recommendations for improvement
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: cto-agent
|
|
3
|
+
description: MUST BE USED when making strategic technical decisions and architectural oversight. Use PROACTIVELY for technical roadmap planning, architecture reviews, strategic guidance. Keywords - CTO, technical strategy, architecture, leadership, oversight
|
|
4
|
+
tools: [Read, Write, Edit, Bash, Grep, Glob, TodoWrite]
|
|
5
|
+
model: sonnet
|
|
6
|
+
type: coordinator
|
|
7
|
+
acl_level: 4
|
|
8
|
+
capabilities: [technical-strategy, architecture-oversight, leadership]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# CTO Agent - Dr. Tech
|
|
2
12
|
|
|
3
13
|
## Role Identity
|
|
@@ -256,4 +256,131 @@ redis-cli lpush "swarm:${TASK_ID}:${AGENT_ID}:done" "complete"
|
|
|
256
256
|
- `.claude/skills/cfn-redis-coordination/SKILL.md`: Coordination patterns
|
|
257
257
|
- `.claude/commands/cfn/CFN_COORDINATOR_PARAMETERS.md`: Parameter specifications
|
|
258
258
|
- `planning/cfn-v3/DUAL_MODE_IMPLEMENTATION.md`: Architecture details
|
|
259
|
-
- Planning documents: Sprint lessons and adaptive context insights
|
|
259
|
+
- Planning documents: Sprint lessons and adaptive context insights
|
|
260
|
+
|
|
261
|
+
## CFN Implementation Patterns & Lessons Learned
|
|
262
|
+
|
|
263
|
+
### Core Architecture Patterns
|
|
264
|
+
|
|
265
|
+
#### STRAT-007: Background Execution Strategy
|
|
266
|
+
- **Insight**: Use background execution with coordination monitoring for long-running orchestration workflows (>10 minutes). Bash tool has hard 10-minute timeout that cannot be extended.
|
|
267
|
+
- **Application**: Essential for CFN Loop orchestration that exceeds standard timeout limits.
|
|
268
|
+
|
|
269
|
+
#### PATTERN-008: Product Owner Decision Flow
|
|
270
|
+
- **Insight**: Implement explicit Product Owner decision flow after Loop 2 consensus to prevent validator scope creep and enforce strategic boundaries.
|
|
271
|
+
- **Application**: Core CFN Loop governance pattern ensuring proper decision hierarchy.
|
|
272
|
+
|
|
273
|
+
#### PATTERN-010: Parallel Execution with Temp Files
|
|
274
|
+
- **Insight**: Use background processes with temporary files to eliminate race conditions in parallel agent coordination. Pattern: spawn all agents in background with `(skill-execution > /tmp/output-file) &`, collect PIDs, use `wait` to synchronize, read results from temp files after completion.
|
|
275
|
+
- **Application**: Optimizes CFN Loop parallel agent execution while maintaining coordination integrity.
|
|
276
|
+
|
|
277
|
+
### Context Management Patterns
|
|
278
|
+
|
|
279
|
+
#### STRAT-021: Standardized Context Extraction Templates
|
|
280
|
+
- **Insight**: Use standardized context extraction templates in coordinators. Template structure: epicGoal (1-2 sentences), inScope (list), outOfScope (list), deliverables (file paths), directory (creation path), acceptanceCriteria (measurable requirements).
|
|
281
|
+
- **Application**: Prevents minimal context that causes wrong deliverables in CFN execution.
|
|
282
|
+
|
|
283
|
+
#### PATTERN-020: Multi-Layer Context Injection
|
|
284
|
+
- **Context**: Coordinator → Orchestrator → Agent Flow
|
|
285
|
+
- **Insight**: When implementing multi-layer coordination, ensure context flows through ALL layers. Breaking this chain causes 'consensus on vapor' (high confidence, zero deliverables).
|
|
286
|
+
- **Application**: Critical for CFN Loop context integrity across coordinator-orchestrator-agent chain.
|
|
287
|
+
|
|
288
|
+
#### PATTERN-021: Context Validation Pipeline
|
|
289
|
+
- **Context**: Multi-Layer Coordination
|
|
290
|
+
- **Insight**: Design context validation pipeline with checkpoints at each layer. Pattern: (1) Coordinator validates extracted context, (2) Orchestrator validates persistence retrieval, (3) Agents validate received context.
|
|
291
|
+
- **Application**: Fail-fast prevents cascading context loss in CFN workflows.
|
|
292
|
+
|
|
293
|
+
#### PATTERN-022: Agent Lifecycle - Clean Exit Protocol
|
|
294
|
+
- **Insight**: Agents must exit cleanly after reporting confidence. Pattern: (1) Signal done via coordination protocol, (2) Report confidence score, (3) Exit immediately.
|
|
295
|
+
- **Application**: Enables adaptive agent specialization and prevents orchestrator blocking.
|
|
296
|
+
|
|
297
|
+
### Sprint Execution Patterns
|
|
298
|
+
|
|
299
|
+
#### Sprint Context Structure
|
|
300
|
+
```json
|
|
301
|
+
{
|
|
302
|
+
"sprint_name": "P1 Coordinator Monitoring",
|
|
303
|
+
"sprint_num": 1,
|
|
304
|
+
"total_sprints": 7,
|
|
305
|
+
"deliverables": [
|
|
306
|
+
"test-p1-monitoring.sh",
|
|
307
|
+
"docs/P1_MONITORING_RESULTS.md"
|
|
308
|
+
],
|
|
309
|
+
"in_scope": [
|
|
310
|
+
"P1 coordinator monitoring validation",
|
|
311
|
+
"Test timeout mechanisms",
|
|
312
|
+
"Logging verification"
|
|
313
|
+
],
|
|
314
|
+
"out_of_scope": [
|
|
315
|
+
"P2-P7 monitoring",
|
|
316
|
+
"Cross-priority integration",
|
|
317
|
+
"Epic-level summary"
|
|
318
|
+
],
|
|
319
|
+
"directory": "/mnt/c/Users/masha/Documents/claude-flow-novice/tests/p1"
|
|
320
|
+
}
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
#### Sprint Execution Tool: `execute-sprint-task.sh`
|
|
324
|
+
- **Purpose**: Enables sprint-aware agent execution with focused context injection
|
|
325
|
+
- **Usage**: Decompose large epics into focused sprints with clear deliverables and scope boundaries
|
|
326
|
+
- **Key Principles**: Focused scope, incremental progress, precise deliverables, context specificity
|
|
327
|
+
|
|
328
|
+
### CFN v3 Advanced Patterns
|
|
329
|
+
|
|
330
|
+
#### STRAT-026: Persistence Context Storage Over CLI Parameters
|
|
331
|
+
- **Insight**: Use persistence layer for complex JSON context storage instead of CLI parameters. Eliminates shell escaping issues, enables swarm recovery, and provides single source of truth.
|
|
332
|
+
- **Application**: Foundation for CFN v3 dual-mode architecture.
|
|
333
|
+
|
|
334
|
+
#### PATTERN-023: Dual-Mode Architecture Pattern
|
|
335
|
+
- **Insight**: Implement dual execution modes (optimized vs simplified) sharing core logic. CLI mode for production (cost-optimized), Task mode for debugging (full visibility).
|
|
336
|
+
- **Application**: Enables flexible CFN execution based on user needs.
|
|
337
|
+
|
|
338
|
+
#### PATTERN-024: Swarm Recovery via Persistence
|
|
339
|
+
- **Insight**: Store swarm state in persistence layer with TTL to enable crash recovery. Agents can resume from last known state using task_id as recovery key.
|
|
340
|
+
- **Application**: Critical for long-running CFN Loops and system reliability.
|
|
341
|
+
|
|
342
|
+
#### STRAT-028: Modular Skill Architecture
|
|
343
|
+
- **Insight**: Decompose complex systems into independent skills (20 skills in CFN v3). Enables reuse, testing isolation, and incremental enhancement.
|
|
344
|
+
- **Application**: Core architectural principle for CFN system maintainability.
|
|
345
|
+
|
|
346
|
+
### CFN Anti-Patterns & Prevention
|
|
347
|
+
|
|
348
|
+
#### ANTI-020: Context Storage Without Injection
|
|
349
|
+
- **Context**: Coordination Systems
|
|
350
|
+
- **Insight**: Avoid storing context in persistence layer without retrieving and injecting it into agent prompts.
|
|
351
|
+
- **Prevention**: Always validate context injection chain: storage → retrieval → agent delivery.
|
|
352
|
+
|
|
353
|
+
#### ANTI-021: Generic Context When Specifics Exist
|
|
354
|
+
- **Context**: Agent Spawning
|
|
355
|
+
- **Insight**: Never pass generic iteration-level context when task-specific deliverables exist.
|
|
356
|
+
- **Prevention**: Always inject complete deliverables, directory paths, and acceptance criteria.
|
|
357
|
+
|
|
358
|
+
#### ANTI-023: Task-Spawned Validators Without Completion Protocol
|
|
359
|
+
- **Context**: Loop 2 Validation (Task Mode)
|
|
360
|
+
- **Insight**: Main Chat spawns validators via Task() without clear scope boundaries or mode-aware completion protocols.
|
|
361
|
+
- **Prevention**: Task-spawned validators should return structured output only - no coordination signals.
|
|
362
|
+
|
|
363
|
+
### CFN Testing & Debugging
|
|
364
|
+
|
|
365
|
+
#### EDGE-020: Comparative Agent Spawn Testing
|
|
366
|
+
- **Context**: Context Debugging
|
|
367
|
+
- **Insight**: When debugging context issues, use comparative agent spawn testing. Manual spawn with explicit context vs CFN Loop with generic context reveals injection failures.
|
|
368
|
+
- **Application**: Primary debugging technique for context-related CFN issues.
|
|
369
|
+
|
|
370
|
+
### Universal Anti-Patterns (CFN Relevance)
|
|
371
|
+
|
|
372
|
+
#### ANTI-004: Regex Validation Anti-Pattern
|
|
373
|
+
- **Insight**: Avoid simplistic regex matching for agent validation. Pattern `[[ $AGENTS =~ $AGENTS ]]` always returns true.
|
|
374
|
+
- **CFN Relevance**: Critical for agent validation logic in CFN coordination.
|
|
375
|
+
|
|
376
|
+
#### PATTERN-025: Comprehensive File Validation
|
|
377
|
+
- **Insight**: Implement multi-stage validation including file type, permissions, size constraints, and content integrity.
|
|
378
|
+
- **CFN Relevance**: Essential for CFN deliverable verification and security.
|
|
379
|
+
|
|
380
|
+
#### PATTERN-026: Shell Strict Mode
|
|
381
|
+
- **Insight**: Enable shell strict mode using `set -euo pipefail` for robust and predictable shell scripts.
|
|
382
|
+
- **CFN Relevance**: Critical reliability pattern for all CFN skill scripts.
|
|
383
|
+
|
|
384
|
+
#### PATTERN-028: Process Group Management
|
|
385
|
+
- **Insight**: Implement comprehensive process group management for clean termination and resource cleanup.
|
|
386
|
+
- **CFN Relevance**: Essential for CFN background process orchestration and preventing resource leaks.
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: cfn-docker-v3-coordinator
|
|
3
|
+
description: MUST BE USED when orchestrating container-based CFN Loop execution with MCP isolation. Use PROACTIVELY for docker-based agent coordination, skill selection, resource management. Keywords - docker, containers, orchestration, MCP, isolation
|
|
3
4
|
argument-hint: "[task-description] --mode=mvp|standard|enterprise --memory-limit=1g --docker-network=mcp-network"
|
|
4
5
|
allowed-tools: ["Bash", "Read", "Write", "Edit", "Grep", "Glob", "TodoWrite", "Task"]
|
|
6
|
+
model: sonnet
|
|
7
|
+
type: coordinator
|
|
8
|
+
acl_level: 3
|
|
5
9
|
---
|
|
6
10
|
|
|
7
11
|
# CFN Docker V3 Coordinator
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: c-suite-template
|
|
3
|
+
description: MUST BE USED when creating C-Suite executive personas for strategic decision-making. Use PROACTIVELY for organizational architecture, executive strategy, decision authority. Keywords - c-suite, executive, strategy, decision-making, leadership
|
|
3
4
|
tools: [Read, Write, TodoWrite, Bash]
|
|
4
5
|
priority: medium
|
|
5
6
|
tags: [csuite, executive, strategy, decision-making, cmo, cfo, coo, ceo]
|
|
7
|
+
model: sonnet
|
|
8
|
+
type: specialist
|
|
9
|
+
acl_level: 4
|
|
6
10
|
---
|
|
7
11
|
|
|
8
12
|
# C-Suite Agent Template
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: team-coordinator-template
|
|
3
|
+
description: MUST BE USED when generating team-specific coordinator configurations for Docker architecture. Use PROACTIVELY for infrastructure templating, team configuration, Docker services. Keywords - docker, infrastructure, templating, coordinator, team-config
|
|
3
4
|
tools: [Read, Write, Edit, Bash, Grep, Glob]
|
|
4
5
|
priority: high
|
|
5
6
|
tags: [docker, infrastructure, templating, coordinator, team-config]
|
|
7
|
+
model: haiku
|
|
8
|
+
type: specialist
|
|
9
|
+
acl_level: 3
|
|
6
10
|
---
|
|
7
11
|
|
|
8
12
|
# Team Coordinator Template Agent
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: cost-tracker
|
|
3
|
+
description: MUST BE USED when monitoring Z.ai worker costs during pilot testing. Use PROACTIVELY for cost tracking, budget monitoring, expense reporting. Keywords - cost, tracking, monitoring, Z.ai, budget, expenses
|
|
4
|
+
tools: [Read, Write, Edit, Bash, Grep, Glob, TodoWrite]
|
|
5
|
+
model: haiku
|
|
6
|
+
type: specialist
|
|
7
|
+
acl_level: 2
|
|
8
|
+
capabilities: [cost-monitoring, budget-tracking, expense-reporting]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Cost Tracking Agent
|
|
2
12
|
## Role
|
|
3
13
|
Monitor Z.ai worker costs during 48-hour pilot
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: docker-deployer
|
|
3
|
+
description: MUST BE USED when deploying marketing coordinator services via Docker. Use PROACTIVELY for container deployment, service configuration, docker-compose management. Keywords - docker, deploy, containers, docker-compose, services
|
|
4
|
+
tools: [Read, Write, Edit, Bash, Grep, Glob, TodoWrite]
|
|
5
|
+
model: haiku
|
|
6
|
+
type: specialist
|
|
7
|
+
acl_level: 2
|
|
8
|
+
capabilities: [docker-deployment, container-management, service-configuration]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Docker Deployer Agent
|
|
2
12
|
## Role
|
|
3
13
|
Deploy marketing coordinator using docker-compose.hybrid.yml
|
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: zai-worker-spawner
|
|
3
|
+
description: MUST BE USED when spawning Z.ai workers for marketing pilot testing. Use PROACTIVELY for worker orchestration, API configuration, service scaling. Keywords - Z.ai, worker, spawner, scaling, orchestration
|
|
4
|
+
tools: [Read, Write, Edit, Bash, Grep, Glob, TodoWrite]
|
|
5
|
+
model: haiku
|
|
6
|
+
type: specialist
|
|
7
|
+
acl_level: 2
|
|
8
|
+
capabilities: [worker-spawning, service-orchestration, api-configuration]
|
|
9
|
+
---
|
|
10
|
+
|
|
1
11
|
# Z.ai Worker Spawner Agent
|
|
2
12
|
## Role
|
|
3
13
|
Spawn 3 Z.ai workers for marketing pilot
|
|
@@ -467,7 +467,7 @@ Complex/Enterprise (>5 files, >500 LOC): +code-analyzer
|
|
|
467
467
|
### Complexity Analysis CLI
|
|
468
468
|
```bash
|
|
469
469
|
./.claude/skills/task-complexity/analyze.sh --task "$DESC" --files "$LIST"
|
|
470
|
-
# Output: {"score": 85, "category": "standard", "validators": ["reviewer","tester","architect","security-specialist"], "threshold": 0.90}
|
|
470
|
+
# Output: {"score": 85, "category": "standard", "validators": ["reviewer","tester","system-architect","security-specialist"], "threshold": 0.90}
|
|
471
471
|
```
|
|
472
472
|
|
|
473
473
|
---
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# CFN Post-Execution Memory Cleanup Hook
|
|
4
|
+
# Automatically cleans up memory resources after CFN operations
|
|
5
|
+
|
|
6
|
+
set -euo pipefail
|
|
7
|
+
|
|
8
|
+
# Hook configuration
|
|
9
|
+
HOOK_SCRIPT_PATH="$(dirname "$0")/memory-cleanup.sh"
|
|
10
|
+
MEMORY_MANAGEMENT_SKILL="$(dirname "$0")/../../skills/cfn-memory-management/cleanup-memory.sh"
|
|
11
|
+
|
|
12
|
+
# Use the memory management skill if available, otherwise use local fallback
|
|
13
|
+
if [[ -f "$MEMORY_MANAGEMENT_SKILL" ]]; then
|
|
14
|
+
exec "$MEMORY_MANAGEMENT_SKILL" "$@"
|
|
15
|
+
elif [[ -f "$HOOK_SCRIPT_PATH" ]]; then
|
|
16
|
+
exec "$HOOK_SCRIPT_PATH" "$@"
|
|
17
|
+
else
|
|
18
|
+
echo "WARNING: Memory cleanup scripts not found, skipping cleanup"
|
|
19
|
+
exit 0
|
|
20
|
+
fi
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# CFN Pre-Execution Memory Check Hook
|
|
4
|
+
# Automatically checks memory availability before CFN operations
|
|
5
|
+
|
|
6
|
+
set -euo pipefail
|
|
7
|
+
|
|
8
|
+
# Hook configuration
|
|
9
|
+
HOOK_SCRIPT_PATH="$(dirname "$0")/memory-check.sh"
|
|
10
|
+
MEMORY_MANAGEMENT_SKILL="$(dirname "$0")/../../skills/cfn-memory-management/check-memory.sh"
|
|
11
|
+
|
|
12
|
+
# Use the memory management skill if available, otherwise use local fallback
|
|
13
|
+
if [[ -f "$MEMORY_MANAGEMENT_SKILL" ]]; then
|
|
14
|
+
exec "$MEMORY_MANAGEMENT_SKILL" "$@"
|
|
15
|
+
elif [[ -f "$HOOK_SCRIPT_PATH" ]]; then
|
|
16
|
+
exec "$HOOK_SCRIPT_PATH" "$@"
|
|
17
|
+
else
|
|
18
|
+
echo "WARNING: Memory check scripts not found, proceeding without memory validation"
|
|
19
|
+
exit 0
|
|
20
|
+
fi
|
|
@@ -374,19 +374,20 @@
|
|
|
374
374
|
"file": "/mnt/c/Users/masha/Documents/claude-flow-novice/.claude/agents/planners/analyst.md"
|
|
375
375
|
},
|
|
376
376
|
{
|
|
377
|
-
"name": "architect",
|
|
378
|
-
"description": "MUST BE USED
|
|
379
|
-
"type": "
|
|
380
|
-
"loop": "
|
|
377
|
+
"name": "system-architect",
|
|
378
|
+
"description": "MUST BE USED when designing enterprise-grade system architecture, providing technical leadership for distributed systems, microservices, cloud-native solutions. Use PROACTIVELY for architectural design, technical strategy, infrastructure planning.",
|
|
379
|
+
"type": "specialist",
|
|
380
|
+
"loop": "loop3",
|
|
381
381
|
"keywords": [
|
|
382
|
+
"enterprise-architecture",
|
|
382
383
|
"system-design",
|
|
383
|
-
"architecture-planning",
|
|
384
|
-
"infrastructure-strategy",
|
|
385
|
-
"scalability",
|
|
386
384
|
"technical-leadership",
|
|
387
|
-
"
|
|
385
|
+
"architectural-patterns",
|
|
386
|
+
"distributed-systems",
|
|
387
|
+
"microservices",
|
|
388
|
+
"cloud-native"
|
|
388
389
|
],
|
|
389
|
-
"file": "/mnt/c/Users/masha/Documents/claude-flow-novice/.claude/agents/
|
|
390
|
+
"file": "/mnt/c/Users/masha/Documents/claude-flow-novice/.claude/agents/cfn-dev-team/architecture/system-architect.md"
|
|
390
391
|
},
|
|
391
392
|
{
|
|
392
393
|
"name": "planner",
|
|
@@ -212,9 +212,10 @@ fi
|
|
|
212
212
|
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../../../.." && pwd)"
|
|
213
213
|
cd "$PROJECT_ROOT"
|
|
214
214
|
|
|
215
|
-
# Create workspace directory
|
|
215
|
+
# Create workspace directory with proper permissions
|
|
216
216
|
WORKSPACE_DIR="/tmp/agent-workspace-${AGENT_ID}"
|
|
217
217
|
mkdir -p "$WORKSPACE_DIR"
|
|
218
|
+
chmod 777 "$WORKSPACE_DIR"
|
|
218
219
|
|
|
219
220
|
# Function to get MCP configuration for agent type
|
|
220
221
|
get_mcp_config() {
|
|
@@ -263,8 +264,11 @@ generate_mcp_tokens() {
|
|
|
263
264
|
fi
|
|
264
265
|
}
|
|
265
266
|
|
|
266
|
-
#
|
|
267
|
+
# Initialize MCP tokens variables
|
|
267
268
|
MCP_TOKENS=""
|
|
269
|
+
TOKENS_FILE=""
|
|
270
|
+
|
|
271
|
+
# Generate MCP tokens if MCP servers specified
|
|
268
272
|
if [[ -n "$MCP_SERVERS" ]]; then
|
|
269
273
|
log "Generating MCP tokens for: $MCP_SERVERS"
|
|
270
274
|
MCP_TOKENS=$(generate_mcp_tokens "$AGENT_TYPE" "$MCP_SERVERS" "$AGENT_ID")
|
|
@@ -342,17 +346,35 @@ if [[ -n "$ENVIRONMENT" ]]; then
|
|
|
342
346
|
done
|
|
343
347
|
fi
|
|
344
348
|
|
|
345
|
-
#
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
#
|
|
349
|
-
if [[ "$INTERACTIVE" == true ]]; then
|
|
349
|
+
# Check if this is a test mode (simple file operations) or full CFN mode
|
|
350
|
+
if [[ "${TASK_ID}" =~ concurrent-.* || "${TASK_ID}" =~ test-.* || "${TASK_ID}" =~ context-.* ]]; then
|
|
351
|
+
# Test mode - simple file operations without CFN coordination
|
|
352
|
+
# Use --rm flag for automatic cleanup, so we don't need the trap
|
|
350
353
|
DOCKER_CMD="$DOCKER_CMD --rm"
|
|
354
|
+
log "Test mode detected - using simple file operations with --rm flag"
|
|
355
|
+
else
|
|
356
|
+
# Full CFN mode - use agent-spawn with coordination
|
|
357
|
+
# Add restart policy (only for non-test modes)
|
|
358
|
+
DOCKER_CMD="$DOCKER_CMD --restart unless-stopped"
|
|
359
|
+
log "CFN mode detected - using agent coordination with shell wrapper"
|
|
351
360
|
fi
|
|
352
361
|
|
|
353
362
|
# Add image and command
|
|
354
363
|
DOCKER_CMD="$DOCKER_CMD $IMAGE"
|
|
355
|
-
|
|
364
|
+
|
|
365
|
+
# Add the shell command
|
|
366
|
+
if [[ "${TASK_ID}" =~ concurrent-.* || "${TASK_ID}" =~ test-.* || "${TASK_ID}" =~ context-.* ]]; then
|
|
367
|
+
# Test mode command
|
|
368
|
+
DOCKER_CMD="$DOCKER_CMD sh -c 'cd /app/workspace && echo \"Task: ${TASK_ID}\" > task-info.txt && echo \"Agent: ${AGENT_TYPE}\" >> task-info.txt && echo \"Starting task execution...\" >> task-info.txt && sleep 3 && echo \"${AGENT_TYPE} task completed\" > ${AGENT_TYPE}-task-result.txt && echo \"Workspace verified\" > ${AGENT_TYPE}-workspace-check.txt && echo \"Task completed\" > ${AGENT_TYPE}-completion-log.txt && echo \"All files created successfully\" && ls -la && sleep 2'"
|
|
369
|
+
else
|
|
370
|
+
# Full CFN mode command
|
|
371
|
+
DOCKER_CMD="$DOCKER_CMD sh -c 'cd /app && npx claude-flow-novice agent-spawn --type ${AGENT_TYPE} --task-id ${TASK_ID} --agent-id ${AGENT_ID}'"
|
|
372
|
+
fi
|
|
373
|
+
|
|
374
|
+
# Remove container on exit for interactive mode (not needed for test mode with --rm)
|
|
375
|
+
if [[ "$INTERACTIVE" == true && ! "${TASK_ID}" =~ concurrent-.* && ! "${TASK_ID}" =~ test-.* && ! "${TASK_ID}" =~ context-.* ]]; then
|
|
376
|
+
DOCKER_CMD="$DOCKER_CMD --rm"
|
|
377
|
+
fi
|
|
356
378
|
|
|
357
379
|
# Add context file if specified
|
|
358
380
|
if [[ -n "$CONTEXT_FILE" ]]; then
|
|
@@ -376,8 +398,11 @@ log " Workspace: $WORKSPACE_DIR"
|
|
|
376
398
|
log " MCP Servers: ${MCP_SERVERS:-'none'}"
|
|
377
399
|
|
|
378
400
|
if [[ "$VERBOSE" == true ]]; then
|
|
379
|
-
|
|
380
|
-
fi
|
|
401
|
+
log " Docker Command: $DOCKER_CMD"
|
|
402
|
+
fi
|
|
403
|
+
|
|
404
|
+
# Debug: Show the exact command being executed
|
|
405
|
+
log "Executing: $DOCKER_CMD"
|
|
381
406
|
|
|
382
407
|
# Execute or show command
|
|
383
408
|
if [[ "$DRY_RUN" == true ]]; then
|
|
@@ -458,4 +483,39 @@ docker stats $CONTAINER_ID
|
|
|
458
483
|
|
|
459
484
|
EOF
|
|
460
485
|
|
|
486
|
+
# Add cleanup trap for automatic resource cleanup (only for non-test modes)
|
|
487
|
+
cleanup_on_exit() {
|
|
488
|
+
local exit_code=$?
|
|
489
|
+
|
|
490
|
+
if [[ -n "${CONTAINER_ID:-}" ]]; then
|
|
491
|
+
log "🧹 Cleaning up container: ${CONTAINER_ID}"
|
|
492
|
+
|
|
493
|
+
# Stop container if still running
|
|
494
|
+
if docker inspect "${CONTAINER_ID}" &> /dev/null; then
|
|
495
|
+
local container_status=$(docker inspect --format '{{.State.Status}}' "${CONTAINER_ID}" 2>/dev/null || echo "unknown")
|
|
496
|
+
|
|
497
|
+
if [[ "$container_status" == "running" ]]; then
|
|
498
|
+
docker stop "${CONTAINER_ID}" 2>/dev/null || log_warning "Failed to stop container"
|
|
499
|
+
fi
|
|
500
|
+
|
|
501
|
+
# Remove container
|
|
502
|
+
docker rm "${CONTAINER_ID}" 2>/dev/null || log_warning "Failed to remove container"
|
|
503
|
+
fi
|
|
504
|
+
|
|
505
|
+
# Clean up workspace directory
|
|
506
|
+
if [[ -n "${WORKSPACE_DIR:-}" && -d "${WORKSPACE_DIR}" ]]; then
|
|
507
|
+
log "🧹 Cleaning up workspace: ${WORKSPACE_DIR}"
|
|
508
|
+
rm -rf "${WORKSPACE_DIR}" 2>/dev/null || log_warning "Failed to remove workspace"
|
|
509
|
+
fi
|
|
510
|
+
fi
|
|
511
|
+
|
|
512
|
+
# Exit with original exit code
|
|
513
|
+
exit $exit_code
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
# Set trap for cleanup on script exit (only for non-test modes since test modes use --rm flag)
|
|
517
|
+
if [[ ! "${TASK_ID}" =~ concurrent-.* && ! "${TASK_ID}" =~ test-.* && ! "${TASK_ID}" =~ context-.* ]]; then
|
|
518
|
+
trap cleanup_on_exit EXIT INT TERM
|
|
519
|
+
fi
|
|
520
|
+
|
|
461
521
|
log_success "Agent spawning completed successfully"
|
|
@@ -55,12 +55,12 @@
|
|
|
55
55
|
"security-specialist",
|
|
56
56
|
"tester",
|
|
57
57
|
"analyst",
|
|
58
|
-
"architect"
|
|
58
|
+
"system-architect"
|
|
59
59
|
],
|
|
60
60
|
"productOwnerStructure": "team",
|
|
61
61
|
"planningConsensus": {
|
|
62
62
|
"enabled": true,
|
|
63
|
-
"architectTypes": ["
|
|
63
|
+
"architectTypes": ["system-architect", "security-specialist"],
|
|
64
64
|
"threshold": 0.85
|
|
65
65
|
},
|
|
66
66
|
"productOwnerTeam": {
|