Initial commit: Claude Code Skill Marketplace manager

HTTP-based CLI tool to discover and install Claude Code skills from
marketplace repositories. Downloads skills via HTTP archive endpoints
(zip/tar.gz) and deploys via copy or symlink into ~/.claude/skills/.
This commit is contained in:
2026-06-18 17:30:52 +08:00
commit 5a855183ea
9 changed files with 3340 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
[package]
name = "claude-code-skill-manager"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "ccsm"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
dirs = "5"
reqwest = { version = "0.12", features = ["blocking", "rustls-tls"], default-features = false }
zip = "2"
flate2 = "1"
tar = "0.4"