strray-ai 1.18.9 → 1.19.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.
Files changed (124) hide show
  1. package/.opencode/agents/api-design.yml +31 -0
  2. package/.opencode/agents/architect-tools.yml +15 -0
  3. package/.opencode/agents/architecture-patterns.yml +14 -0
  4. package/.opencode/agents/auto-format.yml +14 -0
  5. package/.opencode/agents/backend-engineer.yml +12 -0
  6. package/.opencode/agents/boot-orchestrator.yml +14 -0
  7. package/.opencode/agents/bug-triage.yml +15 -0
  8. package/.opencode/agents/code-analyzer.yml +12 -0
  9. package/.opencode/agents/code-review.yml +14 -0
  10. package/.opencode/agents/content-creator.yml +12 -0
  11. package/.opencode/agents/database-engineer.yml +12 -0
  12. package/.opencode/agents/devops-engineer.yml +12 -0
  13. package/.opencode/agents/enforcer.yml +18 -96
  14. package/.opencode/agents/framework-compliance-audit.yml +14 -0
  15. package/.opencode/agents/frontend-engineer.yml +12 -0
  16. package/.opencode/agents/frontend-ui-ux-engineer.yml +12 -0
  17. package/.opencode/agents/git-workflow.yml +15 -0
  18. package/.opencode/agents/growth-strategist.yml +12 -0
  19. package/.opencode/agents/heremes-agent.yml +11 -0
  20. package/.opencode/agents/hermes-agent.yml +12 -0
  21. package/.opencode/agents/inference-improve.yml +12 -0
  22. package/.opencode/agents/lint.yml +14 -0
  23. package/.opencode/agents/log-monitor.yml +12 -0
  24. package/.opencode/agents/mobile-developer.yml +12 -0
  25. package/.opencode/agents/model-health-check.yml +12 -0
  26. package/.opencode/agents/multimodal-looker.yml +12 -0
  27. package/.opencode/agents/orchestrator.yml +7 -111
  28. package/.opencode/agents/performance-analysis.yml +12 -0
  29. package/.opencode/agents/performance-engineer.yml +12 -0
  30. package/.opencode/agents/performance-optimization.yml +12 -0
  31. package/.opencode/agents/processor-pipeline.yml +14 -0
  32. package/.opencode/agents/project-analysis.yml +12 -0
  33. package/.opencode/agents/refactoring-strategies.yml +12 -0
  34. package/.opencode/agents/researcher.yml +12 -0
  35. package/.opencode/agents/security-audit.yml +12 -0
  36. package/.opencode/agents/security-scan.yml +12 -0
  37. package/.opencode/agents/seo-consultant.yml +12 -0
  38. package/.opencode/agents/session-management.yml +12 -0
  39. package/.opencode/agents/state-manager.yml +12 -0
  40. package/.opencode/agents/storyteller.yml +12 -0
  41. package/.opencode/agents/strategist.yml +12 -0
  42. package/.opencode/agents/tech-writer.yml +12 -0
  43. package/.opencode/agents/testing-best-practices.yml +12 -0
  44. package/.opencode/agents/testing-strategy.yml +12 -0
  45. package/.opencode/agents/ui-ux-design.yml +12 -0
  46. package/.opencode/hooks/post-commit +208 -5
  47. package/.opencode/strray/features.json +188 -0
  48. package/.strray/features.json +188 -0
  49. package/README.md +3 -0
  50. package/dist/README.md +3 -0
  51. package/dist/core/activity-logger.d.ts +8 -0
  52. package/dist/core/activity-logger.d.ts.map +1 -1
  53. package/dist/core/activity-logger.js +25 -0
  54. package/dist/core/activity-logger.js.map +1 -1
  55. package/dist/core/boot-orchestrator.d.ts +1 -0
  56. package/dist/core/boot-orchestrator.d.ts.map +1 -1
  57. package/dist/core/boot-orchestrator.js +72 -25
  58. package/dist/core/boot-orchestrator.js.map +1 -1
  59. package/dist/core/features-config.d.ts +126 -0
  60. package/dist/core/features-config.d.ts.map +1 -1
  61. package/dist/core/features-config.js +30 -0
  62. package/dist/core/features-config.js.map +1 -1
  63. package/dist/delegation/agent-delegator.d.ts +4 -0
  64. package/dist/delegation/agent-delegator.d.ts.map +1 -1
  65. package/dist/delegation/agent-delegator.js +19 -0
  66. package/dist/delegation/agent-delegator.js.map +1 -1
  67. package/dist/enforcement/core/rule-executor.js +1 -1
  68. package/dist/enforcement/core/rule-executor.js.map +1 -1
  69. package/dist/enforcement/core/violation-fixer.d.ts.map +1 -1
  70. package/dist/enforcement/core/violation-fixer.js +13 -0
  71. package/dist/enforcement/core/violation-fixer.js.map +1 -1
  72. package/dist/enforcement/enforcer-tools.d.ts.map +1 -1
  73. package/dist/enforcement/enforcer-tools.js +26 -1
  74. package/dist/enforcement/enforcer-tools.js.map +1 -1
  75. package/dist/mcps/agent-resolver.d.ts.map +1 -1
  76. package/dist/mcps/agent-resolver.js +3 -17
  77. package/dist/mcps/agent-resolver.js.map +1 -1
  78. package/dist/monitoring/memory-monitor.d.ts +0 -4
  79. package/dist/monitoring/memory-monitor.d.ts.map +1 -1
  80. package/dist/monitoring/memory-monitor.js +20 -0
  81. package/dist/monitoring/memory-monitor.js.map +1 -1
  82. package/dist/orchestrator/agent-spawn-governor.d.ts +1 -0
  83. package/dist/orchestrator/agent-spawn-governor.d.ts.map +1 -1
  84. package/dist/orchestrator/agent-spawn-governor.js +60 -25
  85. package/dist/orchestrator/agent-spawn-governor.js.map +1 -1
  86. package/dist/orchestrator/orchestrator.d.ts.map +1 -1
  87. package/dist/orchestrator/orchestrator.js +3 -0
  88. package/dist/orchestrator/orchestrator.js.map +1 -1
  89. package/dist/plugin/strray-codex-injection.d.ts.map +1 -1
  90. package/dist/plugin/strray-codex-injection.js +7 -0
  91. package/dist/plugin/strray-codex-injection.js.map +1 -1
  92. package/dist/processors/implementations/inference-improvement-processor.d.ts +4 -0
  93. package/dist/processors/implementations/inference-improvement-processor.d.ts.map +1 -1
  94. package/dist/processors/implementations/inference-improvement-processor.js +34 -2
  95. package/dist/processors/implementations/inference-improvement-processor.js.map +1 -1
  96. package/dist/processors/implementations/session-summary-processor.d.ts +28 -0
  97. package/dist/processors/implementations/session-summary-processor.d.ts.map +1 -0
  98. package/dist/processors/implementations/session-summary-processor.js +131 -0
  99. package/dist/processors/implementations/session-summary-processor.js.map +1 -0
  100. package/dist/processors/processor-manager.d.ts +4 -0
  101. package/dist/processors/processor-manager.d.ts.map +1 -1
  102. package/dist/processors/processor-manager.js +23 -5
  103. package/dist/processors/processor-manager.js.map +1 -1
  104. package/dist/processors/test-auto-creation-processor.d.ts.map +1 -1
  105. package/dist/processors/test-auto-creation-processor.js +9 -8
  106. package/dist/processors/test-auto-creation-processor.js.map +1 -1
  107. package/dist/scripts/activate-kernel-pipeline.d.ts +8 -0
  108. package/dist/scripts/activate-kernel-pipeline.d.ts.map +1 -0
  109. package/dist/scripts/activate-kernel-pipeline.js +102 -0
  110. package/dist/scripts/activate-kernel-pipeline.js.map +1 -0
  111. package/opencode.json +0 -10
  112. package/package.json +1 -1
  113. package/scripts/node/auto-reflection-generator.mjs +441 -0
  114. package/scripts/node/ci-report-generator.mjs +35 -16
  115. package/scripts/node/reflection-processor.cjs +213 -0
  116. package/scripts/node/reflection-validate.sh +194 -0
  117. package/scripts/node/universal-version-manager.js +3 -3
  118. package/.opencode/agents/analyzer.yml +0 -94
  119. package/.opencode/agents/architect.yml +0 -163
  120. package/.opencode/agents/bug-triage-specialist.yml +0 -152
  121. package/.opencode/agents/code-reviewer.yml +0 -143
  122. package/.opencode/agents/refactorer.yml +0 -154
  123. package/.opencode/agents/security-auditor.yml +0 -104
  124. package/.opencode/agents/testing-lead.yml +0 -80
@@ -0,0 +1,31 @@
1
+ name: api-design
2
+ skill: api-design
3
+ description: "RESTful API design and validation specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ # CODEX COMPLIANCE
8
+ # - Term 12: No Code Without Tests - all API endpoints require test coverage
9
+ # - Term 17: Type Safety Required - use TypeScript interfaces for all data contracts
10
+
11
+ # Core Capabilities
12
+ capabilities:
13
+ - rest_api_design
14
+ - graphql_api_design
15
+ - api_validation
16
+ - openapi_spec_generation
17
+ - api_documentation
18
+
19
+ # State Management
20
+ state_management:
21
+ enabled: true
22
+ namespaces:
23
+ - api_specs
24
+ - endpoint_contracts
25
+ - validation_rules
26
+
27
+ # Quality Requirements
28
+ quality:
29
+ test_coverage: required
30
+ type_safety: strict
31
+ documentation: required
@@ -0,0 +1,15 @@
1
+ name: architect-tools
2
+ skill: architect-tools
3
+ description: "System design and technical architecture tools specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - system_design
9
+ - architecture_analysis
10
+ - technical_documentation
11
+ - pattern_selection
12
+
13
+ quality:
14
+ test_coverage: recommended
15
+ type_safety: strict
@@ -0,0 +1,14 @@
1
+ name: architecture-patterns
2
+ skill: architecture-patterns
3
+ description: "Software architecture patterns and best practices specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - pattern_analysis
9
+ - architecture_review
10
+ - design_evaluation
11
+
12
+ quality:
13
+ test_coverage: recommended
14
+ type_safety: strict
@@ -0,0 +1,14 @@
1
+ name: auto-format
2
+ skill: auto-format
3
+ description: "Automated code formatting and style consistency specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - code_formatting
9
+ - style_enforcement
10
+ - lint_integration
11
+
12
+ quality:
13
+ test_coverage: recommended
14
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: backend-engineer
2
+ skill: backend-engineer
3
+ description: "backend engineer specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,14 @@
1
+ name: boot-orchestrator
2
+ skill: boot-orchestrator
3
+ description: "Framework initialization and boot orchestration specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - framework_boot
9
+ - processor_initialization
10
+ - system_startup
11
+
12
+ quality:
13
+ test_coverage: required
14
+ type_safety: strict
@@ -0,0 +1,15 @@
1
+ name: bug-triage
2
+ skill: bug-triage
3
+ description: "Bug triage, debugging analysis, and issue prioritization specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - bug_analysis
9
+ - debugging
10
+ - issue_prioritization
11
+ - root_cause_analysis
12
+
13
+ quality:
14
+ test_coverage: required
15
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: code-analyzer
2
+ skill: code-analyzer
3
+ description: "code analyzer specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,14 @@
1
+ name: code-review
2
+ skill: code-review
3
+ description: "Comprehensive code quality assessment and improvement suggestions specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - code_review
9
+ - quality_assessment
10
+ - improvement_suggestions
11
+
12
+ quality:
13
+ test_coverage: required
14
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: content-creator
2
+ skill: content-creator
3
+ description: "content creator specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: database-engineer
2
+ skill: database-engineer
3
+ description: "database engineer specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: devops-engineer
2
+ skill: devops-engineer
3
+ description: "devops engineer specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -1,103 +1,25 @@
1
1
  name: enforcer
2
- description: "Enforcer agent for codex compliance and error prevention"
3
- version: "1.0.0"
2
+ skill: enforcer
3
+ description: "Enforcer agent for codex compliance and rule enforcement"
4
+ version: "2.0.0"
5
+ mode: primary
4
6
 
5
- # =============================================================================
6
7
  # CODEX COMPLIANCE
7
- # =============================================================================
8
- # Enforcement must apply these Codex rules:
9
- # - Term 7: Resolve All Errors - zero tolerance blocking
10
- # - Term 29: Security by Design - validate all inputs
11
- # - Term 39: Avoid Syntax Errors - blocking
12
- # - Term 11: Type Safety First - blocking
13
- # - Term 46: Import Consistency - blocking
14
- # - Term 47: Module System Consistency - no mixing ESM/CJS
8
+ # - Term 7: Resolve All Errors - all errors must be resolved before proceeding
9
+ # - Term 9: No Speculation - verify all assumptions with tests
10
+ # - Term 11: Security First - security review required for all changes
15
11
 
16
- mode: subagent
12
+ state_management:
13
+ enabled: true
14
+ namespaces:
15
+ - enforcement_rules
16
+ - validation_state
17
17
 
18
- # Logging Configuration
19
- logging:
20
- level: warn
21
- format: json
22
- destinations:
23
- - console
24
- - file
25
- - monitoring
26
- retention_days: 90
27
- sensitive_data_filtering: true
28
- audit_trail: true
29
-
30
- # Processor Pipeline Configuration
31
- processor_pipeline:
32
- - name: codex-validation
33
- type: validation
34
- priority: critical
35
- timeout_ms: 10000
36
- retry_attempts: 3
37
- - name: error-prevention
38
- type: validation
39
- priority: critical
40
- timeout_ms: 8000
41
- retry_attempts: 3
42
- - name: compliance-monitoring
43
- type: monitoring
44
- priority: high
45
- timeout_ms: 5000
46
- retry_attempts: 2
47
- - name: threshold-enforcement
48
- type: enforcement
49
- priority: high
50
- timeout_ms: 12000
51
- retry_attempts: 2
52
-
53
- # Agent Capabilities
54
18
  capabilities:
55
- - codex-compliance-validation
56
- - error-prevention
57
- - threshold-enforcement
58
- - automation-orchestration
59
- - quality-gate-enforcement
60
-
61
- # Error Handling Configuration
62
- error_handling:
63
- retry_attempts: 3
64
- circuit_breaker:
65
- enabled: true
66
- failure_threshold: 3
67
- recovery_timeout_ms: 30000
68
- fallback_strategy: strict
69
- alert_on_failure: true
70
-
71
- # Performance Configuration
72
- performance:
73
- timeout_ms: 25000
74
- concurrency_limit: 5
75
- memory_limit_mb: 128
76
- cpu_limit_percent: 30
77
-
78
- # Integration Hooks
79
- integration:
80
- pre_commit: true
81
- post_commit: true
82
- daily_scan: true
83
- deployment_validation: true
84
- webhook_endpoints:
85
- - url: "https://compliance-monitoring.example.com/webhook"
86
- events: ["policy_violation", "threshold_exceeded"]
87
-
88
- # Security Configuration
89
- security:
90
- sandboxed_execution: true
91
- permission_level: elevated
92
- data_classification: internal
93
- encryption_required: false
19
+ - codex_compliance
20
+ - rule_enforcement
21
+ - validation
94
22
 
95
- # Monitoring Configuration
96
- monitoring:
97
- metrics_collection: true
98
- health_checks: true
99
- performance_tracking: true
100
- alert_thresholds:
101
- response_time_ms: 20000
102
- error_rate_percent: 2
103
- memory_usage_mb: 100
23
+ quality:
24
+ test_coverage: required
25
+ type_safety: strict
@@ -0,0 +1,14 @@
1
+ name: framework-compliance-audit
2
+ skill: framework-compliance-audit
3
+ description: "Framework compliance auditing and validation specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - compliance_audit
9
+ - validation
10
+ - standards_enforcement
11
+
12
+ quality:
13
+ test_coverage: required
14
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: frontend-engineer
2
+ skill: frontend-engineer
3
+ description: "frontend engineer specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: frontend-ui-ux-engineer
2
+ skill: frontend-ui-ux-engineer
3
+ description: "frontend ui ux engineer specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,15 @@
1
+ name: git-workflow
2
+ skill: git-workflow
3
+ description: "Git workflow management and collaboration specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - git_operations
9
+ - branch_management
10
+ - merge_conflicts
11
+ - workflow_automation
12
+
13
+ quality:
14
+ test_coverage: recommended
15
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: growth-strategist
2
+ skill: growth-strategist
3
+ description: "growth strategist specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,11 @@
1
+ name: heremes-agent
2
+ description: "heremes agent specialist"
3
+ version: "1.0.0"
4
+ mode: subagent
5
+
6
+ capabilities:
7
+ - domain_specialization
8
+
9
+ quality:
10
+ test_coverage: recommended
11
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: hermes-agent
2
+ skill: hermes-agent
3
+ description: "hermes agent specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: inference-improve
2
+ skill: inference-improve
3
+ description: "inference improve specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,14 @@
1
+ name: lint
2
+ skill: lint
3
+ description: "Code linting and static analysis specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - linting
9
+ - static_analysis
10
+ - code_quality
11
+
12
+ quality:
13
+ test_coverage: recommended
14
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: log-monitor
2
+ skill: log-monitor
3
+ description: "log monitor specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: mobile-developer
2
+ skill: mobile-developer
3
+ description: "mobile developer specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: model-health-check
2
+ skill: model-health-check
3
+ description: "model health check specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: multimodal-looker
2
+ skill: multimodal-looker
3
+ description: "multimodal looker specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -1,129 +1,25 @@
1
1
  name: orchestrator
2
+ skill: orchestrator
2
3
  description: "Orchestrator agent for workflow coordination and task delegation"
3
4
  version: "2.0.0"
4
5
  mode: primary
5
6
 
6
- # =============================================================================
7
7
  # CODEX COMPLIANCE
8
- # =============================================================================
9
- # Orchestration must enforce these Codex rules:
10
8
  # - Term 52: Agent Spawn Governance - all spawns through AgentSpawnGovernor
11
9
  # - Term 53: Subagent Spawning Prevention - subagents cannot spawn other subagents
12
10
  # - Term 54: Concurrent Agent Limits - max 8 concurrent, enforce rate limits
13
- # - Term 59: Multi-Agent Coordination - complex tasks through orchestrator
14
- # - Term 7: Resolve All Errors - all errors must be resolved before proceeding
15
- # - Term 8: Prevent Infinite Loops - guarantee termination in all workflows
16
11
 
17
- # State Management Configuration
18
12
  state_management:
19
13
  enabled: true
20
14
  namespaces:
21
15
  - workflow_state
22
16
  - agent_coordination
23
- - task_queues
24
- - progress_tracking
25
- persistence: true
26
- recovery: transactional
27
- backup_interval: 30m
28
- retention_days: 30
29
17
 
30
- # Delegation System Configuration
31
- delegation:
32
- enabled: true
33
- capabilities:
34
- - task_delegation
35
- - load_balancing
36
- - dependency_management
37
- - failure_recovery
38
- complexity_analysis: enabled
39
- monitoring_interval: 30s
40
- max_concurrent_tasks: 10
41
- max_chain_depth: 5
42
-
43
- # Logging Configuration
44
- logging:
45
- level: info
46
- format: json
47
- destinations:
48
- - console
49
- - file
50
- - monitoring
51
- retention_days: 30
52
- sensitive_data_filtering: true
53
- audit_trail: true
54
-
55
- # Processor Pipeline Configuration
56
- processor_pipeline:
57
- - name: workflow-validation
58
- type: validation
59
- priority: critical
60
- timeout_ms: 10000
61
- retry_attempts: 3
62
- - name: task-scheduling
63
- type: orchestration
64
- priority: high
65
- timeout_ms: 8000
66
- retry_attempts: 2
67
- - name: progress-tracking
68
- type: monitoring
69
- priority: medium
70
- timeout_ms: 5000
71
- retry_attempts: 1
72
- - name: completion-validation
73
- type: validation
74
- priority: high
75
- timeout_ms: 12000
76
- retry_attempts: 2
77
-
78
- # Agent Capabilities
79
18
  capabilities:
80
- - workflow_orchestration
81
- - agent_coordination
82
- - task_management
83
- - progress_tracking
84
- - dependency_resolution
85
- - failure_recovery
86
-
87
- # Error Handling Configuration
88
- error_handling:
89
- retry_attempts: 3
90
- circuit_breaker:
91
- enabled: true
92
- failure_threshold: 3
93
- recovery_timeout_ms: 30000
94
- fallback_strategy: retry
95
- alert_on_failure: true
96
-
97
- # Performance Configuration
98
- performance:
99
- timeout_ms: 50000
100
- concurrency_limit: 10
101
- memory_limit_mb: 512
102
- cpu_limit_percent: 50
103
-
104
- # Integration Hooks
105
- integration:
106
- workflow_initialization: true
107
- task_completion_handler: true
108
- agent_health_monitor: true
109
- progress_update_broadcast: true
110
- webhook_endpoints:
111
- - url: "https://orchestration-monitoring.example.com/webhook"
112
- events: ["workflow_completed", "task_failed", "agent_unavailable"]
113
-
114
- # Security Configuration
115
- security:
116
- sandboxed_execution: true
117
- permission_level: elevated
118
- data_classification: internal
119
- encryption_required: false
19
+ - task_delegation
20
+ - workflow_coordination
21
+ - agent_management
120
22
 
121
- # Monitoring Configuration
122
- monitoring:
123
- metrics_collection: true
124
- health_checks: true
125
- performance_tracking: true
126
- alert_thresholds:
127
- response_time_ms: 40000
128
- error_rate_percent: 2
129
- memory_usage_mb: 400
23
+ quality:
24
+ test_coverage: required
25
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: performance-analysis
2
+ skill: performance-analysis
3
+ description: "performance analysis specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: performance-engineer
2
+ skill: performance-engineer
3
+ description: "performance engineer specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict
@@ -0,0 +1,12 @@
1
+ name: performance-optimization
2
+ skill: performance-optimization
3
+ description: "performance optimization specialist"
4
+ version: "1.0.0"
5
+ mode: subagent
6
+
7
+ capabilities:
8
+ - domain_specialization
9
+
10
+ quality:
11
+ test_coverage: recommended
12
+ type_safety: strict