Skip to content
flazouh edited this page Apr 20, 2026 · 5 revisions

Acepe Wiki

This wiki is a navigation surface for Acepe documentation.

The canonical architecture source of truth lives in the main repository so it stays versioned with code and pull requests.

%%{init: {'theme':'base','themeVariables':{'primaryTextColor':'#1f2937','primaryBorderColor':'#9ca3af','lineColor':'#6b7280','tertiaryColor':'#ffffff','background':'#ffffff'}}}%%
flowchart TD
    provider["Provider signal"] --> projection["Backend projection"]
    projection --> graph["Canonical session graph"]
    graph --> operations["Operations"]
    graph --> interactions["Interactions"]
    operations --> stores["Desktop stores"]
    interactions --> stores
    stores --> views["UI selectors"]

    classDef blue fill:#B4D2F0,stroke:#6b7280,color:#1f2937;
    classDef green fill:#B4E6C8,stroke:#6b7280,color:#1f2937;
    classDef yellow fill:#FFEBB4,stroke:#6b7280,color:#1f2937;
    classDef orange fill:#FFD2AA,stroke:#6b7280,color:#1f2937;
    classDef purple fill:#D2BEF0,stroke:#6b7280,color:#1f2937;
    classDef gray fill:#DCDCE1,stroke:#6b7280,color:#1f2937;

    class provider,projection blue;
    class graph purple;
    class operations,interactions green;
    class stores yellow;
    class views orange;
Loading

Architecture reference

Page Role
Home Portal and navigation
Architecture Concepts Reading order and architecture map
Wiki Structure What belongs in the wiki vs the repo docs
Topic Link
Concepts landing page docs/concepts/README.md
Session graph session-graph.md
Operations operations.md
Interactions interactions.md
Reconnect and resume reconnect-and-resume.md

Why the source of truth lives in the repo

Acepe's architecture evolves with code. Keeping the real concept docs in docs/concepts/ means:

  • architecture changes are reviewed in pull requests,
  • docs ship in the same commit as the code they describe,
  • the repo keeps one versioned source of truth for core concepts.

Use this wiki to find the right pages quickly, then follow the repo links for the actual reference.

Clone this wiki locally