docs-wg
Doctrine for drafting and keeping working-group docs under `docs/wg/**` — RFC/RFD specs and findings/research/glossary. A WG doc is a language-agnostic, code-agnostic study of a domain: it argues *why* and defines *what*, never *how in our code*. Use when writing or editing anything under `docs/wg/`, an RFC/RFD, a spec, a design note, a glossary, or research findings — including "write up the design", "document the spec", or "capture what we learned". Not for plans/TODOs (untracked `*.plan.md`), user docs, or SDK API refs — use `docs` to route those.
适合你,如果你需要编写或整理工作组的技术文档和规范
npx oh-my-skill add gridaco/grida/docs-wgcurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- gridaco/grida/docs-wgnpx oh-my-skill verify gridaco/grida/docs-wg怎么用
技能原文 SKILL.md
WG docs
Working-group docs are where Grida reasons about a problem before and above any one implementation. A good WG doc could be handed to someone rebuilding the feature in a different language, on a different stack, in a different decade, and still be the right starting point. That is the bar.
The reason WG docs are code-agnostic is not stylistic. Code moves; a file path or a function name is stale within months, and a doc anchored to it rots into a lie. A doc anchored to the _domain_ — the problem, the spec, the why — stays true as long as the problem does. You are writing the thing that outlives the code.
This skill is the doctrine. Operational mechanics (frontmatter, format: md, draft/unlisted/doc_tasks, the sync model) live in [docs/AGENTS.md](../../../docs/AGENTS.md) — read it once. For _reading_ the WG tree before you edit, use [grounding](../grounding/SKILL.md).
The two genres
A WG doc is almost always one of these. Name which before you draft — they have different shapes.
1. RFC / RFD — spec
A specification of _what a feature or system is_ and _why it is that way_. Spec-rich. It defines vocabulary, states constraints and invariants, and argues the design tradeoffs. It reads like a standards document, not like a code comment.
- A model, not an explanation. The strongest specs are _models_ — a canonical vocabulary, a small generating rule or set of invariants, contract tables, and conformance clauses — the kind of thing a second implementer runs in their head. A doc that _explains the code_ has the arrow backwards: the code conforms to the spec, never the reverse. Prose justifies the model; it does not substitute for it.
- Covers why and what. The motivation, the requirements, the model, the chosen design and the alternatives rejected (and why).
- No code-level implementation detail. Describe the behavior and the contract, not the functions that will realize them. If you find yourself naming a struct or a file, you have dropped from spec altitude into implementation — climb back up.
- Language- and stack-agnostic. Express the model in terms a second implementer could honor, not in terms of the current one.
2. Findings / research / glossary
Grounded, concise domain knowledge — what is _true_ about the problem space. A glossary that pins down vocabulary; findings that record what a study established; research that surveys how the domain is understood.
- Always factual and grounded. Every claim traceable to a spec, a standard, or a demonstrated result — not to a hunch or a memory.
- Concise and managed. This is reference material; it earns its keep by being correct and findable, not long.
- Domain-first. It studies the _problem_, not Grida's solution to it.
The dedicated upstream-survey subtree is docs/wg/research/**, and
it has its own stricter rules (pure survey, Grida absent from the body). When writing there, use [research](../research/SKILL.md) — it governs
that subtree specifically. This skill governs the broader WG surface.
Name the genre — and don't let one wear another's costume. A cluster also collects legitimate non-spec artifacts: methodology, a decision record, an inventory, an RFD (a design proposal still under discussion). Each is fine — but it must _say what it is_. An inventory or a decision-memo dressed as a normative spec, numbered with "contracts" it cannot enforce, misleads everyone who tries to conform to it. If a doc is not a model, label it and drop the costume.
What a good WG doc is
- Clear and well-researched — the reader trusts it because it shows its grounding.
- Always factual; agnostic spec; language-agnostic — true regardless of who implements it or in what.
- A deep study and a starting place — the canonical entry point for understanding a feature or spec, covering _why_ and _what_.
- A manifesto / doctrine when that is what the topic needs — a WG doc may take a position and argue it. Taking a stance is allowed; the stance must rest on fact.
What a bad WG doc is
These are not style nits — each one is the doc rotting or pointing the reader wrong:
- References specific parts of the code. File paths, function names, line numbers. They date the doc and pull it down to implementation altitude. Describe the contract, not the call site.
- References an external project as the model. A WG doc studies the _domain_, not some other project's take on it. Citing "how library X does it" smuggles a foreign implementation in as if it were the spec.
- Exception: domain reference standards. Citing a de-facto standard or reference implementation of the _domain itself_ is fine and often necessary — Chromium and the W3C/WHATWG specs for web rendering, for example, _are_ the domain. The test: are you citing the standard, or a project's opinion? Dedicated surveys of such sources belong in
docs/wg/research/**under [research](../research/SKILL.md). - Dirty plans / TODO sprawl. Scattered "TODO: fix this later" and half-formed task lists turn a reference into a scratchpad. Keep the doc a clean statement of what is true and intended.
What is NOT a WG doc at all
These do not belong under docs/wg/ in any form. They are a different kind of artifact:
- Plans. Implementation plans live in
*.plan.mdfiles, which are gitignored on purpose ([.gitignore](../../../.gitignore)) — they are working scratch, not committed knowledge. A plan is about _the work_; a WG doc is about _the thing_. - TODO lists. Tracked work belongs in issues/PRs, not in a doc.
- Conversational logs / history / decision diaries. "On Tuesday we decided…" is process, not knowledge. Historical snapshots that must be kept go under a
_history/folder markedunlisted: true(see [docs/AGENTS.md](../../../docs/AGENTS.md)), never in the live spec. - Implementation-binding specs. A spec that binds a universal contract to _one_ codebase — the concrete data an undo entry is, this build's default keymap, the mapping from contracts to running code — is code-specific by nature. It belongs _with the code_ (a
docs/folder in the package or crate, next to what it binds), not underdocs/wg. The WG tree stays code-agnostic; the binding lives where it can name files honestly and move with them.
The throughline: a WG doc states what is true and what is intended, in domain terms, for a reader who arrives cold. Anything that is _about the work_ rather than _about the thing_ is a different artifact.
One concept, one home
Where a doc lives is a design decision, not filing — and the WG tree only stays honest as it grows if three rules hold.
- A universal concept gets exactly one home. A concept true of any implementation — selection, undo, snapping — is specified once, in the cluster that owns the _domain_, and never re-homed per consumer. Two clusters specifying "selection" under their own names is a smell: the second is either duplication to delete or a _delta_ that should defer (below). Name the home at the domain's natural scope, not an over-broad umbrella: an "editor" cluster that quietly means the canvas editor is misnamed —
canvasis the honest home. (See [naming](../naming/SKILL.md).) - Defer to the golden doc; spec only the delta. When a doc leans on a concept another doc owns, it _references_ the owner and specifies only what it adds — it never restates the model. A disciplined delta ("the golden spec owns the pointer routing; this owns the resolution math") is not duplication; a restatement that drifts is. The test: could you delete the section and replace it with a link without losing anything? If yes, do.
- Tone drives placement. When a concept turns deeply technical — a convergence model, an undo-as-data study — that depth earns a _dedicated study_, and the application-facing home _points to_ it rather than swallowing it. The home reads at application altitude and links out; the study is the source of truth and stays as pedantic as it needs to be. Splitting by tone keeps the home approachable and the study rigorous, each at its register.
Placement and upkeep
- WG docs live in topic clusters:
docs/wg/feat-*/,docs/wg/format/,docs/wg/platform/,docs/wg/ai/, and surveys indocs/wg/research/. Put the doc in the cluster that owns its topic; create a newfeat-<topic>/cluster when none fits (consult [naming](../naming/SKILL.md) for the cluster name). - Most clusters have an
index.mdhub. When you add a doc, update the hub so the cluster stays navigable — an orphaned doc is an unfindable doc. - Frontmatter (per [
docs/AGENTS.md](../../../docs/AGENTS.md)):title, adescription,tags: [internal, wg, <topic>…]drawn from the controlled vocabulary in [docs/tags.yml](../../../docs/tags.yml), andformat: mdfor plain-Markdown pages (the MDX-safety opt-out). - Links follow the [
links](../links/SKILL.md) skill: relative within/docs, GitHub-absolute for anything outside/docs, universal/_/routes for "open in the product."
Before you save — review
- [ ] Could a second implementer in another language honor this doc without reading our code? If not, you have implementation detail to remove.
- [ ] Search the draft for file paths, function/struct names,
crates/,editor/,packages/. Each match must justify itself — usually by being lifted to a domain-level statement. - [ ] Any external project cited as _the model_ rather than as a domain standard? Reframe to the domain, or move a genuine survey to
research/. - [ ] Any
TODO, plan fragment, or "we decided on <date>"? Remove it — it belongs in a plan, an issue, or_history/. - [ ] Is this a _model_ (vocabulary, a generating rule, contracts) or prose explaining code? If prose, lift it to a model — or, if it is genuinely a non-spec genre, label it honestly.
- [ ] Does any section restate a concept another doc owns? Defer and keep only the delta. Is this the _one_ home for its concept, named at the domain's scope, with deep material split into a study it points to?
- [ ] Did you update the cluster
index.md?
Related skills
[docs](../docs/SKILL.md) (the family router — start there if unsure this is even a WG doc), [research](../research/SKILL.md) (the research/ upstream-survey subtree), [grounding](../grounding/SKILL.md) (read and reconcile before editing), [links](../links/SKILL.md), [naming](../naming/SKILL.md) (cluster and concept names). Operational mechanics: [docs/AGENTS.md](../../../docs/AGENTS.md).