muredata

Agentic Data Tools — Data skill for Claude Code

Data community

Manage data skills across Codex CLI, Claude Code and GitHub Copilot.

How to install Agentic Data Tools

This entry records only its repository, not the path inside it, so there is no exact command to give. Open muredata/agentic-data-tools and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Agentic Data Tools does

Manage data skills across Codex CLI, Claude Code and GitHub Copilot.

Alternatives in Data

  • Privacy & Data Handling — This repository contains: - a plugin package (plugins/compound-engineering) made of markdown/config content 10.8k ★
  • HTML Anything — ✨ The agentic HTML editor — your local AI agent writes the HTML, you ship it 8.5k ★
  • AgriQuant AI — AI-powered weather intelligence for agricultural commodity futures 707 ★

README

agentic-data-tools

This is experimental

A skills manager for external agentic data tools.

Dependencies

Tool Required Purpose
git Always Clone and update skill repos
fzf adt uninstall (no args) Interactive skill picker
jq --output json JSON formatting

Install

git clone https://github.com/muredata/agentic-data-tools
cd agentic-data-tools
ln -s "$PWD/adt.sh" ~/.local/bin/adt   # add adt to PATH

Commands

adt  [-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 -h` for command-specific flags.

Usage

# Browse available skills
adt search
adt search                          # filter by name
adt search  --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 --outp