beck 0.2.0

Local skills router CLI for AI agents. Your agent's skills, at its beck and call.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! beck-core: the shared indexing, query, and model logic.
//! Re-exported so both the `beck` binary and the `eval` harness can use them.

pub mod agents;
pub mod consts;
pub mod db;
pub mod error;
pub mod frontmatter;
pub mod mcp;
pub mod paths;
pub mod query;
pub mod sync;

pub use db::Db;
pub use error::{CliError, Result};
pub use frontmatter::Frontmatter;
pub use query::{Match, search};