-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent_manifest.json
More file actions
165 lines (165 loc) · 5.9 KB
/
Copy pathagent_manifest.json
File metadata and controls
165 lines (165 loc) · 5.9 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"agent_id": "quant_lab_agent",
"agent_name": "QuantLabAgent",
"category": "quant_research",
"project_type": "Agent",
"description": "Quant research dashboard for educational backtesting, risk metrics, technical indicators, and candlestick visualization.",
"project_path": "F:\\AIProjects\\QuantLabAgent",
"status": "Complete",
"version": "QUANTLAB-017-COMPLETE",
"inputs": [
"ticker",
"date_range",
"strategy_config",
"indicator_settings",
"demo_market_data"
],
"outputs": [
"backtest_result",
"risk_metrics",
"charts",
"research_summary",
"dashboard_view"
],
"actions": [
{
"action_id": "view_project_status",
"label": "View project status",
"description": "Review the local PROJECT_STATUS.md checkpoint file.",
"action_type": "report_view",
"execution_mode": "not_executable",
"risk_level": "low",
"requires_approval": false,
"command_template": "Open PROJECT_STATUS.md in the project folder.",
"runbook_ref": "docs/MANUAL_RUNBOOK.md#quant-lab-agent-view-project-status",
"expected_output": "User can see the current checkpoint, validation status, and next stage.",
"safety_note": "Display/manual metadata only; AgentHub does not execute this action.",
"connector_required": "none",
"status": "display_only",
"enabled": true,
"safe_mode": true
},
{
"action_id": "view_agent_manifest",
"label": "View agent manifest",
"description": "Review the local agent_manifest.json metadata file.",
"action_type": "report_view",
"execution_mode": "not_executable",
"risk_level": "low",
"requires_approval": false,
"command_template": "Open agent_manifest.json in the project folder.",
"runbook_ref": "docs/MANUAL_RUNBOOK.md#quant-lab-agent-view-agent-manifest",
"expected_output": "User can inspect declared inputs, outputs, actions, connectors, and safety mode.",
"safety_note": "Display/manual metadata only; AgentHub does not execute this action.",
"connector_required": "none",
"status": "display_only",
"enabled": true,
"safe_mode": true
},
{
"action_id": "open_project_folder",
"label": "Open project folder",
"description": "Open the local project folder manually outside AgentHub.",
"action_type": "local_link",
"execution_mode": "manual_only",
"risk_level": "low",
"requires_approval": false,
"command_template": "explorer \"F:\\AIProjects\\QuantLabAgent\"",
"runbook_ref": "docs/MANUAL_RUNBOOK.md#quant-lab-agent-open-project-folder",
"expected_output": "User manually opens the local project folder.",
"safety_note": "Display/manual metadata only; AgentHub does not execute this action.",
"connector_required": "none",
"status": "manual_ready",
"enabled": true,
"safe_mode": true
},
{
"action_id": "view_latest_report",
"label": "View latest report",
"description": "Review the latest public-safe sample report or exported summary.",
"action_type": "report_view",
"execution_mode": "not_executable",
"risk_level": "low",
"requires_approval": false,
"command_template": "Review the latest public-safe report or README demo output manually.",
"runbook_ref": "docs/MANUAL_RUNBOOK.md#quant-lab-agent-view-latest-report",
"expected_output": "User can review a public-safe report or sample output reference.",
"safety_note": "Display/manual metadata only; AgentHub does not execute this action.",
"connector_required": "none",
"status": "display_only",
"enabled": true,
"safe_mode": true
},
{
"action_id": "manual_run_dashboard",
"label": "Manual run dashboard",
"description": "Show the manual dashboard launch runbook for the Agent.",
"action_type": "manual_instruction",
"execution_mode": "manual_only",
"risk_level": "low",
"requires_approval": false,
"command_template": "cd /d \"F:\\AIProjects\\QuantLabAgent\" && streamlit run app.py",
"runbook_ref": "docs/MANUAL_RUNBOOK.md#quant-lab-agent-manual-run-dashboard",
"expected_output": "User manually opens the local Streamlit dashboard outside automated execution.",
"safety_note": "Display/manual metadata only; AgentHub does not execute this action.",
"connector_required": "none",
"status": "manual_ready",
"enabled": true,
"safe_mode": true
}
],
"connectors": [
{
"connector_id": "local_filesystem",
"label": "Local project files",
"status": "available_local",
"mode": "read_only_manifest_context",
"safe_mode": true
},
{
"connector_id": "github_showcase",
"label": "GitHub showcase",
"status": "available_link",
"mode": "display_only",
"safe_mode": true
},
{
"connector_id": "streamlit_local_app",
"label": "Streamlit local dashboard",
"status": "manual_launch",
"mode": "display_command_only",
"safe_mode": true
},
{
"connector_id": "market_data_provider",
"label": "Market data provider",
"status": "optional_future",
"mode": "not_connected",
"safe_mode": true
},
{
"connector_id": "google_sheets",
"label": "Google Sheets",
"status": "planned",
"mode": "not_connected",
"safe_mode": true
}
],
"demo_mode": true,
"safe_mode": true,
"last_run": "Not tracked yet",
"next_recommended_action": "Keep as educational research showcase; do not enable trading or automated execution.",
"github_repo": "https://github.com/CHENXJC/QuantLabAgent",
"dashboard_url": "",
"tags": [
"Python",
"Streamlit",
"Quant Research",
"Backtesting",
"Risk Metrics"
],
"owner": "BPCT / CHENXJC",
"public_showcase_status": "GitHub Public Showcase",
"pin_status": "Pinned",
"action_schema_version": "HUB-V2-005"
}