-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask_registry.json
More file actions
99 lines (99 loc) · 2.99 KB
/
task_registry.json
File metadata and controls
99 lines (99 loc) · 2.99 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
{
"schema_version": "1.0",
"description": "OpenClaw Workspace Task Registry - 唯一任务定义源",
"created_date": "2026-02-22",
"last_updated": "2026-03-14",
"owner": "James Dong",
"rules": "如聊天内容与Registry冲突,以Registry为准",
"tasks": [
{
"id": "T01",
"name": "龙头战法选股任务",
"version": "1.3.0",
"description": "基于龙头战法的自动化选股系统,集成API数据获取、技术指标筛选、基本面筛选、龙头股识别,支持多格式输出与告警。",
"status": "active",
"location": "tasks/T01",
"created_date": "2026-02-22",
"last_updated": "2026-03-10",
"dependencies": [
"a-share-short-decision",
"python>=3.8",
"pandas",
"numpy",
"requests",
"pyyaml"
],
"schedule": null,
"output_formats": [
"table",
"json",
"csv"
],
"alert_system": true,
"configuration_file": "config.yaml",
"entry_point": "main.py",
"documentation": "tasks/T01/README.md",
"tags": [
"选股",
"龙头战法",
"A股",
"量化"
],
"snapshots": [
{
"version": "1.2.0",
"snapshot_file": "snapshots/snapshot_T01_v1.2.0_20260224_062118.json",
"created_at": "2026-02-24T06:21:19.210989"
},
{
"version": "1.2.0",
"snapshot_file": "snapshots/snapshot_T01_v1.2.0_20260224_064836.json",
"created_at": "2026-02-24T06:48:36.142815"
},
{
"version": "1.3.0",
"snapshot_file": "snapshots/snapshot_T01_v1.3.0_20260224_065639.json",
"created_at": "2026-02-24T06:56:39.495023"
}
],
"rollback_history": [
{
"from_version": "unknown",
"to_version": "1.2.0",
"rolled_back_at": "2026-02-24T06:58:57.468287",
"reason": "disaster_recovery"
}
]
},
{
"id": "T99",
"name": "A股短线策略复盘任务",
"version": "0.0.0",
"description": "该任务已被删除,不再维护",
"status": "deleted",
"location": null,
"created_date": "2026-02-22",
"last_updated": "2026-03-14",
"deleted_date": "2026-03-14",
"dependencies": [],
"schedule": null,
"tags": ["已删除"],
"notes": "任务已删除,相关功能已停止"
},
{
"id": "T100",
"name": "宏观监控独立报告任务",
"version": "0.0.0",
"description": "该任务已被删除,不再维护。原功能:每日宏观数据监控与报告推送",
"status": "deleted",
"location": null,
"created_date": "2026-02-22",
"last_updated": "2026-03-14",
"deleted_date": "2026-03-14",
"dependencies": [],
"schedule": null,
"tags": ["已删除", "宏观监控"],
"notes": "2026-03-14 老板指令:停止14:00运行并发送每日宏观监控报告,任务已删除"
}
]
}