From productivity-skills
This skill should be used when the user asks to "add to inbox", "capture a thought", "show inbox", "list inbox items", "clear inbox", "remove from inbox", or wants to manage their GTD inbox for capturing thoughts and tasks.
npx claudepluginhub aeghnnsw/cc-toolkit --plugin productivity-skillsThis skill uses the workspace's default tool permissions.
Manage the user's GTD inbox based on their request.
Implements structured self-debugging workflow for AI agent failures: capture errors, diagnose patterns like loops or context overflow, apply contained recoveries, and generate introspection reports.
Monitors deployed URLs for regressions in HTTP status, console errors, performance metrics, content, network, and APIs after deploys, merges, or upgrades.
Provides React and Next.js patterns for component composition, compound components, state management, data fetching, performance optimization, forms, routing, and accessible UIs.
Manage the user's GTD inbox based on their request.
~/.claude/productivity-skills/inbox.mdmkdir -p ~/.claude/productivity-skills# Inbox
Determine the user's intent from their message:
| Intent | Example phrases |
|---|---|
| Add item | "add buy milk", "remember to call John", "capture: review docs" |
| List items | "list", "show", "what's in my inbox", "" (empty = list) |
| Remove item | "remove buy milk", "delete the call item", "done with groceries" |
| Count | "count", "how many items" |
| Clear all | "clear", "empty inbox" |
If unclear, use AskUserQuestion to clarify.
Adding Items:
Check if a semantically similar item already exists
If similar found, use AskUserQuestion: "Similar item exists: '[item]'. Add anyway?" with options "Yes, add it" / "No, skip"
Get current date if item contains time references:
date "+%Y-%m-%d %A"
This returns the date and day of week (e.g., "2026-01-13 Monday") for accurate time calculation.
Convert relative time references to explicit dates before adding:
Examples:
If confirmed or no duplicate, append the converted item to list
Report: "Added '[converted item]' to inbox (N items pending)"
Listing Items:
Removing Items:
Counting: Report: "N items pending"
Clearing:
Follow GTD inbox principles:
Handle errors gracefully: