0xray 2.1.1 → 2.1.2

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.
@@ -0,0 +1,132 @@
1
+ {
2
+ "$schema": "./features.schema.json",
3
+ "version": "2.0.1",
4
+ "description": "0xRay Framework - Unified Feature Configuration",
5
+ "token_optimization": {
6
+ "enabled": true,
7
+ "max_context_tokens": 20000,
8
+ "prune_after_task": true,
9
+ "summarize_tool_outputs": true,
10
+ "context_compression": {
11
+ "enabled": true,
12
+ "threshold_tokens": 15000,
13
+ "compression_ratio": 0.4
14
+ }
15
+ },
16
+ "model_routing": {
17
+ "enabled": true
18
+ },
19
+ "batch_operations": {
20
+ "enabled": true,
21
+ "prefer_sed_for_replacements": true,
22
+ "parallel_file_updates": true,
23
+ "max_concurrent_edits": 10,
24
+ "auto_batch_threshold": 5
25
+ },
26
+ "multi_agent_orchestration": {
27
+ "enabled": true,
28
+ "coordination_model": "async-multi-agent",
29
+ "max_concurrent_agents": 3,
30
+ "task_distribution_strategy": "capability-based",
31
+ "conflict_resolution": "expert-priority",
32
+ "progress_tracking": true,
33
+ "session_persistence": true
34
+ },
35
+ "autonomous_reporting": {
36
+ "enabled": true,
37
+ "interval_minutes": 60,
38
+ "auto_schedule": true,
39
+ "include_health_assessment": true,
40
+ "include_agent_activities": true,
41
+ "include_pipeline_operations": true,
42
+ "include_critical_issues": true,
43
+ "include_recommendations": true,
44
+ "report_retention_days": 30,
45
+ "notification_channels": [
46
+ "console"
47
+ ]
48
+ },
49
+ "agent_management": {
50
+ "disabled_agents": [],
51
+ "agent_models": {},
52
+ "performance_limits": {
53
+ "max_task_duration_ms": 30000,
54
+ "max_memory_usage_mb": 512,
55
+ "max_tokens_per_request": 16000
56
+ }
57
+ },
58
+ "refactoring": {
59
+ "enabled": true,
60
+ "automatic_detection": true,
61
+ "require_user_approval": false,
62
+ "max_complexity_threshold": 80,
63
+ "safe_mode": true,
64
+ "batch_mode": true
65
+ },
66
+ "activity_logging": {
67
+ "enabled": true,
68
+ "level": "info",
69
+ "include_performance_metrics": true,
70
+ "include_agent_states": false,
71
+ "include_token_usage": true,
72
+ "retention_days": 3,
73
+ "log_to_file": true,
74
+ "log_path": ".opencode/logs"
75
+ },
76
+ "security": {
77
+ "enabled": true,
78
+ "prompt_sanitization": true,
79
+ "vulnerability_scanning": true,
80
+ "code_review_enforcement": true,
81
+ "security_score_threshold": 70
82
+ },
83
+ "performance_monitoring": {
84
+ "enabled": true,
85
+ "real_time_metrics": true,
86
+ "benchmark_tracking": true,
87
+ "token_tracking": true,
88
+ "cost_tracking": true,
89
+ "alerting": {
90
+ "enabled": true,
91
+ "performance_degradation_threshold": 20,
92
+ "error_rate_threshold": 5,
93
+ "cost_threshold_daily": 10
94
+ }
95
+ },
96
+ "caching": {
97
+ "enabled": true,
98
+ "file_content_cache": true,
99
+ "search_result_cache": true,
100
+ "cache_ttl_seconds": 60,
101
+ "max_cache_size_mb": 25
102
+ },
103
+ "agent_spawn": {
104
+ "max_concurrent": 8,
105
+ "max_per_type": 3,
106
+ "spawn_cooldown_ms": 500,
107
+ "rate_limit_per_minute": 20
108
+ },
109
+ "delegation": {
110
+ "confidence_threshold": 0.5,
111
+ "enable_intelligent_routing": true
112
+ },
113
+ "complexity_thresholds": {
114
+ "simple": 15,
115
+ "moderate": 25,
116
+ "complex": 50,
117
+ "enterprise": 100
118
+ },
119
+ "analytics": {
120
+ "enabled": true,
121
+ "default_limit": 500,
122
+ "min_samples_for_calibration": 3,
123
+ "track_complexity_accuracy": true,
124
+ "track_agent_performance": true
125
+ },
126
+ "pattern_learning": {
127
+ "enabled": true,
128
+ "learning_interval_ms": 300000,
129
+ "auto_apply_threshold": 0.9,
130
+ "min_success_rate": 0.7
131
+ }
132
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "version": "1.0",
3
+ "integrations": {
4
+ "openclaw": {
5
+ "enabled": false,
6
+ "type": "external-service",
7
+ "version": "2.0.1",
8
+ "config": {}
9
+ },
10
+ "python-bridge": {
11
+ "enabled": false,
12
+ "type": "protocol-bridge",
13
+ "version": "2.0.1",
14
+ "config": {}
15
+ },
16
+ "react": {
17
+ "enabled": false,
18
+ "type": "framework-adapter",
19
+ "version": "2.0.1",
20
+ "config": {}
21
+ }
22
+ }
23
+ }