Purpose
Main Weave CLI and TUI covering trace, dSocial, Locus, Lens, Nexus, DHT, AgentFS, mirror, config, forum, gnosis, and basis commands. This page follows the real source shape for Weave and explains the workflow a developer is likely to use first.Command surface
Use this page to understand the operational commands exposed by the tool. Prefer command groups that match the subsystem you are testing, then inspect the API surface page for the exact Rust enum or command handler.Primary types to know
App— tools/weave/src/tui/app.rsCli— tools/weave/src/cli.rsNetworkConfig— tools/weave/src/config.rsPeerInfo— tools/weave/src/tui/app.rsStorageConfig— tools/weave/src/config.rsTuiConfig— tools/weave/src/config.rsWeaveConfig— tools/weave/src/config.rsAgentFsCommand— tools/weave/src/cli.rsBasisCommand— tools/weave/src/cli.rsCommand— tools/weave/src/cli.rsConfigCommand— tools/weave/src/cli.rsDhtCommand— tools/weave/src/cli.rs
Example shape
Release-quality documentation checklist
- Every public type on the API Surface page has at least one sentence of behavior documentation.
- Every fallible operation lists errors and recovery guidance.
- Every networked example names the peer/session/topic lifecycle.
- Every storage example names durability, repair, and deletion semantics.