Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ Treat key material with care.
belongs here, not in the app.
- `crates/deckard-contract` — the frozen wire contract (Intent / Decision / Policy / RPC / ReadStatus).
- `crates/deckard-signerd` — the process-isolated signer daemon (owns the key; UDS server).
- `crates/deckard-wallet-client` — shared key-less signer client/account/chain/error primitives for local interfaces.
- `crates/deckard-mcp` — MCP/agent interface over shared wallet capabilities.
- `crates/deckard-browser-bridge` — EIP-1193 dapp/browser interface over shared wallet capabilities.

## Commands
- Iterate fast: `just core` — clippy + test the GPUI-free engine (`deckard-core`) without building the
Expand Down
26 changes: 26 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
# - deckard-core the headless engine (Ethereum provider, balances, keystore)
# - deckard-contract the frozen wire contract (Intent / Decision / Policy / RPC)
# - deckard-signerd the process-isolated signer daemon (owns the key; UDS server)
# - deckard-wallet-client shared key-less client primitives for local interfaces
# - deckard-mcp the key-less agent surface (one binary: CLI + `--mcp` stdio server)
# - deckard-browser-bridge the key-less dapp/browser interface
#
# `cargo run` from the repo root still launches the app via `default-members`.
[workspace]
Expand All @@ -15,7 +17,9 @@ members = [
"crates/deckard-core",
"crates/deckard-contract",
"crates/deckard-signerd",
"crates/deckard-wallet-client",
"crates/deckard-mcp",
"crates/deckard-browser-bridge",
]
default-members = ["crates/deckard-app"]

Expand Down
28 changes: 28 additions & 0 deletions crates/deckard-browser-bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[package]
name = "deckard-browser-bridge"
version = "0.0.1-alpha"
edition = "2021"
license = "AGPL-3.0-or-later"
description = "Deckard's experimental key-less EIP-1193 localhost browser bridge."

[lib]
name = "deckard_browser_bridge"
path = "src/lib.rs"

[[bin]]
name = "deckard-browser-bridge"
path = "src/main.rs"

[dependencies]
deckard-wallet-client = { path = "../deckard-wallet-client" }
clap = { version = "4", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "io-util"] }
serde = { workspace = true }
serde_json = "1"
anyhow = "1"

[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }

[lints]
workspace = true
Loading
Loading