Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
|----------|-------|
Expand Down Expand Up @@ -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
│ └── ...
Expand Down
32 changes: 32 additions & 0 deletions catalog/scc.json
Original file line number Diff line number Diff line change
@@ -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"]
}
26 changes: 26 additions & 0 deletions catalog/tokei.json
Original file line number Diff line number Diff line change
@@ -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"]
}
2 changes: 1 addition & 1 deletion skills/cli-tools/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading