> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qredence.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Use Qredence plugins in Claude Code

> Add the Qredence Plugins marketplace to Claude Code, install a plugin from GitHub, and invoke its skills and agents from inside a Claude Code session.

This repository stores Claude-compatible plugins under `plugins/`.

## Remote install

Add the marketplace from GitHub, then install a plugin from it:

```bash theme={null}
claude plugin marketplace add https://github.com/Qredence/qredence-plugins
claude plugin install meta-harness@qredence-plugins
```

The current installable plugin names are `harness-engineering`, `meta-harness`, `rlm-wiki`, and `symphony`.

## Local testing

For local development or session-only testing, run Claude Code against an installable plugin directory:

```bash theme={null}
claude --plugin-dir ./plugins/meta-harness
```

After Claude Code starts, invoke the bundled skill:

```text theme={null}
/meta-harness:meta-harness
```

Other current bundle targets are `./plugins/harness-engineering`, `./plugins/rlm-wiki`, and `./plugins/symphony`, using their matching skill names.

## Packaging notes

* The Claude manifest lives at `.claude-plugin/plugin.json`.
* Keep `skills/`, `agents/`, `.mcp.json`, and `assets/` at the plugin root.
* Only directories that also have the Codex manifest and `.mcp.json` should be treated as dual-target installable bundles.
* Do not place plugin content inside `.claude-plugin/`.
