Claude Code Skills & Plugins Marketplace
Discover, install, and use powerful AI-powered skills for Claude Code
Production-Ready |
AI Models |
Core Features |
Open Source |
Dev Marketplace is a distribution platform for Claude Code skills and plugins. It provides a curated collection of production-ready AI tools that extend Claude Code's capabilities.
|
|
/plugin marketplace add https://github.com/davendra/dev-marketplace/plugin install go-bananas@dev-marketplaceexport GO_BANANAS_API_KEY=sk_live_your_key_hereGet your API key at gobananasai.com
The flagship skill of Dev Marketplace. Go Bananas provides comprehensive AI image generation capabilities powered by Google Gemini 2.5 (Flash and Pro models).
| Feature | Description |
|---|---|
| Image Generation | Create images from detailed text prompts |
| Conversational Editing | Natural language image refinement with session memory |
| Character Consistency | Save characters once, generate unlimited consistent scenes |
| Product Marketing | URL-based product references for e-commerce campaigns |
| Style Presets | Reusable prompt templates for consistent branding |
| Batch Operations | Generate multiple variations for A/B testing |
Choose the right model for your needs:
| Feature | Gemini Flash | Gemini Pro |
|---|---|---|
| Speed | 3-5 seconds | 8-15 seconds |
| Resolution | Up to 1K | Up to 4K |
| Text Rendering | Basic | Advanced (SOTA) |
| Character References | Up to 3 | Up to 5 |
| Web Grounding | No | Yes |
| Best For | Fast iteration | High-quality output |
square, portrait, landscape
1:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9, 21:9
| Feature | Description |
|---|---|
| Resolution Tiers | 1K, 2K, 4K output options |
| 14 Reference Images | 6 with high-fidelity identity locking |
| Text & Infographics | State-of-the-art text rendering |
| Thinking Mode | Enhanced reasoning for complex prompts |
| Google Search Grounding | Factual accuracy with sources |
| 360 Turnaround | Multiple angles from single reference |
| Photo Restoration | Repair damaged photos |
| High-Fidelity Upscaling | Small images to 4K |
- Claude Code CLI installed
- Node.js 18+ (for npm installation method)
- API key from gobananasai.com
# Add the marketplace
/plugin marketplace add https://github.com/davendra/dev-marketplace
# Install Go Bananas
/plugin install go-bananas@dev-marketplace# Install globally
npm install -g @go-bananas/claude-pluginAdd to your shell profile (.bashrc, .zshrc, etc.):
export GO_BANANAS_API_KEY=sk_live_your_api_key_herecurl -X POST https://gobananasai.com/api/images \
-H "X-API-Key: $GO_BANANAS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "A serene mountain landscape at golden hour, photorealistic",
"aspectRatio": "16:9"
}'# After generating an image, continue editing naturally
curl -X POST https://gobananasai.com/api/images/continue \
-H "X-API-Key: $GO_BANANAS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"prompt": "Add dramatic clouds and make the colors more vibrant"
}'# 1. Create a character
curl -X POST https://gobananasai.com/api/characters \
-H "X-API-Key: $GO_BANANAS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "RoboBot",
"basePrompt": "friendly chrome robot mascot with blue LED eyes",
"referenceImages": [42]
}'
# 2. Generate scenes with your character
curl -X POST https://gobananasai.com/api/characters/RoboBot/generate \
-H "X-API-Key: $GO_BANANAS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"scene": "waving in a modern office setting"
}'# 1. Save a product reference
curl -X POST https://gobananasai.com/api/products \
-H "X-API-Key: $GO_BANANAS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Chrome Arrow",
"imageUrl": "https://example.com/product.jpg"
}'
# 2. Generate marketing images
curl -X POST https://gobananasai.com/api/products/Chrome%20Arrow/generate \
-H "X-API-Key: $GO_BANANAS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"scene": "on a marble desk with warm lighting"
}'Detailed documentation is available in the skill directories:
| Document | Description |
|---|---|
| SKILL.md | Main skill guide with setup and examples |
| models.md | Gemini Flash vs Pro comparison |
| use-cases.md | Workflow templates and examples |
| prompt-patterns.md | Prompt engineering best practices |
| rest-api.md | REST API reference |
Want to contribute a skill to Dev Marketplace? Follow this structure:
skills/
└── your-skill-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── SKILL.md # Main skill documentation
├── README.md # Quick start guide
├── package.json # NPM package (optional)
└── [additional docs] # Feature-specific documentation
{
"name": "your-skill-name",
"version": "1.0.0",
"description": "Brief description of your skill",
"author": {
"name": "Your Name",
"email": "your@email.com"
},
"category": "development"
}| Issue | Solution |
|---|---|
| "Invalid API key" | Verify GO_BANANAS_API_KEY is set correctly |
| "Rate limit exceeded" | Wait 60 seconds and retry |
| "Quota exceeded" | Check your account at gobananasai.com |
| "Plugin not found" | Re-add marketplace and reinstall skill |
| "Connection failed" | Check internet connection and API status |
| Code | Meaning |
|---|---|
| 400 | Bad request - check your parameters |
| 401 | Unauthorized - invalid or missing API key |
| 429 | Rate limit exceeded - wait and retry |
| 500 | Server error - try again later |
Skills Synced from Source
- Updated
skills/go-bananas/models.md- Expanded model comparison and capabilities - Updated
skills/go-bananas/prompt-patterns.md- Additional prompting techniques - Updated
skills/go-bananas/rest-api.md- Updated API documentation - Updated
skills/go-bananas/use-cases.md- New workflow examples
Initial Release
- Added Go Bananas skill - AI image generation with Google Gemini
- Added Workflow Diagrams skill - Mermaid to visual diagram conversion
- Marketplace structure with plugin.json manifest
- NPM distribution support with postinstall script
MIT License - See LICENSE file for details.
- Powered by Google Gemini API
- Built for Claude Code
- Implements Claude Code Plugin architecture