Kowalski (facade crate)
Rust workspace crate that re-exports kowalski-core and optional kowalski-cli so dependents can use one package name. Business logic lives in kowalski-core (TemplateAgent, tools, memory, MCP, federation).
Version
Crate version 1.3.0 (see workspace Cargo.toml).
Features
| Feature | Effect |
|---|---|
| (default) | kowalski-core only, re-exported as kowalski::core plus convenience pub use entries (src/lib.rs). |
cli |
Pulls in kowalski-cli as kowalski::cli. |
postgres |
Enables kowalski-core/postgres (SQL memory, pgvector helpers). |
full |
cli + postgres. |
There are no separate kowalski-academic-agent, kowalski-tools, or kowalski-web-agent crates in this repository—compose behavior with TemplateAgent, configuration, and tools.
Binary: HTTP API
This crate builds the kowalski executable (/api/* for the Vue UI and integrations). See the root README.md for run instructions (cargo run -p kowalski).
Usage (Cargo.toml)
[]
= "1.3.0"
# Optional: CLI + Postgres-capable core
= { = "1.3.0", = ["full"] }
Example (Rust API)
use ;
async
Documentation
License
MIT — see LICENSE.