diff --git a/README.md b/README.md index 413602a..0dabf86 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ This is an **Agent Skill** following the [open standard](https://agentskills.io) ## Supported Tools -74+ tools across categories: +77+ tools across categories: | Category | Tools | |----------|-------| @@ -138,7 +138,7 @@ Priority: user-level (`~/.local/bin`, `~/.cargo/bin`) over system-level. ``` cli-tools/ ├── SKILL.md # Skill definition and workflows -├── catalog/ # Tool definitions (74+ JSON files) +├── catalog/ # Tool definitions (77+ JSON files) │ ├── ripgrep.json │ ├── php.json │ └── ... diff --git a/catalog/scc.json b/catalog/scc.json new file mode 100644 index 0000000..7334979 --- /dev/null +++ b/catalog/scc.json @@ -0,0 +1,32 @@ +{ + "name": "scc", + "install_method": "auto", + "description": "Sloc, Cloc and Code - fast accurate code counter with complexity calculations", + "homepage": "https://github.com/boyter/scc", + "github_repo": "boyter/scc", + "binary_name": "scc", + "download_url_template": "https://github.com/boyter/scc/releases/download/{version}/scc_Linux_{arch}.tar.gz", + "arch_map": { + "x86_64": "x86_64", + "aarch64": "arm64" + }, + "available_methods": [ + { + "method": "github_release_binary", + "priority": 1, + "config": { + "repo": "boyter/scc", + "asset_pattern": "scc_Linux_{arch}.tar.gz" + } + }, + { + "method": "brew", + "priority": 2, + "config": { + "formula": "scc" + } + } + ], + "requires": [], + "tags": ["code-counter", "statistics"] +} diff --git a/catalog/tokei.json b/catalog/tokei.json new file mode 100644 index 0000000..c881efb --- /dev/null +++ b/catalog/tokei.json @@ -0,0 +1,26 @@ +{ + "name": "tokei", + "install_method": "auto", + "description": "Count your code quickly - statistics on code by language", + "homepage": "https://github.com/XAMPPRocky/tokei", + "github_repo": "XAMPPRocky/tokei", + "binary_name": "tokei", + "available_methods": [ + { + "method": "cargo", + "priority": 1, + "config": { + "crate": "tokei" + } + }, + { + "method": "brew", + "priority": 2, + "config": { + "formula": "tokei" + } + } + ], + "requires": [], + "tags": ["code-counter", "statistics"] +} diff --git a/skills/cli-tools/SKILL.md b/skills/cli-tools/SKILL.md index 110530f..fa55fd0 100644 --- a/skills/cli-tools/SKILL.md +++ b/skills/cli-tools/SKILL.md @@ -18,7 +18,7 @@ allowed-tools: # CLI Tools Skill -Install, audit, update, and recommend CLI tools across 74 cataloged entries. +Install, audit, update, and recommend CLI tools across 77 cataloged entries. ## Triggers