← Back to Skills Marketplace
wx528

Agent Plan Manager

by DaXuan · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
110
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install agent-plan-manager
Description
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...
README (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
Usage Guidance
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.
Capability Analysis
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).
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install agent-plan-manager
  3. After installation, invoke the skill by name or use /agent-plan-manager
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug agent-plan-manager
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 110 downloads so far.

How do I install Agent Plan Manager?

Run "/install agent-plan-manager" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Agent Plan Manager free?

Yes, Agent Plan Manager is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Agent Plan Manager support?

Agent Plan Manager is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Agent Plan Manager?

It is built and maintained by DaXuan (@wx528); the current version is v1.0.0.

💬 Comments