Skip to content

Commit e53b74e

Browse files
committed
Update plugin version to 1.0.6 and revise documentation
- Bumped version in openclaw.plugin.json, package.json, and package-lock.json to 1.0.6. - Updated README.md and README.zh-CN.md to reflect the new version and clarify the inclusion of the built-in skill `basic-skill` for enhanced agent capabilities.
1 parent 2d6a2a9 commit e53b74e

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OpenClaw CloudPhone is a plugin that gives AI agents device management and UI au
66

77
With natural language instructions, an agent can list devices, power them on or off, capture screenshots, tap, swipe, type text, and perform other UI actions without writing manual scripts.
88

9-
Starting from `v1.0.5`, the package also ships with a built-in skill, `basic-skill`, which helps agents combine these tools in a more reliable way.
9+
Starting from `v1.0.6`, the package also ships with a built-in skill, `basic-skill`, which helps agents combine these tools in a more reliable way.
1010

1111
## Quick Start
1212

@@ -75,7 +75,7 @@ Once the plugin is loaded successfully, the agent can use all CloudPhone tools.
7575

7676
This repository is first and foremost an **OpenClaw plugin**. Its job is to expose the CloudPhone OpenAPI as tools that an agent can call.
7777

78-
Starting from `v1.0.5`, the package also includes an **OpenClaw skill**:
78+
Starting from `v1.0.6`, the package also includes an **OpenClaw skill**:
7979

8080
- Plugin: defines **what the agent can do** by providing `cloudphone_*` tools
8181
- Skill: defines **how the agent should do it reliably** by teaching call order, recovery steps, and safer workflows
@@ -283,7 +283,7 @@ Make sure `plugins.entries.cloudphone.enabled` is set to `true` in `openclaw.jso
283283

284284
**Q: The tools work, but the agent is not very stable when operating a cloud phone UI.**
285285

286-
Starting from `v1.0.5`, the package ships with the `basic-skill` skill. It teaches the agent to use the tools in a short loop: observe -> act -> verify -> observe again. Make sure you installed a recent version and restarted the Gateway so the latest skill was loaded.
286+
Starting from `v1.0.6`, the package ships with the `basic-skill` skill. It teaches the agent to use the tools in a short loop: observe -> act -> verify -> observe again. Make sure you installed a recent version and restarted the Gateway so the latest skill was loaded.
287287

288288
**Q: A tool call fails with a request error or timeout.**
289289

@@ -301,9 +301,9 @@ The agent should call `cloudphone_render_image` automatically to turn that URL i
301301

302302
## Changelog
303303

304-
Current version: **v1.0.5**
304+
Current version: **v1.0.6**
305305

306-
### v1.0.5
306+
### v1.0.6
307307

308308
- Added the built-in `basic-skill` skill distributed with the plugin
309309
- Added `reference.md` as a tool parameter quick reference

README.zh-CN.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OpenClaw 云手机插件,让 AI Agent 具备云手机的设备管理与 UI 自
66

77
通过自然语言对话即可完成云手机的查询、开关机、截图、点击、滑动、输入等操作,无需手动编写脚本。
88

9-
`v1.0.5` 开始,插件会一并发布内置 skill `basic-skill`,用于教 Agent 更稳定地组合使用这些工具。
9+
`v1.0.6` 开始,插件会一并发布内置 skill `basic-skill`,用于教 Agent 更稳定地组合使用这些工具。
1010

1111
## 快速开始
1212

@@ -75,7 +75,7 @@ openclaw gateway restart
7575

7676
这个仓库首先是一个 **OpenClaw 插件**,职责是把云手机 OpenAPI 暴露为 Agent 可调用的工具。
7777

78-
`v1.0.5` 开始,仓库还会随包发布一个 **OpenClaw Skill**
78+
`v1.0.6` 开始,仓库还会随包发布一个 **OpenClaw Skill**
7979

8080
- 插件:解决“能做什么”,提供 `cloudphone_*` 工具
8181
- skill:解决“怎样更稳地做”,教 Agent 何时调用工具、如何按顺序调用、失败后如何恢复
@@ -283,7 +283,7 @@ image_url : string - HTTPS 图片地址(必填)
283283

284284
**Q: 工具能用,但 Agent 不太会稳定操作云手机 UI?**
285285

286-
`v1.0.5` 开始,插件会随包发布 `basic-skill` skill。它会教 Agent 按“观察 -> 行动 -> 验证 -> 再观察”的闭环使用工具。请确认当前安装的是较新版本,并已重启 Gateway 让最新 skill 被加载。
286+
`v1.0.6` 开始,插件会随包发布 `basic-skill` skill。它会教 Agent 按“观察 -> 行动 -> 验证 -> 再观察”的闭环使用工具。请确认当前安装的是较新版本,并已重启 Gateway 让最新 skill 被加载。
287287

288288
**Q: 调用工具报请求失败或超时?**
289289

@@ -301,9 +301,9 @@ Agent 应该会自动调用 `cloudphone_render_image` 将该 URL 转成可展示
301301

302302
## 更新日志
303303

304-
当前版本:**v1.0.5**
304+
当前版本:**v1.0.6**
305305

306-
### v1.0.5
306+
### v1.0.6
307307

308308
- 新增随插件发布的内置 skill:`basic-skill`
309309
- 新增 `reference.md` 参数速查表

openclaw.plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "cloudphone",
33
"name": "CloudPhone Plugin",
4-
"version": "1.0.5",
4+
"version": "1.0.6",
55
"description": "OpenClaw CloudPhone plugin that exposes CloudPhone OpenAPI capabilities for user info, device management, and UI automation as agent tools.",
66
"configSchema": {
77
"type": "object",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@suqiai/cloudphone",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"license": "MIT",
55
"description": "OpenClaw CloudPhone plugin that gives AI agents cloud device management and UI automation capabilities through natural language, including device queries, power actions, screenshots, taps, swipes, and text input.",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)