claude_assets 1.5.1

CLI for installing Claude Code artifacts (rules, skills, commands) via symlinks
Documentation
1
2
3
4
5
6
7
8
9
10
//! `claude_assets` binary entry point.
//!
//! Thin wrapper that delegates to [`claude_assets::run_cli()`].
//! The full pipeline implementation lives in the library so it is compiled
//! once and shared by the `claude_assets` and `cla` binary targets.

fn main()
{
  claude_assets::run_cli();
}