Help us improve
Share bugs, ideas, or general feedback.
From gtd
Appends dated tasks to GTD inbox Markdown file under ### New section via /capture CLI or natural language like 'add buy milk to inbox'. Uses Read/Edit tools.
npx claudepluginhub digital-stoic-org/agent-skills --plugin gtdHow this skill is triggered — by the user, by Claude, or both
Slash command
/gtd:capturehaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fast append to inbox. No priority, no routing — just capture.
Routes GTD tasks directly to project Markdown files via <item> → <target> #tags, globbing folders, and editing 01-*.md to insert dated tasks into Next, Waiting For, or Backlog sections.
Creates tasks or sections in TASKS.md to track project work. Auto-triggers on phrases like 'add a task', 'todo', 'let's plan', or untracked future work.
Manages Obsidian tasks via official CLI: lists open tasks across vault, creates tasks in notes, marks tasks complete by ID. Useful for todo and checklist operations.
Share bugs, ideas, or general feedback.
Fast append to inbox. No priority, no routing — just capture.
$ARGUMENTS as item text/home/mat/dev/gtd-pcm/01-inbox.md### New section- <item> [created:: YYYY-MM-DD] after section header (newest first), using today's actual dateStep 1: Read /home/mat/dev/gtd-pcm/01-inbox.md
Step 2: Find ### New section in the file
Step 3: Get today's date (use Bash: date +%Y-%m-%d)
Step 4: Use Edit tool to insert new item:
### New (exactly as it appears in file)### New\n- <item text from $ARGUMENTS> [created:: YYYY-MM-DD] (substitute real date)Insert position: After ### New header, before any existing items (newest first).
Example:
Before:
### New
### Prio 1
After capture "buy milk":
### New
- buy milk [created:: 2026-02-23]
### Prio 1
Direct invocation:
/gtd:capture buy milk/gtd:capture call John about projectNatural language (auto-invoked):
File not found: If inbox doesn't exist, report error and suggest checking vault path.
Section not found: If ### New section missing, report error and suggest running setup.
Edit conflict: If Edit tool fails (e.g., concurrent modification), report error and ask user to retry.