CCM
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
hkuds avatar

Cli Hub Meta Skill

hkuds/cli-anything
2.8k installs46.8k stars
Summary

This is a package manager that lets Claude discover and install agent-native CLIs for professional software like GIMP, Kdenlive, and Blender. Instead of building integrations yourself, you search the catalog, run cli-hub install, and get JSON-ready command-line tools that wrap creative apps, productivity software, and AI platforms. The catalog lives at a remote URL and updates automatically, so new tools show up without updating the skill. It's a thin layer over pip that resolves friendly names to cli-anything packages. Useful when you need Claude to edit images, render 3D models, or manipulate video without writing custom tooling for each application.

Install to Claude Code

npx -y skills add hkuds/cli-anything --skill cli-hub-meta-skill --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Files
SKILL.mdView on GitHub

CLI-Hub Meta-Skill

CLI-Hub is a marketplace of agent-native command-line interfaces that make professional software accessible to AI agents.

Quick Start

# Install the CLI Hub package manager
pip install cli-anything-hub

# Browse all available CLIs
cli-hub list

# Search by category or keyword
cli-hub search image
cli-hub search "3d modeling"

# Install a CLI
cli-hub install gimp

# Show details for a CLI
cli-hub info gimp

Workflow Matrices

A single CLI is one tool. A matrix is a whole workflow packaged as capabilities × providers — e.g. video-creation maps intents like text.transcribe or visual.generate to harness CLIs, public CLIs, Python libraries, native binaries, and cloud APIs. Reach for a matrix when a task spans several tools (produce a video, design an image, build a game).

Standard agent sequence — preflight before you install:

cli-hub matrix list                                   # browse all matrices
cli-hub can "transcribe audio"                        # find the capability across matrices
cli-hub matrix search "video subtitle"                # search; shows the matched capability
cli-hub matrix preflight video-creation --json        # what's usable here? (exit 3 = gaps)
cli-hub matrix preflight video-creation -c text.transcribe --fix-hints   # one capability + install hints
cli-hub matrix install video-creation --capability text.transcribe       # install ONLY what the task needs
# After install, the matrix SKILL.md renders locally with provider-selection rules — read it.

Scope every install — do not bulk-install a 14-CLI matrix for a one-capability task. Use --capability <id>, --recipe <id>, or --only a,b, and --dry-run to preview the plan with zero side effects. --json is available on every matrix subcommand; exit codes are 0 ok · 3 partial/gaps · 1 failure · 2 usage error. Retry failures with cli-hub matrix install <name> --resume, and audit an install with cli-hub matrix doctor <name>.

Live Catalog

URL: https://reeceyang.sgp1.cdn.digitaloceanspaces.com/SKILL.md

The catalog is auto-updated and provides:

  • Full list of available CLIs organized by category
  • One-line cli-hub install commands for each tool
  • Complete descriptions and usage patterns

What Can You Do?

CLI-Hub covers a broad range of software and codebases, empowering agents to conduct complex workflows via CLI:

  • Creative workflows: Image editing, 3D modeling, video production, audio processing, music notation
  • Productivity tools: Office suites, knowledge management, live streaming
  • AI platforms: Local LLMs, image generation, AI APIs, research assistants
  • Communication: Video conferencing and collaboration
  • Development: Diagramming, browser automation, network management
  • Content generation: AI-powered document and media creation

Each CLI provides stateful operations, JSON output for agents, REPL mode, and integrates with real software backends.

How It Works

cli-hub is a lightweight wrapper around pip. When you run cli-hub install gimp, it installs a separate Python package (cli-anything-gimp) with its own CLI entry point (cli-anything-gimp). Each CLI is an independent pip package — cli-hub simply resolves names from the registry and tracks installs.

How to Use

  1. Install cli-hub: pip install cli-anything-hub
  2. Find your tool: cli-hub search <keyword> or cli-hub list -c <category>
  3. Install: cli-hub install <name> (installs the cli-anything-<name> pip package)
  4. Run: cli-anything-<name> for REPL, or cli-anything-<name> <command> for one-shot
  5. JSON output: All CLIs support --json flag for machine-readable output

Example Workflow

# Install the hub
pip install cli-anything-hub

# Find what you need
cli-hub search video

# Install it
cli-hub install kdenlive

# Use it with JSON output
cli-anything-kdenlive --json project create --name my-project

More Info

  • Live Catalog: https://reeceyang.sgp1.cdn.digitaloceanspaces.com/SKILL.md
  • Web Hub: https://clianything.cc
  • Repository: https://github.com/HKUDS/CLI-Anything
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Categories
AI & Agent BuildingCLI & Terminal
First SeenMay 16, 2026
View on GitHub

More from hkuds/cli-anything

All 51 skills →
  • Cli Anything1.8k
  • Cli Anything Blender661
  • Cli Anything Drawio521
  • Cli Anything Libreoffice515
  • Cli Anything Obsidian493
  • Cli Anything Freecad477
  • Cli Anything Browser469
  • Cli Anything Gimp460
  • Cli Anything Inkscape443
  • Cli Anything Ollama421
  • Cli Anything Zotero420
  • Cli Anything Notebooklm415
  • Cli Anything Qgis414
  • Cli Anything Godot412
  • Cli Anything Comfyui409
  • Cli Anything Kdenlive400
  • Cli Anything Audacity392
  • Cli Anything Shotcut390
  • Cli Anything N8n389
  • Cli Anything Chromadb386
  • Cli Anything Iterm2384
  • Cli Anything Exa383
  • Cli Anything Mermaid383
  • Cli Anything Videocaptioner383

Recommended

More AI & Agent Building →
google avatar
adk-dev-guide

google/adk-docs

ALWAYS ACTIVE — read at the start of any ADK agent development session. ADK development lifecycle and mandatory coding guidelines — spec-driven workflow, code preservation rules, model selection, and troubleshooting.
2.8k
1.5k
nomadamas avatar
k-skill-cleaner

nomadamas/k-skill

Interview the user and inspect coding-agent skill trigger counts to recommend unused K-skills for removal.
2.8k
7.1k
agricidaniel avatar
ads-microsoft

agricidaniel/claude-ads

Audit Microsoft Advertising measurement, UET, search and audience campaigns, Google imports, syndication, keywords, creative, bidding, budgets, Copilot inventory, and policy. Use for Microsoft Ads, Bing Ads, UET, Microsoft Audience Network, Google Ads import, or Microsoft campaign optimization.
2.8k
8.2k
sundial-org avatar
exa-web-search-free

sundial-org/awesome-openclaw-skills

Free AI search via Exa MCP. Web search for news/info, code search for docs/examples from GitHub/StackOverflow, company research for business intel. No API key needed.
2.8k
639
everyinc avatar
ce-work

everyinc/compound-engineering-plugin

Execute a plan or concrete work prompt end-to-end. Use when implementing from a plan document, a spec path, or a clear build request; use ce-debug for open-ended bugs. Standalone use owns the shipping tail; outer orchestrators pass `mode:return-to-caller [implementation_engine:<compact-json>] [implementation_run:<safe-id>] <plan path>` for implementation, recovery, and local verification only.
2.8k
24.1k
google avatar
adk-cheatsheet

google/adk-docs

MUST READ before writing or modifying ADK agent code. ADK API quick reference for Python — agent types, tool definitions, orchestration patterns, callbacks, and state management. Includes an index of all ADK documentation pages. Do NOT use for creating new projects (use adk-scaffold).
2.7k
1.5k