From 044d6a43a68f1009ca3e06b3b0bcb665f2aabde2 Mon Sep 17 00:00:00 2001 From: vickydotbat Date: Tue, 28 Jul 2026 14:46:25 +0200 Subject: [PATCH] docs(agents): note that tea reads stdin and hangs without --- docs/agents/issue-tracker.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/agents/issue-tracker.md b/docs/agents/issue-tracker.md index f0be865..6c15f20 100644 --- a/docs/agents/issue-tracker.md +++ b/docs/agents/issue-tracker.md @@ -52,7 +52,11 @@ preference — move it. - **Read an issue**: `tea issues ` and `tea api repos/ShadowsOverWestgate/sow-tools/issues//comments` for comments. - **List issues**: `tea issues list --state open` (add `--labels ...` to filter). -- **Comment**: `tea comment "..."` +- **Comment**: `tea comment "..." /labels` endpoints. - **Close**: `tea issues close ` @@ -81,4 +85,4 @@ Used by `/wayfinder`. The **map** is a single issue with **child** issues as tic - **Blocking**: Gitea's **native dependencies API** — the canonical, UI-visible representation (shows as "Depends on" / "Blocks" on the issue page). Add an edge with `tea api -X POST repos/ShadowsOverWestgate/sow-tools/issues//dependencies -f owner=ShadowsOverWestgate -f repo=sow-tools -F index=`, where `` is the blocker's issue **index** (its `#number` — Gitea's dependency API takes the index directly, unlike GitHub's numeric database id). Check status with `tea api repos/ShadowsOverWestgate/sow-tools/issues//dependencies` (GET) — a ticket is unblocked when every returned issue's `state` is `closed`. - **Frontier query**: list the map's open children (`tea issues list --state open`, keep the ones whose description contains `Part of #`), drop any with an open dependency (per the GET above) or an assignee; first in map order wins. - **Claim**: `tea issues edit --add-assignees ` — the session's first write. -- **Resolve**: `tea comment ""`, then `tea issues close `, then append a context pointer (gist + link) to the map's Decisions-so-far. +- **Resolve**: `tea comment "" `, then append a context pointer (gist + link) to the map's Decisions-so-far.