← 返回 Skills 市场
wx528

Agent Plan Manager

作者 DaXuan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
110
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install agent-plan-manager
功能描述
Structured plan management for OpenClaw Agent's tasks and execution workflows. Use when the OpenClaw Agent needs to create, track, or break down execution pl...
使用说明 (SKILL.md)

\r \r

Agent Plan Manager\r

\r Manage OpenClaw Agent's execution plans and task workflows in a structured, trackable way.\r \r Who is it for? OpenClaw Agent that needs to organize tasks, track execution progress, or document step-by-step implementation plans.\r \r What makes it different?\r \r

  • Agent-Centric: designed for AI agent execution workflows with clear entry/exit points\r
  • Structured: separates high-level goals from detailed tool-calling steps\r
  • Trackable: uses checkboxes and status fields for execution state visibility\r
  • Lightweight: just Markdown files, integrates with OpenClaw's file system tools\r \r

Quick Start\r

\r

  1. Create plans/plans-overview.md from the overview template\r
  2. Add execution items to the table with appropriate status\r
  3. If a plan needs detailed steps, create plans/detailed/XX-{plan-name}.md\r
  4. Update plans/detailed/index.md to link the new plan\r
  5. Update statuses as execution progresses\r \r

Directory Structure\r

\r

plans/\r
├── plans-overview.md      ← from templates/plans-overview.md\r
└── detailed/\r
    ├── index.md           ← from templates/index.md\r
    └── XX-{plan-name}.md  ← from templates/detailed-plan.md\r
```\r
\r
## When to Use\r
\r
- Creating a new execution plan for complex tasks\r
- Tracking multi-step tool calling workflows\r
- Breaking down user requests into actionable steps\r
- Recording detailed execution documentation\r
- Structured agent task management\r
\r
## Example: Web Scraping Task\r
\r
**Step 1** — Add to `plans/plans-overview.md`:\r
\r
```markdown\r
| 1 ||***|| Web scraping for product prices ||***|| In Progress ||***|| High ||***|| TBD ||***|| TBD ||***|| Extract prices from example.com |\r
```\r
\r
**Step 2** — Create `plans/detailed/01-web-scraping.md`:\r
\r
```markdown\r
# Detailed Plan - Web Scraping for Product Prices\r
\r
## Plan ID: #1\r
\r
## Objective\r
Extract product prices from example.com and save to a CSV file.\r
\r
## Schedule\r
TBD\r
\r
## Deadline\r
TBD\r
\r
## Tool Sequence\r
\r
1. `browser_navigate` → example.com/products\r
2. `browser_snapshot` → extract product list\r
3. `browser_click` → navigate to each product\r
4. `WriteFile` → save results to products.csv\r
\r
## Implementation Steps\r
\r
### 1. Navigate to target URL\r
- [x] Use browser_navigate to load example.com/products\r
\r
### 2. Extract product data\r
- [ ] Capture page snapshot\r
- [ ] Parse product names and prices\r
- [ ] Handle pagination if present\r
\r
### 3. Save results\r
- [ ] Format data as CSV\r
- [ ] Write to products.csv\r
\r
## Estimated Token Usage\r
~2K tokens\r
```\r
\r
**Step 3** — Update `plans/detailed/index.md`:\r
\r
```markdown\r
| #1 | Web scraping for product prices | TBD | TBD | [01-web-scraping.md](./detailed/01-web-scraping.md) |\r
```\r
\r
## Templates\r
\r
All templates live in `templates/`:\r
\r
- **`plans-overview.md`** — High-level execution board with status table\r
- **`index.md`** — Index of all detailed execution plans\r
- **`detailed-plan.md`** — Step-by-step execution plan with tool sequences\r
\r
## Tips\r
\r
- Keep plan names concise; use kebab-case for filenames (`01-web-scraping.md`)\r
- Update `last_updated` in frontmatter whenever the overview changes\r
- Use checkboxes (`- [ ]`) in detailed plans to track execution progress\r
- Include tool sequences to clarify the execution flow\r
- Archive completed plans by moving them to the "Completed Items" section\r
- Estimate token usage when possible for complex multi-step tasks\r
安全使用建议
This skill is internally coherent and limited to creating and maintaining Markdown plan files for the agent. Before installing, confirm you are comfortable with the agent writing/modifying files under a plans/ directory in its working environment. Do not store secrets or credentials in plan files. Also verify which agent tools (e.g., browser_navigate, WriteFile) your agent can execute — those tool executions are implied by the templates and will run with whatever privileges your agent already has. If you want tighter control, restrict the agent's filesystem permissions or review plan files before execution.
功能分析
Type: OpenClaw Skill Name: agent-plan-manager Version: 1.0.0 The agent-plan-manager bundle is a documentation-based workflow tool designed to help an AI agent track its tasks using Markdown files. It contains no executable code, scripts, or network-enabled instructions, and its logic is entirely focused on organizational record-keeping within the agent's local workspace (SKILL.md and templates/ directory).
能力评估
Purpose & Capability
Name/description match the actual instructions: creating and updating Markdown plan files and templates for agent task planning. No unrelated binaries, credentials, or services are requested.
Instruction Scope
SKILL.md confines behavior to creating/updating files under a 'plans/' directory and using agent tool sequence names (e.g., browser_navigate, WriteFile) to describe workflows. It does not instruct the agent to read unrelated system state, exfiltrate data, or contact unexpected endpoints.
Install Mechanism
No install spec and no code files — nothing is downloaded or written to disk by an installer. The skill is instruction-only, which minimizes install risk.
Credentials
No environment variables, credentials, or config paths are requested. The templates and instructions do not justify additional secrets or unrelated access.
Persistence & Privilege
always:false (default) and the skill does not request persistent system-wide changes or modify other skills. Autonomous invocation is allowed by platform default but is not elevated here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install agent-plan-manager
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /agent-plan-manager 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial public release of agent-plan-manager: - Introduces structured plan management for OpenClaw Agent's execution tasks. - Supports creation, tracking, and breakdown of plans into actionable steps with Markdown files. - Features an agent-centric workflow with status tracking through checkboxes and fields. - Includes templates for overviews, detailed plans, and an index to organize task management. - Provides example usage and best practices for effective execution and documentation.
元数据
Slug agent-plan-manager
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Agent Plan Manager 是什么?

Structured plan management for OpenClaw Agent's tasks and execution workflows. Use when the OpenClaw Agent needs to create, track, or break down execution pl... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 110 次。

如何安装 Agent Plan Manager?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install agent-plan-manager」即可一键安装,无需额外配置。

Agent Plan Manager 是免费的吗?

是的,Agent Plan Manager 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Agent Plan Manager 支持哪些平台?

Agent Plan Manager 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Agent Plan Manager?

由 DaXuan(@wx528)开发并维护,当前版本 v1.0.0。

💬 留言讨论