strray-ai 1.18.10 → 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.
- package/.opencode/agents/api-design.yml +31 -0
- package/.opencode/agents/architect-tools.yml +15 -0
- package/.opencode/agents/architecture-patterns.yml +14 -0
- package/.opencode/agents/auto-format.yml +14 -0
- package/.opencode/agents/backend-engineer.yml +12 -0
- package/.opencode/agents/boot-orchestrator.yml +14 -0
- package/.opencode/agents/bug-triage.yml +15 -0
- package/.opencode/agents/code-analyzer.yml +12 -0
- package/.opencode/agents/code-review.yml +14 -0
- package/.opencode/agents/content-creator.yml +12 -0
- package/.opencode/agents/database-engineer.yml +12 -0
- package/.opencode/agents/devops-engineer.yml +12 -0
- package/.opencode/agents/enforcer.yml +18 -96
- package/.opencode/agents/framework-compliance-audit.yml +14 -0
- package/.opencode/agents/frontend-engineer.yml +12 -0
- package/.opencode/agents/frontend-ui-ux-engineer.yml +12 -0
- package/.opencode/agents/git-workflow.yml +15 -0
- package/.opencode/agents/growth-strategist.yml +12 -0
- package/.opencode/agents/heremes-agent.yml +11 -0
- package/.opencode/agents/hermes-agent.yml +12 -0
- package/.opencode/agents/inference-improve.yml +12 -0
- package/.opencode/agents/lint.yml +14 -0
- package/.opencode/agents/log-monitor.yml +12 -0
- package/.opencode/agents/mobile-developer.yml +12 -0
- package/.opencode/agents/model-health-check.yml +12 -0
- package/.opencode/agents/multimodal-looker.yml +12 -0
- package/.opencode/agents/orchestrator.yml +7 -111
- package/.opencode/agents/performance-analysis.yml +12 -0
- package/.opencode/agents/performance-engineer.yml +12 -0
- package/.opencode/agents/performance-optimization.yml +12 -0
- package/.opencode/agents/processor-pipeline.yml +14 -0
- package/.opencode/agents/project-analysis.yml +12 -0
- package/.opencode/agents/refactoring-strategies.yml +12 -0
- package/.opencode/agents/researcher.yml +12 -0
- package/.opencode/agents/security-audit.yml +12 -0
- package/.opencode/agents/security-scan.yml +12 -0
- package/.opencode/agents/seo-consultant.yml +12 -0
- package/.opencode/agents/session-management.yml +12 -0
- package/.opencode/agents/state-manager.yml +12 -0
- package/.opencode/agents/storyteller.yml +12 -0
- package/.opencode/agents/strategist.yml +12 -0
- package/.opencode/agents/tech-writer.yml +12 -0
- package/.opencode/agents/testing-best-practices.yml +12 -0
- package/.opencode/agents/testing-strategy.yml +12 -0
- package/.opencode/agents/ui-ux-design.yml +12 -0
- package/.opencode/hooks/post-commit +208 -5
- package/.opencode/strray/features.json +188 -0
- package/.strray/features.json +188 -0
- package/README.md +3 -0
- package/dist/README.md +3 -0
- package/dist/core/activity-logger.d.ts +8 -0
- package/dist/core/activity-logger.d.ts.map +1 -1
- package/dist/core/activity-logger.js +25 -0
- package/dist/core/activity-logger.js.map +1 -1
- package/dist/core/boot-orchestrator.d.ts +1 -0
- package/dist/core/boot-orchestrator.d.ts.map +1 -1
- package/dist/core/boot-orchestrator.js +72 -25
- package/dist/core/boot-orchestrator.js.map +1 -1
- package/dist/core/features-config.d.ts +121 -0
- package/dist/core/features-config.d.ts.map +1 -1
- package/dist/core/features-config.js +23 -0
- package/dist/core/features-config.js.map +1 -1
- package/dist/delegation/agent-delegator.d.ts +4 -0
- package/dist/delegation/agent-delegator.d.ts.map +1 -1
- package/dist/delegation/agent-delegator.js +19 -0
- package/dist/delegation/agent-delegator.js.map +1 -1
- package/dist/enforcement/enforcer-tools.d.ts.map +1 -1
- package/dist/enforcement/enforcer-tools.js +26 -1
- package/dist/enforcement/enforcer-tools.js.map +1 -1
- package/dist/mcps/agent-resolver.d.ts.map +1 -1
- package/dist/mcps/agent-resolver.js +3 -17
- package/dist/mcps/agent-resolver.js.map +1 -1
- package/dist/monitoring/memory-monitor.d.ts +0 -4
- package/dist/monitoring/memory-monitor.d.ts.map +1 -1
- package/dist/monitoring/memory-monitor.js +20 -0
- package/dist/monitoring/memory-monitor.js.map +1 -1
- package/dist/orchestrator/orchestrator.d.ts.map +1 -1
- package/dist/orchestrator/orchestrator.js +3 -0
- package/dist/orchestrator/orchestrator.js.map +1 -1
- package/dist/plugin/strray-codex-injection.d.ts.map +1 -1
- package/dist/plugin/strray-codex-injection.js +7 -0
- package/dist/plugin/strray-codex-injection.js.map +1 -1
- package/dist/processors/implementations/inference-improvement-processor.d.ts +4 -0
- package/dist/processors/implementations/inference-improvement-processor.d.ts.map +1 -1
- package/dist/processors/implementations/inference-improvement-processor.js +34 -2
- package/dist/processors/implementations/inference-improvement-processor.js.map +1 -1
- package/dist/processors/implementations/session-summary-processor.d.ts +28 -0
- package/dist/processors/implementations/session-summary-processor.d.ts.map +1 -0
- package/dist/processors/implementations/session-summary-processor.js +131 -0
- package/dist/processors/implementations/session-summary-processor.js.map +1 -0
- package/dist/processors/processor-manager.d.ts +4 -0
- package/dist/processors/processor-manager.d.ts.map +1 -1
- package/dist/processors/processor-manager.js +11 -0
- package/dist/processors/processor-manager.js.map +1 -1
- package/dist/scripts/activate-kernel-pipeline.d.ts +8 -0
- package/dist/scripts/activate-kernel-pipeline.d.ts.map +1 -0
- package/dist/scripts/activate-kernel-pipeline.js +102 -0
- package/dist/scripts/activate-kernel-pipeline.js.map +1 -0
- package/opencode.json +0 -10
- package/package.json +1 -1
- package/scripts/node/auto-reflection-generator.mjs +441 -0
- package/scripts/node/ci-report-generator.mjs +15 -9
- package/scripts/node/reflection-processor.cjs +213 -0
- package/scripts/node/reflection-validate.sh +194 -0
- package/scripts/node/universal-version-manager.js +3 -3
- package/.opencode/agents/analyzer.yml +0 -94
- package/.opencode/agents/architect.yml +0 -163
- package/.opencode/agents/bug-triage-specialist.yml +0 -152
- package/.opencode/agents/code-reviewer.yml +0 -143
- package/.opencode/agents/refactorer.yml +0 -154
- package/.opencode/agents/security-auditor.yml +0 -104
- package/.opencode/agents/testing-lead.yml +0 -80
- package/.strray/state/state.json +0 -1
|
@@ -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,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,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
|
|
@@ -1,103 +1,25 @@
|
|
|
1
1
|
name: enforcer
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
#
|
|
9
|
-
# - Term
|
|
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
|
-
|
|
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
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
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
|
-
|
|
96
|
-
|
|
97
|
-
|
|
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-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,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
|
|
@@ -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
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
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
|
-
|
|
122
|
-
|
|
123
|
-
|
|
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-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
|