Reflex plugin marketplace
npx claudepluginhub mindmorass/reflexOpinionated sub-agents and skills for application development, infrastructure, and data engineering workflows
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
No description available.
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
A Claude Code plugin for application development, infrastructure, and data engineering workflows.
/plugin marketplace add mindmorass/reflex
/plugin install reflex
| Component | Count | Description |
|---|---|---|
| Skills | 40 | Development patterns, RAG, harvesting, infrastructure |
| Commands | 15 | /reflex:agents, /reflex:skills, /reflex:handoff, etc. |
| Agents | 2 | rag-proxy, workflow-orchestrator |
The docker/ directory contains Docker Compose configurations for supporting services:
| Service | Purpose | Port |
|---|---|---|
| Qdrant | Vector database for RAG | 6333 |
| LangFuse | LLM observability | 3000 |
# Qdrant (required for RAG features)
cd docker/qdrant
cp .env.example .env
docker compose up -d
# LangFuse (optional - for observability)
cd docker/langfuse
cp .env.example .env
# Edit .env and generate secrets
docker compose up -d
reflex/
├── plugins/reflex/ # Main plugin
│ ├── agents/ # Sub-agents
│ ├── skills/ # 40 skill definitions
│ ├── commands/ # Slash commands
│ ├── hooks/ # Session hooks
│ └── scripts/ # Helper scripts
└── docker/ # Docker services
├── qdrant/ # Vector database
└── langfuse/ # LLM observability
MIT