skrills 0.7.5

A command-line interface and MCP server for managing local SKILL.md files.
1
2
3
4
5
6
7
8
9
10
//! Command-line interface for the `skrills` CLI.
//!
//! This is the main entry point for the `skrills` executable,
//! delegating to the `skrills-server` crate.

#![deny(unsafe_code)]

fn main() -> anyhow::Result<()> {
    skrills_server::run()
}