First Public Release
QuantumClaw v0.1.0 is the first public crates.io release of QuantumClaw: a general-purpose Rust agent runtime built on ZeroClaw.
Install
quantumclaw = "0.1.0"QuantumClaw is published as one public crate and one public brand. Internal workspace crates remain private implementation detail.
Clean public API
use quantumclaw::prelude::*;Optional short module paths are available for direct imports:
quantumclaw::planner
quantumclaw::runtime
quantumclaw::memory
quantumclaw::tools
quantumclaw::policyHighlights
- General-purpose Rust agent runtime.
- Built on ZeroClaw as the runtime substrate.
- Single public crate:
quantumclaw = "0.1.0". - Hybrid planning architecture.
- Classical planner support.
- Quantum-inspired planner support.
- Designed for future quantum backend portability.
- Multi-model agent architecture.
- Multi-channel operation.
- Multi-tool execution surface.
- Memory-enabled agent workflows.
- Support for long-running agents.
- Clean public API via
use quantumclaw::prelude::*;.
Verification
This release was validated with:
cargo fmt --all --check
cargo clippy --workspace --all-targets -- -D warnings
cargo test --workspace
cargo publish --dry-run -p quantumclaw
cargo publish -p quantumclawOnly the public quantumclaw crate was published to crates.io. Internal workspace crates were not published.