npx claudepluginhub mindmorass/reflex --plugin reflex# Reflex Skills List all available skills in the Reflex plugin. ## Instructions Run this Python script to list all skills with descriptions: ## Skill Categories | Category | Skills | |----------|--------| | **RAG & Knowledge** | qdrant-patterns, rag-builder, rag-wrapper, knowledge-ingestion-patterns, research-patterns, web-research | | **Harvesting** | github-harvester, youtube-harvester, pdf-harvester, site-crawler | | **Publishing** | obsidian-publisher, joplin-publisher | | **Infrastructure** | aws-patterns, terraform-patterns, kubernetes-patterns, docker-patterns, observability-p...
/skillsSearches prompts.chat for Agent Skills by query and optional --category/--tag filters, listing titles, descriptions, authors, tags, files, and links. Also supports get, install, and create subcommands.
/skillsDiscovers and recommends relevant skills from 410+ library by analyzing project files, conversation context, and optional [category|search-term]. Outputs project-specific suggestions and categories.
/skillsDetects project tech stack, lists installed skills, suggests and offers to install matching community skills from skills.sh. Supports --search <query>, --list, --refresh.
/skillsManages Conductor skills: lists available with status, shows details, enables or disables for current project via Python CLI or file ops.
/skillsDynamically discovers all Groundwork skills from SKILL.md files, categorizes by keywords, and displays organized markdown tables with names and descriptions.
List all available skills in the Reflex plugin.
Run this Python script to list all skills with descriptions:
python3 << 'PYEOF'
from pathlib import Path
import os
plugin_root = os.environ.get("CLAUDE_PLUGIN_ROOT", ".")
skills_dir = Path(plugin_root) / "skills"
if not skills_dir.exists():
print("Skills directory not found")
exit(1)
skills = []
for skill_path in sorted(skills_dir.iterdir()):
if skill_path.is_dir():
skill_file = skill_path / "SKILL.md"
if skill_file.exists():
desc = ""
with open(skill_file) as f:
for line in f:
if line.startswith("description:"):
desc = line.replace("description:", "").strip()
break
skills.append((skill_path.name, desc[:65]))
print(f"## {len(skills)} Reflex Skills\n")
print("| Skill | Description |")
print("|-------|-------------|")
for name, desc in skills:
print(f"| **{name}** | {desc} |")
PYEOF
| Category | Skills |
|---|---|
| RAG & Knowledge | qdrant-patterns, rag-builder, rag-wrapper, knowledge-ingestion-patterns, research-patterns, web-research |
| Harvesting | github-harvester, youtube-harvester, pdf-harvester, site-crawler |
| Publishing | obsidian-publisher, joplin-publisher |
| Infrastructure | aws-patterns, terraform-patterns, kubernetes-patterns, docker-patterns, observability-patterns |
| Database | database-migration-patterns, collection-migration, embedding-comparison |
| Video/Streaming | ffmpeg-patterns, streaming-patterns, video-upload-patterns, ai-video-generation, podcast-production |
| Building | agent-builder, workflow-builder, router-builder, mcp-server-builder, workspace-builder, rag-builder |
| Diagrams | image-to-diagram, graphviz-diagrams |
| Analysis | analysis-patterns, task-decomposition, project-onboarding |
| Microsoft | microsoft-docs, microsoft-code-reference |
Code review, testing, security, and mermaid diagrams are provided by official plugins (testing-suite, security-pro, documentation-generator, developer-essentials).