feat: 新增 account 和 plan 目录

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 16:26:22 +08:00
parent 243a190124
commit 0cab33b16b
694 changed files with 161549 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{
"zh": {
"name": "更新计划步骤",
"description": "更新计划中某个步骤的状态,每完成一步后必须调用以跟踪进度。"
}
}

View File

@@ -0,0 +1,46 @@
---
name: update-plan-step
description: Update the status of a plan step. MUST call after completing each step to track progress. Status values - pending, in_progress, completed, failed, skipped.
system: true
handler: plan
tool-name: update_plan_step
category: Plan
---
# Update Plan Step
更新计划中某个步骤的状态。每完成一步必须调用。
## Parameters
| 参数 | 类型 | 必填 | 说明 |
|-----|------|-----|------|
| step_id | string | 是 | 步骤 ID |
| status | string | 是 | pending / in_progress / completed / failed / skipped |
| result | string | 否 | 执行结果或错误信息 |
## Examples
**步骤完成**:
```json
{
"step_id": "step_1",
"status": "completed",
"result": "已打开百度首页"
}
```
**步骤失败**:
```json
{
"step_id": "step_2",
"status": "failed",
"result": "找不到搜索框元素"
}
```
## Related Skills
- `create-plan`: 创建计划
- `get-plan-status`: 查看计划状态
- `complete-plan`: 完成计划