Help us improve
Share bugs, ideas, or general feedback.
Task lifecycle management — creating, completing, querying, and maintaining GitHub Issues as MEA tasks.
npx claudepluginhub queen-of-code/executive-assistant --plugin moms-executive-assistantHow this skill is triggered — by the user, by Claude, or both
Slash command
/moms-executive-assistant:task-managerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guides execution of all task lifecycle operations: manual creation, completion, querying, and GitHub Issue management.
Routes and creates GitHub issues by matching task descriptions to target repos from a routing config. Checks for duplicates and applies W-labels from weekly planning.
Guides users through task manager setup: pick manager (Linear/Jira/GitHub Issues/Notion), integration method (MCP/CLI/plugin/API), verify, and write helper skill. Part of /process-setup.
Creates sequential tasks with priority, status, due dates in secondbrain's .claude/data/tasks YAML shards. Activates on 'create task', 'add todo', or similar requests.
Share bugs, ideas, or general feedback.
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 |