-
Notifications
You must be signed in to change notification settings - Fork 2
docs(web): align marketing and docs with Corvus runtime identity #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c48b9cd
docs(web): align marketing and docs with Corvus runtime identity
yacosta738 a19526f
Merge origin/main into frontend
yacosta738 b974927
fix(agent-runtime): remove duplicate test cfg attribute
yacosta738 70f4c0a
docs(web): apply runtime docs and marketing review fixes
yacosta738 dfbb2f2
docs(web): align docs urls and cargo diagram semantics
yacosta738 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
clients/web/apps/docs/public/guides/architecture/diagrams/cargo-dependencies.mmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| --- | ||
| # Cargo Dependencies Diagram - Corvus Runtime | ||
| # Updated: 2026-03-09 | ||
| --- | ||
|
|
||
| flowchart TB | ||
| subgraph WORKSPACE["Cargo Workspace"] | ||
| CORVUS["corvus\nCLI + runtime crate"]:::crate | ||
| ROBOT["robot-kit\nworkspace helper crate"]:::crate | ||
| end | ||
|
|
||
| subgraph RUST_ECOSYSTEM["Rust Runtime Dependencies"] | ||
| TOKIO["tokio\nasync runtime"]:::dep | ||
| AXUM["axum\ngateway server"]:::dep | ||
| REQWEST["reqwest\nHTTP client"]:::dep | ||
| SQLITE["rusqlite\npersistent memory"]:::dep | ||
| SERDE["serde\nconfig + payloads"]:::dep | ||
| TRACE["tracing\nobservability"]:::dep | ||
| end | ||
|
|
||
| NOTE_WORKSPACE["corvus-robot-kit is a workspace member\nsee clients/agent-runtime/Cargo.toml"]:::note | ||
| ROBOT -. workspace member .- NOTE_WORKSPACE | ||
| CORVUS --> TOKIO | ||
| CORVUS --> AXUM | ||
| CORVUS --> REQWEST | ||
| CORVUS --> SQLITE | ||
| CORVUS --> SERDE | ||
| CORVUS --> TRACE | ||
|
|
||
| classDef crate fill:#818cf8,stroke:#5b67d8,stroke-width:2px,color:#fff | ||
| classDef dep fill:#38bdf8,stroke:#1d7ca8,stroke-width:2px,color:#001018 | ||
| classDef note fill:#111827,stroke:#64748b,stroke-dasharray: 4 4,color:#e5eefc |
31 changes: 31 additions & 0 deletions
31
clients/web/apps/docs/public/guides/architecture/diagrams/component/runtime-core.mmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| --- | ||
| # C4 Component Diagram - Corvus Runtime Core | ||
| # Updated: 2026-03-09 | ||
| --- | ||
|
|
||
| flowchart TB | ||
| CLI["CLI Commands\nagent, gateway, daemon, doctor"]:::entry | ||
| CHANNELS["Channel Adapters\nTelegram, Discord, Slack, WhatsApp, CLI"]:::component | ||
| PROVIDERS["Provider Registry\n22+ model providers"]:::component | ||
| MEMORY["Memory Layer\nSQLite, SurrealDB, Markdown"]:::component | ||
| TOOLS["Tool Runtime\nShell, file, memory, browser"]:::component | ||
| SECURITY["Security Policy\nPairing, allowlists, workspace scoping"]:::component | ||
| OBSERVE["Observability\nTracing, metrics, health"]:::component | ||
| CONFIG["Config + Identity\nTOML, OpenClaw, AIEOS"]:::component | ||
| LOOP["Agent Loop\nplanning, execution, supervision"]:::component | ||
|
|
||
| CLI --> CONFIG | ||
| CLI --> LOOP | ||
| LOOP --> PROVIDERS | ||
| LOOP --> MEMORY | ||
| LOOP --> TOOLS | ||
| LOOP --> CHANNELS | ||
| LOOP --> SECURITY | ||
| LOOP --> OBSERVE | ||
| TOOLS --> SECURITY | ||
| CHANNELS --> SECURITY | ||
| PROVIDERS --> OBSERVE | ||
| MEMORY --> OBSERVE | ||
|
|
||
| classDef entry fill:#818cf8,stroke:#5b67d8,stroke-width:2px,color:#fff | ||
| classDef component fill:#38bdf8,stroke:#1d7ca8,stroke-width:2px,color:#001018 |
38 changes: 38 additions & 0 deletions
38
clients/web/apps/docs/public/guides/architecture/diagrams/container/runtime-containers.mmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| --- | ||
| # C4 Container Diagram - Corvus Runtime | ||
| # Updated: 2026-03-09 | ||
| --- | ||
|
|
||
| flowchart TB | ||
| DEV["Developer"]:::person | ||
| USER["Channel User"]:::person | ||
| LLM["LLM Providers"]:::external | ||
| MSG["Messaging APIs"]:::external | ||
| TUNNEL["Tunnel Providers"]:::external | ||
| FS["Workspace Filesystem"]:::external | ||
|
|
||
| subgraph CORVUS["Corvus Runtime"] | ||
| CLI["CLI Surface\nagent, onboard, doctor"]:::container | ||
| GATEWAY["Gateway\nwebhook and pairing server"]:::container | ||
| DAEMON["Daemon\nchannels, heartbeat, scheduler"]:::container | ||
| EXEC["Execution Runtime\nnative or Docker"]:::container | ||
| MEMORY["Memory Backends\nSQLite, SurrealDB, Markdown"]:::container | ||
| DASH["Operator Surfaces\ndocs, dashboard, marketing"]:::container | ||
| end | ||
|
|
||
| DEV --> CLI | ||
| DEV --> DASH | ||
| USER --> GATEWAY | ||
| CLI --> DAEMON | ||
| CLI --> EXEC | ||
| DAEMON --> GATEWAY | ||
| DAEMON --> MEMORY | ||
| DAEMON --> EXEC | ||
| DAEMON --> LLM | ||
| DAEMON --> MSG | ||
| GATEWAY --> TUNNEL | ||
| EXEC --> FS | ||
|
|
||
| classDef person fill:#c084fc,stroke:#7c3aed,stroke-width:2px,color:#fff | ||
| classDef container fill:#38bdf8,stroke:#1d7ca8,stroke-width:2px,color:#001018 | ||
| classDef external fill:#94a3b8,stroke:#475569,stroke-width:2px,color:#fff |
39 changes: 39 additions & 0 deletions
39
clients/web/apps/docs/public/guides/architecture/diagrams/container/runtime-containers.puml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| @startuml | ||
| ' C4 Container Diagram - Corvus Runtime | ||
| ' Updated: 2026-03-09 | ||
|
|
||
| !include https://raw.githubusercontent.com/plantuml-stdlib/C4-PlantUML/v2.13.0/C4_Container.puml | ||
|
|
||
| LAYOUT_WITH_LEGEND() | ||
|
|
||
| Person(developer, "Developer", "Configures and operates Corvus") | ||
| Person(channelUser, "Channel User", "Interacts through configured channels") | ||
|
|
||
| System_Ext(llmProviders, "LLM Providers", "OpenRouter, Anthropic, OpenAI, and others") | ||
| System_Ext(messagingApis, "Messaging APIs", "Telegram, Discord, Slack, WhatsApp, Matrix") | ||
| System_Ext(tunnelProviders, "Tunnel Providers", "Cloudflare, Tailscale, ngrok") | ||
| System_Ext(workspaceFs, "Workspace Filesystem", "Scoped files and command execution") | ||
|
|
||
| System_Boundary(corvus, "Corvus Runtime") { | ||
| Container(cli, "CLI Surface", "Rust + clap", "agent, onboard, doctor, status, and admin commands") | ||
| Container(gateway, "Gateway", "Rust + axum", "Pairing, webhooks, and authenticated runtime access") | ||
| Container(daemon, "Daemon", "Rust + tokio", "Channels, heartbeat, scheduling, and long-running orchestration") | ||
| Container(execution, "Execution Runtime", "Native or Docker", "Tool execution with security policy enforcement") | ||
| ContainerDb(memory, "Memory Backends", "SQLite / SurrealDB / Markdown", "Persistent runtime memory and recall") | ||
| Container(ops, "Operator Surfaces", "Astro web apps", "Documentation, dashboard, and marketing surfaces") | ||
| } | ||
|
|
||
| Rel(developer, cli, "Uses") | ||
| Rel(developer, ops, "Reads and operates through") | ||
| Rel(channelUser, gateway, "Interacts through") | ||
| Rel(cli, daemon, "Starts and inspects") | ||
| Rel(cli, execution, "Triggers commands and tools through") | ||
| Rel(daemon, gateway, "Exposes runtime functionality via") | ||
| Rel(daemon, memory, "Reads and writes runtime memory") | ||
| Rel(daemon, execution, "Delegates tool execution to") | ||
| Rel(daemon, llmProviders, "Queries models from") | ||
| Rel(daemon, messagingApis, "Connects to") | ||
| Rel(gateway, tunnelProviders, "Can be exposed through") | ||
| Rel(execution, workspaceFs, "Reads and writes within scoped workspace") | ||
|
|
||
| @enduml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.