Help us improve
Share bugs, ideas, or general feedback.
From composure
Manages tasks-plans/ workspace by adding actionable items to backlog, ideas for exploration, or dated references. Organizes files by topic into subfolders, processes queued work via subcommands.
npx claudepluginhub hrconsultnj/claude-plugins --plugin composureHow this skill is triggered — by the user, by Claude, or both
Slash command
/composure:backlogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Manage the `tasks-plans/` workspace. Route content to the right folder, organized by topic.
Organizes markdown task files into folders like tasks/, ideas/, templates/, bugs/ with YAML frontmatter defining types (task, idea, bug), due dates, tags, status. Use when creating or modifying task files.
Multi-project Manus-style planning with coordinator pattern. Supports project switching, separate planning/source paths, and cross-machine sync via git. Creates task_plan.md, findings.md, and progress.md.
Manages tasks, goals, projects, and brain dumps in Mission Control JSON files. Create, update, query entries with kanban status, assign agents, and regenerate AI context.
Share bugs, ideas, or general feedback.
Manage the tasks-plans/ workspace. Route content to the right folder, organized by topic.
tasks-plans/
├── backlog/ ← Actionable work items (each has a start prompt)
├── blueprints/ ← Detailed execution specs (created by /composure:blueprint)
├── archive/ ← Completed blueprints + backlogs
├── ideas/ ← Exploration, not committed to
├── reference/ ← Audits, snapshots, analysis docs
└── tasks.md ← Live session task list (auto-logged by hooks)
When the user says "add to backlog" or you need to persist something, classify it:
| Signal | Folder | Subfolder by topic |
|---|---|---|
| Actionable work, has clear steps, ready to pick up | backlog/ | Group by area: agents/, cortex/, website/, plugins/, etc. |
| Exploration, "what if", not committed, needs research | ideas/ | Flat or by theme — existing convention |
| Audit result, snapshot, analysis, historical data | reference/ | Date-stamped: {topic}-{YYYY-MM-DD}.md |
| Detailed execution plan with per-file specs | blueprints/ | Created by /composure:blueprint, not manually |
| Quick task for this session only | tasks.md | Or use native TaskCreate |
Don't flat-dump. When a folder grows past 5-6 files on the same topic, group into a subfolder:
backlog/
├── agents/
│ └── agent-refinement.md
├── cortex/
│ ├── live-collaboration.md
│ └── token-optimized-routing.md
├── website/
│ └── cortex-hexagon-update.md
├── create-composure-cli.md ← standalone until more CLI items exist
└── memory-consolidation.md ← standalone
Use your judgment. If there's only 1 file on a topic, keep it at the root. When 2-3 accumulate on the same area, create the subfolder and move them.
add <description> — Add to backlogtasks-plans/backlog/{topic}/{slug}.md (or tasks-plans/backlog/{slug}.md if no clear topic group)/composure:blueprint"idea <description> — Add to ideastasks-plans/ideas/{slug}.mdref <description> — Save referencetasks-plans/reference/{slug}-{YYYY-MM-DD}.mdbatch — Process queued tasksProcess tasks from tasks-plans/tasks.md (hook-generated quality violations).
summary — Show what's queuedRead all folders and present a summary:
clean — Archive completed itemsMove completed backlog items and blueprints to archive/.
sync — Load pending tasks into sessionRead backlog items and create TaskCreate entries for the current session.
Load processing steps through the fetch command:
"~/.composure/bin/composure-fetch.mjs" skill composure backlog {step-filename}