| Crates.io | coding_agent_tools |
| lib.rs | coding_agent_tools |
| version | 0.1.8 |
| created_at | 2025-12-03 20:43:12.966324+00 |
| updated_at | 2026-01-05 17:30:45.538071+00 |
| description | Coding agent tools (CLI + MCP). First tool: ls. |
| homepage | https://github.com/allisoneer/agentic_auxilary |
| repository | https://github.com/allisoneer/agentic_auxilary |
| max_upload_size | |
| id | 1965298 |
| size | 396,922 |
CLI + MCP tools for coding assistants. First tool: ls (gitignore-aware directory listing).
cargo install --path .
# List current directory (depth 1)
coding-agent-tools ls
# List with options
coding-agent-tools ls --path src --depth 2 --show files --hidden
# Add custom ignore patterns
coding-agent-tools ls --ignore "*.log" --ignore "tmp/"
coding-agent-tools mcp
Exposes the ls tool via MCP protocol for AI coding agents.
| Parameter | Type | Default | Description |
|---|---|---|---|
path |
string | . |
Directory to list |
depth |
0-10 | 1 | 0=header only, 1=children, 2+=tree |
show |
all/files/dirs | all | Filter by type |
ignore |
string[] | [] | Additional glob patterns to ignore |
hidden |
bool | false | Include hidden files |
show=all)