{{ project }} work
The single hub for ongoing {{ project }} work: issues, ideas, open PRs, and session-to-session state, shared by every agent session and person that touches it. It is a memory surface, not a runbook: this skill records what is happening and what comes next; the work itself happens in your repo, your tools, and your data.
This body is a thin index. Don't grow it: new detail goes in a bundled file, and the body only gains a pointer.
First time here? Read SETUP.md and work through it. Delete it when done.
When resuming a session
- Read
HANDOVER.md: scan the Active workstreams table, then read only the section(s) your task touches. - Read
issues/README.mdfor the backlog at a glance. - Pull
ideas/README.md,open-prs.md, orroadmap.mdonly if the task touches them, andenvironment-notes.mdbefore you run or query anything.
Logging work (the core job)
- Issue (bug, task, anything actionable) → new
issues/NN-short-slug.md(next free NN) plus a line inissues/README.md. - Idea (feature, improvement, someday/maybe) → new
ideas/NN-short-slug.mdplus a line inideas/README.md. Promote to an issue when picked up. - Field signal (what a user or customer actually said) → a dated block in
field-feedback.md, newest first. Link the source; keep only the bullets that would change what you build. - PR →
open-prs.mdwhile open (title and number, never a bare number); remove on merge with aCHANGELOG.mdline. - Any meaningful change → one line in
CHANGELOG.mdunder today's date. It is a rolling {{ window_days }}-day window: trim entries older than that as you append. If a line wants a second sentence, that sentence belongs in the owning issue, idea, or notes file. - End of session → overwrite your own section of
HANDOVER.md. One##section per active workstream; never touch another session's section; delete yours when the work lands.
Where does this fact go?
| Still true in 30 days? | Has an owner who refreshes it? | Goes in |
|---|---|---|
| Yes | Yes, a tracked work item | issues/NN or ideas/NN |
| Yes | No, durable reference | environment-notes.md or a references/ file |
| No, but in flight right now | You, this session | your HANDOVER.md section |
| No, it just happened | Nobody | CHANGELOG.md, one line |
Ask in that order. The commonest failure is durable detail written into the changelog because the changelog is the file you were already editing.
Files
| File | Read or update when |
|---|---|
SETUP.md |
First session only. Delete it once the checklist is done. |
HANDOVER.md |
First on resume. Overwrite your workstream's section at end of session, never another's. |
issues/README.md |
Backlog index and issue file template. Update on every issue change. |
issues/NN-*.md |
One file per issue. |
ideas/README.md |
Ideas index and template. One file per idea, ideas/NN-*.md. |
open-prs.md |
A PR opens or merges. Re-audit against GitHub whenever a session touches PRs. |
environment-notes.md |
Durable gotchas: code paths, dashboards, query pitfalls, tool quirks. Never clobbered. |
field-feedback.md |
What users and customers say. Dated blocks, newest first. |
roadmap.md |
Themes, ordering, open decisions. Rationale only: status stays in issues/README.md. |
CHANGELOG.md |
One line per meaningful change; rolling {{ window_days }}-day window. |
references/how-posthog-uses-this.md |
You want to see the pattern in use: the two internal hubs it was lifted from, a session walkthrough, and what broke before these rules existed. |
Pull a file with call skill-file-get {"skill_name": "<this skill's name>", "file_path": "<file>"} over the PostHog MCP.
Companions (link, don't duplicate)
skills-best-practices(community skills store): the house patterns this layout follows, the Agent Skills spec checklist, and the write mechanics for editing store skills without losing content. Read it before restructuring this skill.working-with-skillsandskills-store(ship with the PostHog MCP): the rawskill-*tool surface.- Sibling hubs: when a second area of work needs its own hub, install
project-templateagain under another name and cross-link the two here. One hub per area beats one hub that covers everything.
Posture
Tracking and memory surface only. Change code in the repo, run queries with the query tools, change configuration where it lives. This skill records the outcome and the next step.
Maintaining this skill
- Keep this body thin. New conventions or reference detail go in a bundled file.
- Use the smallest edit primitive (
editsorfile_editsonskill-update), chainingbase_versionbetween writes. A full-body rewrite for a one-line change silently drops content. - Every meaningful edit gets a one-line
CHANGELOG.mdentry, and every changelog write also trims the window. - Every session ends with your own
HANDOVER.mdsection refreshed, or deleted if the work landed. - Durable reference never goes in
HANDOVER.md: nobody owns it there, so nobody prunes it. Put it inenvironment-notes.mdor a new bundled file.