tickflow-assist 0.2.6 → 0.2.7
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/README.md +3 -12
- package/openclaw.plugin.json +1 -1
- package/package.json +2 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# TickFlow Assist
|
|
2
2
|
|
|
3
|
-
基于 [OpenClaw](https://openclaw.ai) 的 A 股监控与分析插件。它使用 TickFlow 获取行情与财务数据,结合 LLM 生成技术面、基本面、资讯面的综合判断,并把结果持久化到本地 LanceDB。
|
|
3
|
+
基于 [OpenClaw](https://openclaw.ai) 的 A 股监控与分析插件。它使用 [TickFlow](https://tickflow.org/auth/register?ref=BUJ54JEDGE) 获取行情与财务数据,结合 LLM 生成技术面、基本面、资讯面的综合判断,并把结果持久化到本地 LanceDB。
|
|
4
4
|
|
|
5
5
|
## 安装
|
|
6
6
|
|
|
@@ -23,19 +23,10 @@ npx -y tickflow-assist configure-openclaw
|
|
|
23
23
|
npx -y tickflow-assist configure-openclaw --no-enable --no-restart
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
社区安装后的升级方式:
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
|
|
30
|
-
cd tickflow-assist
|
|
31
|
-
npm install
|
|
32
|
-
cd python
|
|
33
|
-
uv sync
|
|
34
|
-
cd ..
|
|
35
|
-
npm run check
|
|
36
|
-
npm run build
|
|
37
|
-
openclaw plugins install -l /path/to/tickflow-assist
|
|
38
|
-
openclaw plugins enable tickflow-assist
|
|
29
|
+
openclaw plugins update tickflow-assist
|
|
39
30
|
openclaw gateway restart
|
|
40
31
|
```
|
|
41
32
|
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tickflow-assist",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.7",
|
|
4
4
|
"description": "OpenClaw plugin for TickFlow-based A-share analysis, monitoring, and alerting.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -37,11 +37,6 @@
|
|
|
37
37
|
"validate:mx-search": "npm run build && node dist/dev/validate-mx-search.js"
|
|
38
38
|
},
|
|
39
39
|
"openclaw": {
|
|
40
|
-
"compat": {
|
|
41
|
-
"pluginApi": "1.2.0",
|
|
42
|
-
"minGatewayVersion": "2026.3.22",
|
|
43
|
-
"builtWithOpenClawVersion": "2026.3.22"
|
|
44
|
-
},
|
|
45
40
|
"extensions": [
|
|
46
41
|
"dist/plugin.js"
|
|
47
42
|
]
|
|
@@ -57,7 +52,7 @@
|
|
|
57
52
|
},
|
|
58
53
|
"devDependencies": {
|
|
59
54
|
"@types/node": "^22.13.11",
|
|
60
|
-
"openclaw": "^2026.3.
|
|
55
|
+
"openclaw": "^2026.3.28",
|
|
61
56
|
"typescript": "^5.8.2"
|
|
62
57
|
}
|
|
63
58
|
}
|