planning
v3.10.2Structured implementation planning, interactive annotation review, and autonomous plan execution
By UmputunLicense: MIT469 GitHub starsUpdated 2 weeks ago
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 1 skill or MCP entry
- Source updated
- Sep 8, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install planning for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install planning@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/umputun/cc-thingzClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/planning/.
Plugin files
├── .claude-plugin/plugin.json└── skills/exec/SKILL.md
Included Skills1
Execute plan tasks sequentially using subagents. Use when user says 'exec', 'execute plan', 'run plan', or wants to implement a plan file task by task with isolated subagents.
Plugin manifests1
{
"name": "planning",
"description": "Structured implementation planning, interactive annotation review, and autonomous plan execution",
"version": "3.10.2",
"author": {
"name": "Umputun"
},
"homepage": "https://github.com/umputun/cc-thingz",
"repository": "https://github.com/umputun/cc-thingz",
"license": "MIT",
"userConfig": {
"external_review_cmd": {
"title": "External review command",
"type": "string",
"description": "Command for external code review tool. The prompt is appended as the final argument; findings go to stdout tagged CRITICAL/MAJOR/MINOR. Leave empty to use codex.",
"default": ""
},
"task_retries": {
"title": "Task retries",
"type": "number",
"description": "Number of retries for failed tasks before stopping.",
"default": 1
},
"review_iterations": {
"title": "Review iterations",
"type": "number",
"description": "Max fix-and-recheck cycles during internal review.",
"default": 5
},
"external_review_iterations": {
"title": "External review iterations",
"type": "number",
"description": "Max iterations for external review adversarial loop. The loop exits early once an iteration finds no critical/major issues.",
"default": 10
},
"finalize_enabled": {
"title": "Enable finalize",
"type": "boolean",
"description": "Whether to run the finalize phase (rebase and squash commits).",
"default": true
},
"plans_dir": {
"title": "Plans directory",
"type": "string",
"description": "Directory where plan files are located, relative to project root.",
"default": "docs/plans"
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[planning on Agent Plugins Marketplace](https://pluginsmp.com/plugins/planning)