Entity: ADR-002

Brief: A root-level wiki/ directory serves as both internal project documentation and a reference example for users.

Context

With ouro/wiki/ reserved as a clean skeleton (see ADR-001), the project needed an alternative location for two things:

  1. Internal documentation — entities, decisions, and patterns for Ourobor OS's own codebase.
  2. A reference example — a populated wiki that users can examine to understand what the system looks like in practice. New users who install the skill get empty directories and no model to follow.

Decision

A root-level wiki/ directory mirrors the ouro/wiki/ structure exactly: same schema, same Doxygen conventions, same subdirectories (entities/, decisions/, patterns/, maps/). It is excluded from the distributed package.

It serves both purposes simultaneously — maintaining internal docs automatically keeps the reference example up to date.

AGENT.md references wiki/ as the project's brain so all sessions default to maintaining it.

SKILL.md is intentionally omitted from wiki/ — it is packaging metadata for npx skills, not documentation.

Alternatives Considered

Trade-offs

Rationale

The dual purpose works because the two needs are identical: both want a realistic, well-maintained wiki that follows the schema. Splitting them would mean maintaining two wikis that should always look the same.