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
//! `cla` alias binary entry point.
//!
//! Thin wrapper — identical to the `claude_assets` binary.
//! This separate file gives Cargo a unique compilation unit per `[[bin]]`
//! target, eliminating the "same file in multiple targets" warning.

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