Inbox banner
davidabeyer davidabeyer

Inbox

Development community

Description

--- description: "View blocked workers and help them continue" allowed-tools: Bash, Read --- # Inbox ## Step 1: Get Blocked Workers ```bash python3 -c " from formaltask.db.path import get_db_path from formaltask.workers.inbox import get_blocked_workers import json db_path = str(get_db_path()) workers = get_blocked_workers(db_path) print(json.dumps(workers, indent=2)) " ``` Returns: `task_id`, `task_title`, `pending_question`, `blocked_summary`, `age_seconds` ## Step 2: Display No workers →

Installation

Installs to ~/.claude/skills/davidabeyer-formaltask-inbox/SKILL.md

Terminal
mkdir -p ~/.claude/skills/davidabeyer-formaltask-inbox && curl -fsSL https://raw.githubusercontent.com/davidabeyer/formaltask/HEAD/commands/inbox.md -o ~/.claude/skills/davidabeyer-formaltask-inbox/SKILL.md

Restart Claude Code, or start a new session, for it to be picked up.

Full documentation available on GitHub

View Source Repository