Install
openclaw skills install agent-plan-managerStructured plan management for OpenClaw Agent's tasks and execution workflows. Use when the OpenClaw Agent needs to create, track, or break down execution plans into actionable steps.
openclaw skills install agent-plan-managerManage OpenClaw Agent's execution plans and task workflows in a structured, trackable way.
Who is it for? OpenClaw Agent that needs to organize tasks, track execution progress, or document step-by-step implementation plans.
What makes it different?
plans/plans-overview.md from the overview templateplans/detailed/XX-{plan-name}.mdplans/detailed/index.md to link the new planplans/
├── plans-overview.md ← from templates/plans-overview.md
└── detailed/
├── index.md ← from templates/index.md
└── XX-{plan-name}.md ← from templates/detailed-plan.md
Step 1 — Add to plans/plans-overview.md:
| 1 ||***|| Web scraping for product prices ||***|| In Progress ||***|| High ||***|| TBD ||***|| TBD ||***|| Extract prices from example.com |
Step 2 — Create plans/detailed/01-web-scraping.md:
# Detailed Plan - Web Scraping for Product Prices
## Plan ID: #1
## Objective
Extract product prices from example.com and save to a CSV file.
## Schedule
TBD
## Deadline
TBD
## Tool Sequence
1. `browser_navigate` → example.com/products
2. `browser_snapshot` → extract product list
3. `browser_click` → navigate to each product
4. `WriteFile` → save results to products.csv
## Implementation Steps
### 1. Navigate to target URL
- [x] Use browser_navigate to load example.com/products
### 2. Extract product data
- [ ] Capture page snapshot
- [ ] Parse product names and prices
- [ ] Handle pagination if present
### 3. Save results
- [ ] Format data as CSV
- [ ] Write to products.csv
## Estimated Token Usage
~2K tokens
Step 3 — Update plans/detailed/index.md:
| #1 | Web scraping for product prices | TBD | TBD | [01-web-scraping.md](./detailed/01-web-scraping.md) |
All templates live in templates/:
plans-overview.md — High-level execution board with status tableindex.md — Index of all detailed execution plansdetailed-plan.md — Step-by-step execution plan with tool sequences01-web-scraping.md)last_updated in frontmatter whenever the overview changes- [ ]) in detailed plans to track execution progress