beck 0.2.1

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
//! Agent-facing layer: skills home, manifest, and adapters that translate
//! a canonical `~/beck/skills/<name>/SKILL.md` into a file another agent
//! (Claude Code today, Cursor in v0.3+) actually reads.
//!
//! Phase 1 shipped paths + manifest. Phase 2 adds the `Skill` loader, the
//! `Adapter` trait, `ClaudeCodeAdapter`, and the registry that owns the
//! shipping set of adapters.

pub mod adapter;
pub mod claude_code;
pub mod manifest;
pub mod paths;
pub mod registry;
pub mod skill;