For the complete documentation index, see llms.txt. This page is also available as Markdown.

AI Agent Toolkit

Claude Code


Prerequisites

Before you begin, make sure Claude Code is installed on your machine.

Install Claude Code globally:

npm install -g @anthropic-ai/claude-code

Verify the installation:

claude --version

Installation Guide

Step 1: Clone the Plugin Repository

Clone the plugin repository to your local machine:

git clone <repo-url> ~/plugins

After cloning, your folder structure should look like this:

~/plugins/
├── marketplace.json        ← Plugin registry
├── doku-codegen/           ← Plugin directory
│   ├── plugin.json
│   ├── skills/
│   ├── agents/
│   └── ...
└── other-plugin/

marketplace.json must exist at the root of the plugins directory. Claude Code uses this file to discover available plugins.


Step 2: Register the Marketplace

Start a Claude Code session:

Inside the session, open the plugin manager:

Then:

  1. Select Marketplace

  2. When prompted for the repository URL, enter:

Make sure your GitHub SSH key is configured correctly before continuing. If you receive a permission error, verify that your SSH key has access to the repository.


Step 3: Install the Plugin

Inside the Claude Code session, run:

After installation, reload the plugins:


Step 4: Use the Plugin

You’re ready to use the plugin.

Example command:


Troubleshooting

Problem
What to Check

/plugin install says marketplace not found

Verify the plugins path in settings.json is correct

Plugin installed but commands are unavailable

Run /reload-plugins after installation

marketplace.json not found error

Ensure marketplace.json exists at the root of the plugins directory

Permission denied when registering marketplace

Confirm your SSH key has access to the GitHub repository


Tips

  • Explore additional plugins listed in marketplace.json

  • Review plugin.json for supported commands and configuration

  • Check the skills/ and agents/ directories to understand plugin capabilities

Codex

Coming soon!

Cursor

Coming soon!

Last updated