Help us improve
Share bugs, ideas, or general feedback.
Manages TASKS.md, CREATOR.md, and creator-memory/ files for task tracking and persistent context in creative projects. Automatically captures tasks from conversation, supports session start checklists, and weekly maintenance.
npx claudepluginhub frankxai/claude-skills-library --plugin claude-skills-libraryHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-skills-library:creator-productivityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Structured task management and memory for creative work — projects don't slip, context doesn't reset.
Creates and manages task_plan.md, findings.md, and progress.md files for organizing complex multi-step projects. Automatically resumes session state after /clear.
Uses persistent markdown files (task_plan.md, findings.md, progress.md) as working memory on disk, helping Claude maintain context across complex tasks by writing down decisions, discoveries, and progress.
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.
Share bugs, ideas, or general feedback.
Structured task management and memory for creative work — projects don't slip, context doesn't reset.
TASKS.md ← Task board (Active, In Progress, Done)
CREATOR.md ← Working memory (voice, projects, quick-ref)
creator-memory/
voice.md ← Full brand voice documentation
visual.md ← Visual style system
music.md ← Music style and track log
channels.md ← Per-channel content rules
projects/ ← Active project briefs
content/ ← Content catalog (published + drafts)
This two-tier system keeps the hot cache lean (CREATOR.md at ~80 lines) while supporting unlimited depth in creator-memory/.
# Tasks
## Active
- [ ] **[Task title]** — [context, relevant project, deadline if any]
- [Additional detail if needed]
## In Progress
- [ ] **[Task title]** — [started date, blocker if any]
## Done (last 2 weeks)
- [x] ~~[Completed task]~~ ([completion date])
Rules:
creator-memory/content/archive.md)When the user mentions something that should be tracked ("I need to write the Suno launch post", "follow up with the design team"), extract and add it automatically:
Two-tier lookup for every creative request:
User request →
1. Check CREATOR.md (hot cache — covers 90% of daily needs)
2. If not found → creator-memory/ (deep files)
3. If still not found → ask user, then save
Lookup examples:
When beginning a creative session:
Offer weekly (or on request):
If TASKS.md doesn't exist: create with standard template.
If CREATOR.md doesn't exist: offer to run /creator-sprint for full setup, or create minimal version from current conversation context.
See references/file-templates.md for standard file templates.