# What Bundled Plugins Are Included in the Claude Plugins Community Repository?

> Explore bundled plugins in the Claude plugins community repository: TRES Finance, TestDino, QuickDesign, and ELI5. Discover slash commands for blockchain, testing, AI media, and visual explanations.

- Repository: [Anthropic/claude-plugins-community](https://github.com/anthropics/claude-plugins-community)
- Tags: getting-started
- Published: 2026-09-08

---

**The Claude Plugins Community repository ships with four ready-to-use plugins—TRES Finance, TestDino, QuickDesign, and ELI5—each providing specialized slash commands for blockchain accounting, test management, AI media generation, and visual explanations.**

The anthropics/claude-plugins-community repository distributes these plugins as top-level directories with self-contained manifests. Each plugin registers automatically with Claude Code through its [`.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/plugin.json) file, eliminating the need for additional downloads or external MCP server configuration. The manifest files serve as the single source of truth for plugin metadata, including name, version, description, and author details.

## The Four Bundled Plugins

The repository maintains four distinct plugins targeting specific developer and creative workflows.

### TRES Finance

The **TRES Finance** plugin delivers blockchain accounting workflows, ledger management, and transaction analysis. Located in [`tres-finance-plugin/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/tres-finance-plugin/.claude-plugin/plugin.json), this plugin connects to the hosted TRES Finance MCP server to provide financial operations directly within Claude Code.

### TestDino

**TestDino** enables inspection of test runs, debugging of failing tests, and management of manual tests and audits. According to the [`testdino/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/testdino/.claude-plugin/plugin.json) manifest, this plugin interfaces with the hosted TestDino MCP server to streamline quality assurance workflows.

### QuickDesign

The **QuickDesign** plugin provides AI-driven media generation capabilities for video and image creation. As defined in [`quickdesign/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/quickdesign/.claude-plugin/plugin.json), it supports multi-segment voice continuity, reference composition, and model-agnostic concepts through the hosted QuickDesign MCP server.

### ELI5

**ELI5** (Explain Like I'm 5) generates simple HTML picture explainers that transform complex topics into visual, low-word summaries. Unlike the other bundled plugins, ELI5 operates locally using markdown-based skills defined in [`eli5/skills/eli5/SKILL.md`](https://github.com/anthropics/claude-plugins-community/blob/main/eli5/skills/eli5/SKILL.md) rather than requiring an external MCP server connection.

## Using Bundled Plugins in Claude Code

Each plugin exposes namespace-specific slash commands. Invoke these commands directly within Claude Code to trigger the plugin's capabilities.

### TRES Finance Commands

```bash
/tres-finance wallet list
/tres-finance tx analyze --hash 0x1234abcd
/tres-finance report create --period last_month

```

### TestDino Commands

```bash
/testdino sessions list
/testdino runs replay --run-id 42
/testdino audit generate --project my-web-app

```

### QuickDesign Commands

```bash
/quickdesign generate video --prompt "a futuristic city at sunrise"
/quickdesign edit image --file skyline.png --instruction "add neon lights"
/quickdesign upscale video --file clip.mp4 --scale 2x

```

### ELI5 Commands

```bash
/eli5 quantum entanglement
/eli5 how blockchain works
/eli5 photosynthesis

```

## Plugin Architecture and Key Files

The bundled plugins follow a consistent structure centered on manifest files and skill definitions. Each plugin's [`.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/plugin.json) serves as the registration point, while additional documentation resides in companion files.

**TRES Finance** relies on:
- [`tres-finance-plugin/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/tres-finance-plugin/.claude-plugin/plugin.json) (manifest)
- [`tres-finance-plugin/README.md`](https://github.com/anthropics/claude-plugins-community/blob/main/tres-finance-plugin/README.md) (documentation)

**TestDino** uses:
- [`testdino/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/testdino/.claude-plugin/plugin.json) (manifest)
- [`testdino/README.md`](https://github.com/anthropics/claude-plugins-community/blob/main/testdino/README.md) (documentation)

**QuickDesign** implements:
- [`quickdesign/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/quickdesign/.claude-plugin/plugin.json) (manifest)
- [`quickdesign/skills/quickdesign/SKILL.md`](https://github.com/anthropics/claude-plugins-community/blob/main/quickdesign/skills/quickdesign/SKILL.md) (skill specification)

**ELI5** utilizes:
- [`eli5/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/eli5/.claude-plugin/plugin.json) (manifest)
- [`eli5/skills/eli5/SKILL.md`](https://github.com/anthropics/claude-plugins-community/blob/main/eli5/skills/eli5/SKILL.md) (skill specification)

These files collectively define plugin registration, capabilities, and execution logic according to the Claude Plugins Community repository source code.

## Summary

- The Claude Plugins Community repository bundles four production-ready plugins: **TRES Finance**, **TestDino**, **QuickDesign**, and **ELI5**.
- Each plugin registers through a [`.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/plugin.json) manifest file located in its respective top-level directory.
- Plugins expose functionality via slash commands (`/tres-finance`, `/testdino`, `/quickdesign`, `/eli5`) that integrate directly with Claude Code.
- While TRES Finance, TestDino, and QuickDesign connect to hosted MCP servers, ELI5 operates locally using markdown-based skills.

## Frequently Asked Questions

### Do I need to install external MCP servers to use these bundled plugins?

No. The bundled plugins in the Claude Plugins Community repository require no additional installation beyond the standard Claude Code environment. The manifest files in each plugin directory handle registration automatically, and hosted MCP servers manage the backend functionality for TRES Finance, TestDino, and QuickDesign.

### Where are the plugin manifests located?

Each plugin stores its manifest in a [`.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/.claude-plugin/plugin.json) file within its top-level directory. For example, TRES Finance uses [`tres-finance-plugin/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/tres-finance-plugin/.claude-plugin/plugin.json), while ELI5 uses [`eli5/.claude-plugin/plugin.json`](https://github.com/anthropics/claude-plugins-community/blob/main/eli5/.claude-plugin/plugin.json). These JSON files contain the plugin name, version, description, author, and registration metadata.

### How do I invoke bundled plugin commands?

Access bundled plugins through slash commands followed by specific subcommands. Type `/tres-finance`, `/testdino`, `/quickdesign`, or `/eli5` followed by the desired operation. For instance, `/eli5 photosynthesis` generates a visual explanation, while `/testdino runs replay --run-id 42` replays a specific test session from the TestDino server.

### Can I modify or extend these bundled plugins?

Yes. Developers can extend functionality by modifying the skill definitions in files like [`quickdesign/skills/quickdesign/SKILL.md`](https://github.com/anthropics/claude-plugins-community/blob/main/quickdesign/skills/quickdesign/SKILL.md) or [`eli5/skills/eli5/SKILL.md`](https://github.com/anthropics/claude-plugins-community/blob/main/eli5/skills/eli5/SKILL.md), or by updating the manifest files. The repository structure treats these as reference implementations that serve as templates for custom plugin development within the Claude ecosystem.