Docutray's collection of Claude Code plugins for agile development workflows
npx claudepluginhub docutray/docutray-claude-code-pluginsComplete agile development workflow commands for Claude Code based on GitHub and best practices. Includes feature planning, implementation, validation, and PR review commands.
Claude Code plugins for the Slidev presentation framework
Bundled plugins for actuating and debugging the Chrome browser.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
A collection of Claude Code plugins maintained by the Docutray organization.
/plugin marketplace add docutray/docutray-claude-code-plugins
/plugin install <plugin-name>@docutray-plugins
Or use the interactive menu:
/plugin
# Select "Browse Plugins" → choose from docutray-plugins
| Plugin | Description | Version |
|---|---|---|
| devflow | Complete agile development workflow with GitHub integration | 1.2.0 |
| rag-research | RAG-based document indexing and semantic search with project-local database support | 1.1.1 |
A comprehensive set of slash commands that implement a complete agile development workflow based on GitHub and best practices.
# Install
/plugin install devflow@docutray-plugins
# Configure for your project
/devflow:devflow-setup
# Standard workflow
/devflow:feat feature-name # Create specification & GitHub issue
/devflow:dev issue#123 # Implement feature
/devflow:check # Validate quality
/devflow:review-pr 45 # Review PR
| Command | Description |
|---|---|
/devflow:devflow-setup | Configure DevFlow for your project |
/devflow:feat | Create feature specifications and GitHub issues |
/devflow:dev | Implement features from GitHub issues |
/devflow:check | Run parallel validations (tests, lint, types, build) |
/devflow:review-pr | Perform comprehensive PR reviews |
/devflow:research | Research topics before planning |
/devflow:epic | Plan major initiatives with multiple phases |
TypeScript/Node.js, Python, Go, Ruby, Java, Rust, and more.
RAG-based reference document management for Claude Code. Index documents (PDF, Markdown, Text) and search them semantically using Qdrant + FastEmbed for efficient local vector storage and retrieval.
# Install
/plugin install rag-research@docutray-plugins
# Setup dependencies (first time only)
cd ~/.claude/plugins/marketplaces/docutray-plugins/plugins/rag-research
uv sync
# Use commands
/rag-research:add-doc ./docs/manual.pdf # Index a document
/rag-research:list # List indexed documents
/rag-research:research "your topic" # Semantic search
| Command | Description |
|---|---|
/rag-research:add-doc | Index a document (PDF, Markdown, Text, JSON) |
/rag-research:list | List all indexed documents with filtering |
/rag-research:research | Semantic search across indexed documents |
Set MISTRAL_API_KEY in .env for PDF OCR support (optional - falls back to pypdf).
docutray-claude-code-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── .kimi/ # Kimi CLI Flow Skills
│ └── skills/
│ └── devflow/ # DevFlow flow skills
│ ├── feat/
│ ├── dev/
│ ├── check/
│ ├── review-pr/
│ ├── research/
│ └── epic/
├── plugins/
│ ├── devflow/ # DevFlow plugin (Claude Code)
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ ├── commands/ # Slash commands
│ │ ├── templates/
│ │ └── README.md
│ └── rag-research/ # RAG Research plugin
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── commands/
│ ├── skills/
│ ├── agents/
│ ├── src/
│ └── README.md
├── install-kimi-flows.sh # Installer for Kimi Flow Skills
├── README.md # This file
└── CLAUDE.md
# Clone the repository
git clone https://github.com/docutray/docutray-claude-code-plugins
cd docutray-claude-code-plugins
# Add as local marketplace
/plugin marketplace add .
# Install plugins
/plugin install devflow@docutray-plugins
/plugin install rag-research@docutray-plugins
This repository also includes Flow Skills for Kimi CLI, providing the same DevFlow workflows as automated multi-step processes.