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
use beck::error::Result;

/// Start the MCP server on stdio. Blocks until the client disconnects.
/// See `src/mcp/` for the ServerHandler + ToolRouter implementation.
pub async fn handle() -> Result<()> {
    beck::mcp::start().await
}