Task lifecycle management — creating, completing, querying, and maintaining GitHub Issues as MEA tasks.
npx claudepluginhub queen-of-code/executive-assistant --plugin moms-executive-assistantThis skill uses the workspace's default tool permissions.
Guides execution of all task lifecycle operations: manual creation, completion, querying, and GitHub Issue management.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Automates semantic versioning and release workflow for Claude Code plugins: bumps versions in package.json, marketplace.json, plugin.json; verifies builds; creates git tags, GitHub releases, changelogs.
Guides execution of all task lifecycle operations: manual creation, completion, querying, and GitHub Issue management.
/add-task)source/manual + any obvious domain hints from keywords{ description, dueDate, domain, people, isWaitingOn }person/ tags if they're in the config's known personsstatus/waiting-on if waiting-on language detectedtime/has-due-date if a due date was extractedlib/github-adapter.ts createIssue()[task description]
---
**Source:** manual
**Created via:** /add-task
**Due:** [date if extracted]
/done)lib/github-adapter.ts listIssues({ state: "open" })lib/fuzzy-match.ts matchIssue(query, issues)lib/github-adapter.ts closeIssue(issueNumber)When creating issues, always call ensureLabelsExist(labels) before createIssue(). This creates any missing labels in the GitHub repo with dimension-based colors. It's idempotent — safe to call every time.
| Dimension prefix | Color |
|---|---|
domain/ | Blue #0075ca |
source/ | Yellow #e4e669 |
type/ | Orange #d93f0b |
urgency/ | Red #b60205 |
time/ | Green #0e8a16 |
person/ | Purple #5319e7 |
status/ | Pink #f9d0c4 |
mailbox/ | Light green #c2e0c6 |