ワンクリックで
task-manager
Task lifecycle management — creating, completing, querying, and maintaining GitHub Issues as MEA tasks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Task lifecycle management — creating, completing, querying, and maintaining GitHub Issues as MEA tasks.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Email scanning pipeline — fetches, deduplicates, and classifies emails from all configured Gmail accounts using 3-tier classification, then creates GitHub Issues for actionable items.
Domain onboarding wizard — interviews the user to bootstrap a new life domain with recurring tasks, tags, and email classification rules. Solves the cold-start problem for new domains.
| name | task-manager |
| description | Task lifecycle management — creating, completing, querying, and maintaining GitHub Issues as MEA tasks. |
| type | skill |
| aidlc_phases | ["build"] |
| tags | ["github","issues","tasks","completion","fuzzy-match"] |
| requires | [] |
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 |