Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/data-wise/claude-plugins/distgit clone --depth 1 https://github.com/Data-Wise/claude-pluginsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.02693 |
| Opus 5 | $0.00000 | $0.01347 |
| Sonnet 5 | $0.00000 | $0.00539 |
| Haiku 4.5 | $0.00000 | $0.00269 |
Grade C, and why
dist scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -fsSL https://raw.githubusercontent.com/user/repo/main/install.sh | bash Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
> - **What:** 3 commands for packaging and distributing your project (Homebrew, PyPI, curl installer) How it starts
The opening of the file, as written. The whole thing — 418 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Distribution Commands
⏱️ 10 minutes • 🟡 Intermediate • ✓ Multi-platform packaging
TL;DR (30 seconds)
- What: 3 commands for packaging and distributing your project (Homebrew, PyPI, curl installer)
- Why: Automate release workflows and make your project easy to install across platforms
- How: Use
/craft:dist:homebrew setupfor macOS,/craft:dist:pypifor Python packages- Next: Try
/craft:dist:homebrew setupto create automated Homebrew releases
Craft's distribution commands automate packaging and distribution across Homebrew, PyPI, and curl installers.
Commands Overview
| Command | Purpose | Platforms |
|---|---|---|
/craft:dist:homebrew |
Homebrew formula automation | macOS, Linux |
/craft:dist:pypi |
PyPI package publishing | Python (all platforms) |
/craft:dist:curl-install |
Curl-based installer script | All platforms |
/craft:dist:homebrew - Homebrew Automation
Complete Homebrew formula management with automated GitHub Actions workflows.
Quick Start
# Full setup wizard (recommended)
/craft:dist:homebrew setup
# Generate formula only
/craft:dist:homebrew formula
# Generate GitHub Actions workflow
/craft:dist:homebrew workflow
# Validate formula
/craft:dist:homebrew validate
Subcommands
| Subcommand | Purpose |
|---|---|
formula |
Generate or update Homebrew formula |
workflow |
Create GitHub Actions release automation |
validate |
Run brew audit validation |
token |
Guide for setting up tap access token |
setup |
Full wizard (formula + workflow + token) |
update-resources |
Fix stale PyPI resource URLs |
Example: Full Setup
/craft:dist:homebrew setup
Output:
╔═══════════════════════════════════════════════════════════╗
║ HOMEBREW AUTOMATION SETUP WIZARD ║
╠═══════════════════════════════════════════════════════════╣
║ ║
║ ✓ Detected: Python (pyproject.toml) ║
║ ✓ Name: aiterm | Version: 0.6.0 ║
║ ✓ Created: Formula/aiterm.rb ║
║ ✓ Validated: brew audit passed ║
║ ✓ Created: .github/workflows/homebrew-release.yml ║
║ ✓ Configured for: Data-Wise/homebrew-tap ║
║ ║
║ ⚠ HOMEBREW_TAP_GITHUB_TOKEN not found ║
║ Run: gh secret set HOMEBREW_TAP_GITHUB_TOKEN ║
║ ║
╚═══════════════════════════════════════════════════════════╝
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 418 lines · 0 tokens per session scan C e3f5fff5792f
dist is a command published in the GitHub repository Data-Wise/claude-plugins (7 stars, last pushed 5d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,693 tokens. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.