Claude Code plugins for ollama integration, AI-assisted development, Python/Node.js CI/CD automation, AI video production, and package quality assurance.
Intelligent multi-agent system for delegating analysis, code review, and complex reasoning tasks to local ollama models.
Features:
- Saves 70%+ of Claude's context budget
- Automatic model selection and capability matching
- Parallel multi-perspective analysis
- Cross-platform compatible (Windows/macOS/Linux)
- 5 slash commands: /analyze, /review, /architect, /models, /deep-analyze
- 3 specialized agents for ollama model orchestration
Version: 1.0.1 Category: Productivity License: MIT
Multi-agent CI/CD pipeline ensuring Python packages pass cross-platform, multi-version, and quality gates before shipping.
Features:
- 8 sequential quality gates (no skipping)
- Cross-platform validation (Windows + Ubuntu)
- Python version matrix (3.9-3.13)
- Security scanning (secrets, vulnerabilities, licenses)
- API compatibility checking (breaking change detection)
- Package build verification (wheel, install, entry points)
- GitHub PR creation with full gate report
- 11 specialized agents, 8 slash commands
Commands:
/preflight- Run full 8-gate pipeline/gate <n>- Run specific gate/status- Check pipeline status/ship- Run pipeline and create PR/lint,/xplat,/security,/coverage- Quick checks
Version: 1.0.0 Category: Development Tools License: MIT
Automated PR preparation with local CI validation, smart error recovery, and Mermaid diagram generation.
Features:
- Takes any branch state (committed, uncommitted, unknown) to published package
- Runs local CI BEFORE pushing to prevent GitHub CI failures
- Auto-detects Python and Node.js/TypeScript projects
- Smart error recovery (fixes corrupted deps, stale artifacts, lock file issues)
- Generates CI workflows if missing
- Creates detailed PRs with Mermaid diagrams
- Uses MCP GitHub tools by default, gh CLI as fallback
- Cross-platform (Windows, macOS, Linux)
Commands:
/prep-pr- Full PR preparation pipeline/prep-pr --no-push- Run CI only, don't push/prep-pr --resume- Resume from last failure/prep-pr --merge- Auto-merge after CI passes/prep-pr --release- Create version tag after merge
Error Recovery:
- Dependency corruption - Cleans and reinstalls
- Lock file desync - Regenerates lock files
- Stale artifacts - Cleans build outputs
- Cache corruption - Purges and rebuilds
Version: 1.0.0 Category: Development Tools License: MIT
AI video production pipeline using Remotion. Turns simple prompts into fully produced short-form videos with voiceover, b-roll, animated captions, and YouTube upload.
Features:
- 7-step production pipeline (composition → voiceover → b-roll → transitions → captions → preview)
- 7 prompt templates as slash commands
- B-roll generation via Krea.ai with Ken Burns zoom
- Voiceover via ElevenLabs TTS
- Animated captions via Whisper with word highlighting
- YouTube upload with full metadata
- Google Drive delivery
- Cross-platform safe zones (TikTok, Reels, Shorts)
Commands:
/remotion-gorombo:explainer [topic]- Teach a topic in 5 scenes/remotion-gorombo:product-promo [URL]- Promote a product/service/remotion-gorombo:data-visualization [CSV]- Animate data as dashboard/remotion-gorombo:research-report [topic]- Research + visualize stats/remotion-gorombo:testimonial [business]- Social proof from reviews/remotion-gorombo:blog-promo [URL]- Tease a blog post/remotion-gorombo:before-after [URL]- Old way vs new way
Version: 1.3.0 Category: Content Creation License: MIT
# In Claude Code, run:
/plugin marketplace add dansasser/claude-code-marketplaceAfter adding the marketplace, you can browse and install plugins:
# Browse available plugins
/plugin
# Or install directly
/plugin install claude-ollama-agentsIf you prefer manual installation:
# Clone this repository
git clone https://github.com/dansasser/claude-code-marketplace.git
# Navigate to the plugin you want
cd claude-code-marketplace/plugins/claude-ollama-agents
# Run the installer
./install.shPlugins in this marketplace may have specific requirements. Check each plugin's README for details.
For claude-ollama-agents:
- Install ollama from ollama.ai
- Pull models:
ollama pull kimi-k2-thinking:cloud - Install ollama-prompt:
pip install ollama-prompt
For preflight:
- Python >= 3.9
- Install dev tools:
pip install ruff mypy pytest pytest-cov build twine pip-audit
For pr-prep:
- Python >= 3.10 (for running helper scripts)
- Git with remote configured
- For Python projects:
pip install ruff mypy pytest build - For Node projects: npm/yarn/pnpm/bun with eslint, typescript
This marketplace follows the official Claude Code plugin structure:
claude-code-marketplace/
├── .claude-plugin/
│ └── marketplace.json # Marketplace definition
└── plugins/
├── claude-ollama-agents/ # Ollama integration
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── agents/ # Subagents
│ ├── commands/ # Slash commands
│ ├── scripts/ # Helper scripts
│ └── README.md
│
├── preflight/ # Python CI/CD pipeline
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── .claude/
│ │ ├── agents/ # 11 gate agents
│ │ ├── commands/ # 8 slash commands
│ │ └── skills/ # Skills with scripts
│ ├── config/ # YAML configuration
│ ├── CLAUDE.md # Governance rules
│ └── README.md
│
├── pr-prep/ # PR preparation pipeline
│ ├── .claude-plugin/
│ │ └── plugin.json
│ ├── agents/ # Orchestrator + composer
│ ├── commands/ # /prep-pr command
│ ├── scripts/ # Python helper scripts
│ ├── templates/ # CI workflow templates
│ └── README.md
│
└── remotion-gorombo/ # AI video production
├── .claude-plugin/
│ └── plugin.json
├── SKILL.md # Production pipeline
├── rules/ # 39 Remotion best-practice rules
└── skills/ # 7 prompt templates
├── explainer/
├── product-promo/
├── data-visualization/
├── research-report/
├── testimonial/
├── blog-promo/
└── before-after/
For remotion-gorombo:
- Remotion 4.x (
npx create-video@latest) - ElevenLabs API key (voiceover)
- Krea.ai API key (b-roll generation)
- ffmpeg (clip extension)
- Optional:
gwsCLI (Google Drive upload), YouTube Data API v3 (YouTube upload)
Contributions are welcome! To add a plugin to this marketplace:
- Fork this repository
- Add your plugin to
plugins/ - Update
.claude-plugin/marketplace.json - Submit a pull request
- Issues: GitHub Issues
- Contact: contact@dansasser.me
- Website: dansasser.me
This marketplace and its plugins are licensed under the MIT License. See individual plugin directories for specific license files.
Created and maintained by Daniel T Sasser II
Part of the SIM-ONE Framework ecosystem for AI-assisted development.