Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 29 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,45 +23,45 @@ The design is **consumer-agnostic**: the core handles protocol, tooling, and kno
┌───────────────────────────────────────────────────────────────────┐
│ HTTP Daemon (createServer) │
│ │
│ ┌──────────┐ ┌──────────────┐ ┌────────────┐ ┌────────────┐ │
│ │ Routes │ │ RequestQueue │ │ Tool │ │ Knowledge │ │
│ │ /health │ │ (async mutex) │ │ Registry │ │ Store │ │
│ │ /status │ │ │ │ 30 tools │ │ │ │
│ │ /launch │ └──────────────┘ └─────┬──────┘ └────────────┘ │
│ │ /cleanup │ │
│ │ /tool/:n ▼ │
│ └──────────┘ ┌──────────────────┐ │
│ │ ToolContext
│ │ sessionManager
│ │ page / refMap
│ │ workflowContext
│ │ knowledgeStore
│ └────────┬─────────┘ │
└──────────────────────────────────────┼───────────────────────────┘
│ ┌──────────┐ ┌──────────────┐ ┌────────────┐ ┌────────────┐
│ │ Routes │ │ RequestQueue │ │ Tool │ │ Knowledge │
│ │ /health │ │ (async mutex) │ │ Registry │ │ Store │
│ │ /status │ │ │ │ 30 tools │ │ │
│ │ /launch │ └──────────────┘ └─────┬──────┘ └────────────┘
│ │ /cleanup │ │
│ │ /tool/:n ▼ │
│ └──────────┘ ┌──────────────────┐
│ │ ToolContext
│ │ sessionManager
│ │ page / refMap
│ │ workflowContext
│ │ knowledgeStore
│ └────────┬─────────┘
└──────────────────────────────────────┼───────────────────────────
┌─────────────────────┼─────────────────────┐
│ ISessionManager
│ (consumer implementation)
│ Session lifecycle Page management
│ Extension state A11y reference map
│ Navigation Screenshots
│ Capabilities (opt) Environment config
│ ISessionManager │
│ (consumer implementation) │
│ │
│ Session lifecycle Page management │
│ Extension state A11y reference map │
│ Navigation Screenshots │
│ Capabilities (opt) Environment config │
└─────────────────────┬─────────────────────┘
┌─────────────────────┼─────────────────────┐
│ WorkflowContext
│ build? fixture?
│ chain? contractSeeding?
│ stateSnapshot? mockServer?
│ config: EnvironmentConfig
│ WorkflowContext │
│ │
│ build? fixture? │
│ chain? contractSeeding? │
│ stateSnapshot? mockServer? │
│ config: EnvironmentConfig │
└─────────────────────┬─────────────────────┘
┌───────────────────────────────────────────┐
│ Playwright → Chrome Browser │
│ Browser Extension
│ Browser Extension │
└───────────────────────────────────────────┘
```

Expand Down
Loading