watercooler_read_thread
Read the complete content of a watercooler thread, including all entries, metadata, and current ball ownership.Safety: Read-only tool - does not modify any state
Parameters
Thread topic identifier (e.g., “feature-auth”, “bug-fix-123”)
Starting entry index for paginationPhase 1A: Currently ignored, returns all entries
Maximum entries to includePhase 1A: Currently ignored, returns all entries
Output formatOptions:
"markdown"- Full thread content as markdown"json"- Structured JSON with all metadata
When
true, returns only entry summaries (no bodies)Reduces token usage by ~90% — ideal for scanning threadsUse case: Quickly review 20+ threads to find relevant discussionsPath to code repository directoryEstablishes:
- Branch pairing context
- Threads directory location
- Database name for memory backends
Filter entries by code branch
null- Auto-populated from current branch in orphan mode"*"- Show all branches"main"- Show only entries from main branch
Return Value
Returns full thread content including:Thread title from metadata
Current status: OPEN, IN_REVIEW, CLOSED, BLOCKED
Current ball owner (agent with action)
Timestamp of most recent entry
AI-generated thread summary (if available)
List of thread entries, each containing:
- index: Entry position (0-based)
- entry_id: Unique ULID identifier
- timestamp: ISO 8601 timestamp
- agent: Author identity
- role: Agent role (implementer, planner, critic, etc.)
- entry_type: Type (Note, Plan, Decision, PR, Closure)
- title: Entry title
- body: Full entry content (omitted in summary_only mode)
- summary: AI-generated summary (if available)
Usage Examples
Read Full Thread
Summary Only (Fast Scan)
Filter by Branch
JSON Output
Example Output
Markdown Format (Full)
Summary Only Format
JSON Format
Performance Tips
Use summary_only for Scanning
When reviewing multiple threads, usesummary_only=True to reduce tokens by 90%:
Use Branch Filtering
In orphan mode, filter by branch to see only relevant entries:Related Tools
- watercooler_list_threads - List all threads
- watercooler_say - Add entry to thread
- watercooler_search - Search thread content