From product-wiki
Use before editing, adding, or reconciling any wiki page under docs/wiki/. Trigger when the agent mentions "editing a wiki page", "adding a wiki entry", "wiki conventions", "docs/wiki", "wiki frontmatter", "wiki link rule", "reconciling wiki", "wiki status conflict", or is about to Write/Edit a file under docs/wiki/.
How this skill is triggered — by the user, by Claude, or both
Slash command
/product-wiki:wiki-conventionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Authoritative rules every wiki edit MUST satisfy. Full schema lives in `docs/wiki/schema.md` — consult it for field semantics, allowed enums, and page taxonomy.
Authoritative rules every wiki edit MUST satisfy. Full schema lives in docs/wiki/schema.md — consult it for field semantics, allowed enums, and page taxonomy.
Every page under docs/wiki/ starts with:
---
type: concept # one of: concept | entity | flow | decision | glossary
raw_sources: # files this page was distilled from (relative paths)
- src/app/(dashboard)/orders/page.tsx
- prisma/schema.prisma
related: # other wiki pages, relative markdown links
- ../entities/order.md
- ../flows/checkout.md
last_reconciled: 2026-04-17 # ISO date of the last time sources were re-checked
status: stable # one of: draft | stable | stale | conflict
---
Missing or malformed frontmatter = reject the edit. See docs/wiki/schema.md for the full field spec.
../flows/checkout.md), never absolute, never bare slugs.related, page B MUST list A in its related. Before saving, open the other side and add the back-link.Update an existing page when:
docs/wiki/ by title and by raw_sources overlap).Create a new page when:
related fan-out).When in doubt: update. Small pages sprawl.
NEVER silently overwrite existing content. If new information contradicts what is on the page:
## ⚠ Conflict
- **Existing claim**: <quote from page>, sourced from <file>.
- **New claim**: <your finding>, sourced from <file>.
- **Observed**: <ISO date>
- **Needs human review.**
status: conflict and update last_reconciled.Wiki agents edit ONLY files under docs/wiki/. Do NOT modify:
src/** — application codeprisma/** — schema and migrationsdocs/eis/** — executable implementation specsdocs/reference/** — reference materialdocs/*.md — curated root docsThese are raw sources. The wiki distills them; it does not mutate them.
For full spec, read docs/wiki/schema.md.
npx claudepluginhub esxr/marketplace --plugin product-wikiGuides test-driven development for Django applications using pytest-django, factory_boy, and Django REST Framework. Covers red-green-refactor workflow, conftest fixtures, and coverage reporting.