`issue.store_root` and `_gitea.PAYLOAD_ROOT` were anchored on `__file__`, on
the reasoning that where an installation keeps its files is a fact about the
installation. That holds for an installation and not for a store.
Installed, the plugin therefore resolved every project's issues inside its own
directory — and a plugin cache is versioned, so the store moved on each
update:
~/.claude/plugins/cache/tea/tea/2.0.0/tmp/issues 5 files, 2 origin: local
~/.claude/plugins/cache/tea/tea/2.1.0/tmp/issues 12 files
~/.claude/plugins/cache/claude-skills/tea/2.2.0/ empty, the current one
Issues written from one project were invisible from the next, and an `origin:
local` file — which IS the issue, the only copy — was stranded a version bump
at a time. Two of them were.
The store is a fact about the project, exactly as the login pin is. So the
anchor is now an explicit marker an operator creates, `.tea/`, searched for up
from $CLAUDE_PROJECT_DIR and then cwd — the pin's order, so the two cannot
disagree about which project this is. Inferred markers were tried and are worse
than useless here: `.git` is in every clone including this plugin's own, and
the agents-sync hook writes an AGENTS.md next to every AGENTS.md, so the plugin
root always carried one and cwd never got a turn.
With no marker anywhere, `store_root()` is None and every entry point reports
which directories it searched. A store in a plausible-looking directory is the
failure this replaces, so nothing falls back to one.
- `.tea/` holds the store and the transport's scratchpad: `.tea/issues`,
`.tea/payload`. One marker, one walk, one gitignore line.
- `issue_init.py` creates it, moves an old `tmp/issues` store in rather than
copying, adds `.tea/` to `.gitignore`, and refuses to pick a winner when both
sides hold the same file name.
- A linked worktree has no marker — it is gitignored — and reaches the main
checkout's store by the hop the pin already took.
- `parents`, `gitdir_of` and `main_worktree` move from `pin.py` into the domain
and `pin.py` imports them. The domain depends on nothing, so it is the layer
all three callers can borrow from, and the walk stays written once: the
guard, the transport and the store cannot disagree about a directory.
The suite stopped copying the script layers into its fixtures. That is what hid
this: with the scripts inside the fixture, the installation and the project
were the same directory. They are now deliberately far apart, and a regression
test asserts the plugin tree gains no files when commands run against a project
somewhere else.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
14 KiB
name, description
| name | description |
|---|---|
| issue | Work with this project's issues as units of work — create, read, grep, validate, and walk their dependency graph. Entirely offline; issues are local markdown files and need no tracker. Load when the user asks to file/create an issue, read or find issues, check an issue against the format, or see what depends on what. For pushing to or pulling from Gitea, load /tea:sync instead. |
/tea:issue — issues as units of work
An issue is a markdown file in .tea/issues/. This skill covers everything you
do with an issue: writing one, reading one, checking it against the
canonical format, and walking the dependency graph.
Nothing here touches the network. No tea, no Gitea, no login. An issue
that lives only on this machine is a first-class issue, not a draft waiting to
be uploaded. Synchronizing with a tracker is a separate, optional layer —
/tea:sync.
Read references/format.md before creating or editing
an issue. It is the single source of truth for identity, metadata, types,
labels, templates, and language rules.
Identity: the slug
The file name is the id and the id is a slug — .tea/issues/wire-sqlc-appclick.md.
It never changes, not when the title changes and not when the issue is pushed
somewhere. Tracker numbers live in a metadata field (gitea: owner/repo#42),
never in a file name and never in depends:.
Consequence worth internalizing: #42 means nothing in this layer. Refer to
issues by id.
Scripts
All offline, all in <skill-base-dir>/scripts/.
| Script | What it does |
|---|---|
issue_init.py [--at DIR] [--dry-run] |
make a directory a project: create .tea/, migrate an old tmp/issues store in, add .tea/ to .gitignore. Idempotent |
issue_new.py --type T --title "…" |
create .tea/issues/<slug>.md from the type's template |
issue_check.py [id…] |
validate against the canonical format; exit 1 on errors |
issue_ac.py <id> [--check N|TEXT] |
list the body's checkboxes; tick or untick one |
issue_tree.py [id…] |
draw the dependency graph from depends: |
issue_evict.py [id…] [--dry-run] |
remove closed issues from the store; never an origin: local one |
issue_index.py |
rebuild .tea/issues/INDEX.md |
issue.py |
the domain module the others import — not a command |
.tea/issues/INDEX.md table of every issue — read this first
.tea/issues/wire-sqlc-appclick.md metadata block + `# Title` + body
.tea/issues/wire-sqlc.comments.md comment thread (written by /tea:sync only)
.tea/issues/tree-<id>.md saved graph (issue_tree.py --write)
Where the store is
<project root>/.tea/issues — not .tea/issues relative to wherever you
are standing. The project root is the nearest directory up from where you are
that holds a .tea/ marker: the scripts walk up from $CLAUDE_PROJECT_DIR,
then from the current directory. So they all see one store no matter which
subdirectory you run them from, and a cd earlier in the session changes
nothing — while a cd into a different project correctly gets that project's
issues.
A project has a store because somebody ran issue_init.py in it. The
marker is never inferred from the tree: .git is in every clone including this
plugin's own, and inferring from one is how an installed plugin came to keep
other projects' issues inside its own cache directory.
With no marker anywhere, every command stops and says so, naming the directories it searched. It does not fall back to a plausible directory. If you see that message, either you are not in the project you think you are, or the project has not been initialized — run:
python3 <skill-base-dir>/scripts/issue_init.py
In a git worktree, do not initialize. .tea/ is gitignored, so a worktree
never has one; the scripts reach the main checkout's store on their own, the
same way the login pin does. Initializing there gives one project two stores,
and the second one is deleted with the branch.
--out overrides all of it and is taken literally: an absolute path is
used as given, a relative one stays relative to the current directory. Nothing
rewrites what you typed.
Two things follow, and both are deliberate:
- A store that is not there reports
does not exist; a store with no issues in it reportsis empty. They are different problems. - No script conjures a store as a side effect of writing. Only
issue_new.pycreates one — the first issue in a fresh checkout — and it says so on stderr.
Reading: grep, don't parse
Metadata is one field per line with inline lists precisely so plain grep
works. INDEX.md first, then the files:
grep -l 'labels:.*type/bug' .tea/issues/*.md # all bugs
grep -l 'origin: local' .tea/issues/*.md # never pushed anywhere
grep -ln 'depends:.*migrate-schema' .tea/issues/*.md # who depends on it
grep -A3 '## Acceptance criteria' .tea/issues/wire-*.md
grep -c '^- \[ \]' .tea/issues/wire-sqlc-appclick.md # open checkboxes
Read whole files only for the issues the task actually needs.
Creating an issue
- Read the format:
references/format.md. - Pick the type —
bug,task,refactor,test,feature(a container for several issues with one business value), ordraft(an idea not ready for work). If it is not obvious from the request, ask the user (one question). - Scaffold it:
English imperative title with no type prefix;
python3 <skill-base-dir>/scripts/issue_new.py \ --type task --title "Wire sqlc into the appclick repo layer" \ --label tech/sql --label comp/appclick --depends migrate-schema--dependstakes ids. - Fill the sections with Edit — every section of the template present and
in order, headers English, prose Russian.
## Specgets a repo path, a URL, or the literalnone; ask the user if you cannot determine which. - Check it:
python3 <skill-base-dir>/scripts/issue_check.py wire-sqlc-appclick
One file = one issue. Several related issues = several files, linked through
depends:.
The issue is now real and complete. Publishing it to Gitea is a separate
decision — /tea:sync — and does not change the file's status here.
Editing an issue
Edit the file. Change state: to close it, edit labels:, add ids to
depends:. Re-run issue_check.py afterwards, and issue_index.py to refresh
the table. Checkboxes are the exception — use issue_ac.py, below.
If the issue is synced (origin: gitea), the file is a working copy: your edit
is local until you run push.py --update from /tea:sync, and that push
deletes the file once Gitea has it. Closing one of those is close.py from
/tea:sync — it moves the state on both sides in a single run; editing
state: here alone would only ever tell this machine. Nothing tracks drift, and with one copy
at a time there is little to track — a file that is still here has not been
pushed. Get it back with pull.py <n>; the slug does not change.
Ticking checkboxes
A checkbox is the one part of a body that is state and not prose, so it has a command of its own. Never rewrite a body just to tick a box: the rewrite re-flows lines and re-words sentences, and the issue's diff swells around a change that means one character.
python3 <skill-base-dir>/scripts/issue_ac.py wire-sqlc-appclick
python3 <skill-base-dir>/scripts/issue_ac.py wire-sqlc-appclick --check 3
python3 <skill-base-dir>/scripts/issue_ac.py wire-sqlc-appclick --check "регресс"
python3 <skill-base-dir>/scripts/issue_ac.py wire-sqlc-appclick --uncheck 3
With no flag it prints the numbered list with each item's state, grouped by the
heading the item sits under. --check / --uncheck take that number or a
substring of the item's text (case-insensitive).
- Every checkbox in the body counts, not just
## Acceptance criteria. Atype/featurekeeps its children as checkboxes under## Issues, and they are numbered in the same list. The script is named after the section most boxes live in, nothing more. - A substring must match exactly one item. Two matches is an error that lists them; pick by number instead. It never guesses.
- Exactly one character of the file changes. Metadata, wording, wrapping
and trailing whitespace all come back byte for byte, so
git diffand the tracker's diff show the tick and nothing else. - Examples inside a ``` fence are markup, not state — they are skipped.
INDEX.mdgains aprogresscolumn (3/7, blank when the issue has no boxes), recomputed from the body on every build and stored in no field.issue_ac.pyrebuilds the index after a successful tick.
Getting the tick to the tracker is a separate step — push.py --update in
/tea:sync.
Writing a proper description
Issues get filed on the run — "comments aren't pulled", "the guard broke".
That is a request, not a statement of work: no reproduction steps, no
path/file:line, acceptance criteria nobody can check. Rewriting one into the
canonical format is a procedure, not improvisation.
-
Read the issue whole, and everything it points at — the ids in
depends:, the## Spectarget, the files it names. -
Determine the type and its template. The
type/*label selects one of the templates inreferences/format.md, and that template's section list is the shape you are aiming at. If the label is missing or wrong, decide it now and fixlabels:; promoting atype/draftto a concrete type is this same step. -
Locate the anchor points in the code. Grep the repo for every file, symbol, command, and error string the issue mentions, until you can name lines:
grep -rn 'GITEA_LOGIN' hooks/ skills/Work that does not exist yet still has anchor points — the files the change will land in, and the ones that will call it.
-
Gather the missing context. What has to be there when you are done:
- code references in the
path/file.ext:lineform, for every place the change lands; - reproduction steps — exact commands and their real output (
type/bugsplits them across## Steps to reproduce/## Expected/## Actual); - acceptance criteria that are objectively checkable: a command that exits 0, a file that exists, a section that is present — not aspirations;
- a real value for
## Spec— a repo path, a URL, or the literalnone.
A missing fact is either found in the repository or becomes a question to the user. Inventing one is forbidden. Ask in one batch, and keep
nonein## Specas the legitimate answer it is — never a plausible-looking link. - code references in the
-
Rewrite the sections with Edit: every section of the template, in the template's order, English headers and Russian prose. Replace the body; do not append a second telling of the same issue below the old one.
-
Check it:
python3 <skill-base-dir>/scripts/issue_check.py wire-sqlc-appclickErrors mean malformed, warnings mean the type's template is not fully filled in. Re-run
issue_index.pyif the labels changed.
The procedure is identical for origin: local and origin: gitea — it works
on .tea/issues/<id>.md, and this layer does not know the difference. Getting
the rewritten body into the tracker is a separate decision — push.py --update
in /tea:sync — and is no part of this.
Evicting closed issues
The store is a working set, not an archive. A closed issue is not a unit of
work any more, and one command takes it out — no rm, no rebuilding INDEX.md
by hand:
python3 <skill-base-dir>/scripts/issue_evict.py --dry-run # what would go
python3 <skill-base-dir>/scripts/issue_evict.py # every closed one
python3 <skill-base-dir>/scripts/issue_evict.py old-thing # just this one
Two conditions, both read off the file, and the second one is the whole safety argument:
state: |
origin: |
what eviction does |
|---|---|---|
closed |
a tracker | removes <id>.md and every sidecar under that slug |
closed |
local |
keeps it, always, and says why |
open |
anything | keeps it |
origin: local is never evicted, in any state, not even when you name it on
the command line. That file is the issue; there is no copy to fetch back.
Only a file whose own metadata says the work lives somewhere else may go — the
same trade push.py makes when it drops a file the tracker just confirmed.
--dry-runprints what would go and writes nothing at all,INDEX.mdincluded.INDEX.mdis rebuilt afterwards, so the table and the directory agree. It is rebuilt only when something was actually removed..remote.jsonis not pruned, deliberately: it is the number → slug ledger, and its entries are supposed to outlive the files they name (that is what makespull.py <n>land on the same slug after a push). An evicted issue is in exactly the state a pushed one is.- This is not a one-off migration.
pull.py <n>fetches an issue in any state — a number is an address, not a query — so a closed issue pulled after an eviction lands on disk again. Not a regression: evict it again when you are done reading it.
This command is offline and decides from state: in the file, which is only as
fresh as the last pull. To have the tracker's answer instead — an issue closed
in the web UI five minutes ago — use /tea:sync's evict.py, which refreshes
state: first and then calls exactly this decision.
Dependency graph
depends: is the authoritative edge list; the body's ## Depends on section
is prose for humans. issue_check.py warns when they disagree.
python3 <skill-base-dir>/scripts/issue_tree.py # all roots
python3 <skill-base-dir>/scripts/issue_tree.py wire-sqlc-appclick --write
A type/feature plus its children read as one document: draw the tree once for
the shape, then grep the files.
Layering rule
This skill must keep working with skills/sync/ deleted. Every import under
scripts/ is stdlib, and subprocess is not among them:
grep -rhn '^import\|^from' skills/issue/scripts/ | sort -u
If you find yourself wanting a tracker concept here — an issue number, a login,
an HTTP call — it belongs in /tea:sync.