creator-productivitylisted
Install: claude install-skill frankxai/claude-skills-library
# Creator Productivity
Structured task management and memory for creative work — projects don't slip, context doesn't reset.
## Architecture
```
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/`.
## Task Management
### TASKS.md Format
```markdown
# 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:**
- Bold the title for scannability
- Include enough context to work without re-explaining
- Move to Done immediately on completion, not "later"
- Archive Done section weekly (move to `creator-memory/content/archive.md`)
### Task capture from conversation
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:
-