tickflow-assist 0.2.6 → 0.2.8

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 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
- git clone https://github.com/robinspt/tickflow-assist.git
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
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "tickflow-assist",
3
3
  "name": "TickFlow Assist",
4
- "version": "0.2.6",
4
+ "version": "0.2.8",
5
5
  "description": "A-share watchlist analysis, monitoring, and alert delivery powered by TickFlow and OpenClaw.",
6
6
  "skills": [
7
7
  "skills"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tickflow-assist",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "OpenClaw plugin for TickFlow-based A-share analysis, monitoring, and alerting.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -38,9 +38,9 @@
38
38
  },
39
39
  "openclaw": {
40
40
  "compat": {
41
- "pluginApi": "1.2.0",
41
+ "pluginApi": "2026.3.22",
42
42
  "minGatewayVersion": "2026.3.22",
43
- "builtWithOpenClawVersion": "2026.3.22"
43
+ "builtWithOpenClawVersion": "2026.3.28"
44
44
  },
45
45
  "extensions": [
46
46
  "dist/plugin.js"
@@ -57,7 +57,7 @@
57
57
  },
58
58
  "devDependencies": {
59
59
  "@types/node": "^22.13.11",
60
- "openclaw": "^2026.3.22",
60
+ "openclaw": "^2026.3.28",
61
61
  "typescript": "^5.8.2"
62
62
  }
63
63
  }