This is experimental
A skills manager for external agentic data tools.
| Tool | Required | Purpose |
|---|---|---|
git |
Always | Clone and update skill repos |
fzf |
adt uninstall (no args) |
Interactive skill picker |
jq |
--output json |
JSON formatting |
git clone https://github.com/muredata/agentic-data-tools
cd agentic-data-tools
ln -s "$PWD/adt.sh" ~/.local/bin/adt # add adt to PATHadt <command> [-h]| Command | Description |
|---|---|
install |
Install skills |
list |
Show installed skills |
search |
Browse available skills |
uninstall |
Remove an installed skill |
update |
Pull latest for all cached repos |
Run adt <command> -h for command-specific flags.
# Browse available skills
adt search
adt search <term> # filter by name
adt search <term> --platform fabric # filter by name and platform
adt search --platform fabric
# Show installed skills
adt list
adt list --agent claude
# Install skills
adt install # all skills, all agents
adt install --platform fabric # filter by platform
adt install databricks-core # specific skill
adt install --agent claude # claude only
adt install --project ~/code/my-project # project scope, not global
adt install databricks-core --force # reinstall if already present
adt install --dry-run # preview without changes
# Uninstall skills
adt uninstall # interactive picker (requires fzf)
adt uninstall databricks-core # specific skill
adt uninstall databricks-core --agent claude
adt uninstall --dry-run
# Update cached repos
adt update
adt update --status # check status + per-skill dates
adt update --dry-run
# JSON output (requires jq)
adt search --output json
adt list --output json
adt install --output json
adt update --status --output jsonSkills are cloned to ~/.agentic-data-tools/cache/ and symlinked into the appropriate agent directories (~/.claude/skills/, ~/.codex/skills/).
| Variable | Default | Description |
|---|---|---|
ADT_TOOLS_JSON |
<repo>/tools.json |
Path to tools index |
ADT_CACHE_DIR |
~/.agentic-data-tools/cache |
Where repos are cloned |
ADT_OUTPUT_FORMAT |
plain |
Output format (plain or json) |
See docs/index.md for the full list of tools by platform.
To add a tool, open a PR updating docs/index.md. For issues or ideas, open an issue in this repository.
The tool is available as open-source under the terms of the MIT License.