@yoooclaw/phone-notifications 1.10.2 → 1.10.4
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
|
@@ -83,11 +83,11 @@ openclaw plugins update @yoooclaw/phone-notifications
|
|
|
83
83
|
适用于无法使用 npm 源的环境,或宿主不是标准 OpenClaw CLI 的场景。脚本从 CDN 获取插件包并自动注册。
|
|
84
84
|
|
|
85
85
|
```bash
|
|
86
|
-
curl -fsSL https://
|
|
86
|
+
curl -fsSL https://artifact.yoooclaw.com/plugin/install.sh | bash
|
|
87
87
|
```
|
|
88
88
|
|
|
89
89
|
```powershell
|
|
90
|
-
& ([scriptblock]::Create((irm https://
|
|
90
|
+
& ([scriptblock]::Create((irm https://artifact.yoooclaw.com/plugin/install.ps1)))
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
脚本会自动探测宿主:
|
|
@@ -102,11 +102,11 @@ curl -fsSL https://cdn.yoootek.com/openclaw-plugin/install.sh | bash
|
|
|
102
102
|
#### 指定版本安装
|
|
103
103
|
|
|
104
104
|
```bash
|
|
105
|
-
curl -fsSL https://
|
|
105
|
+
curl -fsSL https://artifact.yoooclaw.com/plugin/install.sh | bash -s -- --version 1.2.3
|
|
106
106
|
```
|
|
107
107
|
|
|
108
108
|
```powershell
|
|
109
|
-
& ([scriptblock]::Create((irm https://
|
|
109
|
+
& ([scriptblock]::Create((irm https://artifact.yoooclaw.com/plugin/install.ps1))) --version 1.2.3
|
|
110
110
|
```
|
|
111
111
|
|
|
112
112
|
#### 带 API Key 安装
|
|
@@ -114,11 +114,11 @@ curl -fsSL https://cdn.yoootek.com/openclaw-plugin/install.sh | bash -s -- --ver
|
|
|
114
114
|
安装时同时写入灯控鉴权 API Key(写入 `<stateDir>/credentials.json`):
|
|
115
115
|
|
|
116
116
|
```bash
|
|
117
|
-
curl -fsSL https://
|
|
117
|
+
curl -fsSL https://artifact.yoooclaw.com/plugin/install.sh | bash -s -- --api-key ock_xxx
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
```powershell
|
|
121
|
-
& ([scriptblock]::Create((irm https://
|
|
121
|
+
& ([scriptblock]::Create((irm https://artifact.yoooclaw.com/plugin/install.ps1))) --api-key ock_xxx
|
|
122
122
|
```
|
|
123
123
|
|
|
124
124
|
#### 使用本地包安装
|