-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvif-swarm-architecture.code-workspace
More file actions
88 lines (88 loc) · 1.95 KB
/
vif-swarm-architecture.code-workspace
File metadata and controls
88 lines (88 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"folders": [
{
"name": "🎯 ORCHESTRATOR (Lead)",
"path": "agents",
"patterns": [
"orchestrator_swarm.py",
"orchestrator.py"
]
},
{
"name": "🔍 CATALYST MONITOR",
"path": "agents",
"patterns": ["*catalyst*"]
},
{
"name": "📊 VIF ANALYST",
"path": "agents",
"patterns": ["watchlist_watcher.py"]
},
{
"name": "🔎 FINVIZ SCREENER",
"path": "agents",
"patterns": ["*finviz*"]
},
{
"name": "⚡ SWING SCREENER",
"path": "scripts",
"patterns": ["*swing*"]
},
{
"name": "✅ SIGNAL VERIFIER",
"path": "agents",
"patterns": ["*verif*"]
},
{
"name": "🤖 CRITIC AGENT",
"path": "agents",
"patterns": ["*critic*", "*external*"]
},
{
"name": "⚖️ RISK AGENT",
"path": "agents",
"patterns": ["*risk*", "*position*"]
},
{
"name": "📈 VECTORBT ANALYST",
"path": "agents",
"patterns": ["*backtest*", "*vectorbt*"]
},
{
"name": "🔬 AUTORESEARCH",
"path": "agents",
"patterns": ["*research*"]
},
{
"name": "⚙️ CONFIG & DATA",
"path": "config"
},
{
"name": "📋 REPORTS",
"path": "reports"
},
{
"name": "📚 DOCS & MEMORY",
"path": "docs"
}
],
"settings": {
"explorer.sortOrder": "type",
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.py": "${base}.json, ${base}.txt",
"orchestrator_swarm.py": "*.log",
"schedule_daily.py": "logs/**"
},
"editor.fontSize": 12,
"editor.fontFamily": "Fira Code, Consolas",
"editor.formatOnSave": true,
"workbench.colorTheme": "One Dark Pro",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"[python]": {
"editor.defaultFormatter": "ms-python.python",
"editor.formatOnSave": true
}
}
}