Information Architecture#
ErgoDocs has grown from topic pages, ecosystem notes, tutorials, protocol references, and generated API material. That growth is useful, but the repository now needs clearer ownership boundaries so navigation does not become the content model.
Target Model#
Use one canonical home for each page. Other sections should link to that page through curated hub pages, not duplicate the same file in multiple top-level nav surfaces.
| Surface | Job | Canonical content |
|---|---|---|
| Start Here | orientation and first decisions | short routing pages that point to canonical hubs |
| Use | user jobs and practical tasks | wallets, safety, wallet guides, user tutorials |
| Ecosystem | project discovery and ecosystem categories | dApps, bridges, DeFi, NFTs, privacy tools, project profiles |
| Learn | concepts and research | protocol concepts, papers, cryptography, scaling |
| Participate | community and contribution | governance, events, docs process, funding |
| Develop | builder references | SDKs, ErgoScript, data model, APIs, examples |
| Deploy | operator runbooks | node, indexers, watchers, pools, infrastructure |
| Reference | lookup material | glossary, FAQ, API references, standards, configuration references |
Current Structural Risks#
Run:
.venv/bin/python tools/structure_audit.py --markdown
The audit tracks active docs, nav entries, duplicate targets, cross-surface duplicates, orphans, maximum nav depth, and source-watch coverage by content area.
Current repo shape shows three main risks:
- Same page appears in several top-level surfaces, for example Rosen watcher pages under both
UseandDeploy, and some SDK/tooling pages under multiple developer sections. - Project pages, conceptual pages, and operational runbooks are mixed in the same folders, especially under
eco/,uses/, anddev/stack/; nav placement should be based on audience and content type, not path alone. - Some pages exist as navigation bridges rather than canonical references, making source ownership and update responsibility less clear.
After the ecosystem/reference navigation pass, the audit reports:
682active markdown pages.683nav entries pointing at683unique targets.0duplicate nav targets.0cross-surface duplicates.0active orphan pages outside the nav.1intentional unlisted legacy page.191source-watched pages.
Rules#
- A page should have one canonical nav location.
- A page can appear in another journey only through a hub page with a short summary and link.
- Start Here is a routing layer. Keep it shallow and point to hubs, not deep technical pages.
Usepages should explain user outcomes and risks, not implementation details.Ecosystempages should support discovery of active, emerging, historical, or research-stage projects.Developpages should document APIs, libraries, contracts, and source-backed behavior.Deploypages should be runbooks: prerequisites, config, operations, failure modes, upgrades.Learnpages should be stable conceptual references and should not depend on live project status.Referencepages should be lookup material, not learning paths or tutorials.- Ecosystem project pages should declare status: active, dormant, prototype, historical, or unknown.
- Source-backed pages should carry
owner,last_reviewed, andsource_reposfrontmatter. - Replaced, alias, draft, or directory-listed pages should declare
ia_status: legacy,ia_status: alias,ia_status: draft, oria_status: directoryinstead of silently becoming orphan debt. - Use
ia_status: directoryonly when an active page is intentionally discoverable through a directory or hub page instead of the sidebar.
Migration Plan#
- Pick canonical homes for cross-surface duplicates.
- Replace duplicate nav entries with hub links.
- Split mixed pages when they combine concept, runbook, and project status.
- Move dormant or historical ecosystem pages into a clearly labelled archive path only after redirects exist.
- Add source-watch metadata to pages that describe changing APIs, contracts, configs, or active repositories.
- Keep generated API docs separate from authored API guidance.
High-Value Restructure Candidates#
- Rosen watcher docs: canonical home is now
Deploy / Watchers;Use / Rosen Bridgekeeps user-facing Rosen concepts and no longer duplicates watcher runbooks. - Blockchain indexing docs: canonical home is now
Deploy / Blockchain Indexing;Developkeeps API and explorer references without duplicating indexing runbooks. - Mosaik and legacy frameworks: split active SDK guidance from historical examples.
- Ecosystem directory: continue adding status taxonomy; navigation now separates ecosystem/project pages from user tasks, operator runbooks, and developer references.
- Node docs: keep generated OpenAPI under
node/swagger/; keep authored guidance innode/swagger.mdanddev/integration/. - Remaining work should focus on page quality inside overlarge buckets, especially
Ecosystem / Applications & Utilities,Develop / Tooling & Frameworks, and node operations.
Review Checklist#
- Does this page have one canonical audience?
- Is this page in only one top-level nav surface?
- Does changing source code or config affect this page?
- Is project status explicit?
- Could this page be a hub link instead of a duplicated nav target?
- Would a new contributor know who owns updates?