Store Overview
The Deeployd Store is a curated ecosystem where vendors publish, sell, and support AI agents. Discover pre-built solutions or become a vendor and monetize your creations.
How It Works
Vendors Buyers
┌─────────────┐ ┌─────────────┐
│ Create │ │ Browse │
│ Agent │ │ Store │
└─────┬───────┘ └─────┬───────┘
│ │
▼ ▼
┌─────────────┐ ┌─────────────┐
│ Submit for │ │ Preview & │
│ Review │ │ Compare │
└─────┬───────┘ └─────┬───────┘
│ │
▼ ▼
┌─────────────┐ ┌─────────────┐
│ AI Quality │ │ Purchase or │
│ Check │ │ Install │
└─────┬───────┘ └─────┬───────┘
│ │
▼ ▼
┌─────────────┐ ┌─────────────┐
│ Publish │ │ Deploy & │
│ to Store │ │ Configure │
└─────────────┘ └─────────────┘
For Buyers
Discover Pre-Built Agents
Find agents for any use case:
| Category | Examples |
|---|---|
| Assistant | Personal assistants, schedulers, researchers |
| Support | Customer service, help desk, FAQ bots |
| Coding | Code reviewers, documentation writers, debuggers |
| Writing | Content creators, editors, translators |
| Analysis | Data analysts, report generators |
| Automation | Task automators, workflow managers |
| Integration | Connectors for external services |
One-Click Installation
// Install from store
await client.store.install('listing-123');
// Creates a new agent in your workspace
// Pre-configured with the vendor's settings
// Ready to use immediately
Pricing Options
| Model | Description |
|---|---|
| Free | No cost, install and use immediately |
| One-Time | Single purchase, lifetime access |
| Subscription | Monthly or yearly billing |
| Freemium | Free tier with paid upgrades |
For Vendors
Monetize Your Expertise
Turn your agents into products:
- Build an agent that solves a real problem
- Apply to the vendor program
- Publish to the store
- Earn from every sale
Revenue Model
Sale Price: €100
├─ Stripe Fee: €3.19 (2.9% + €0.30)
├─ Platform Fee: €19.36 (20% of net)
└─ Your Payout: €77.45
Commission rates decrease as you grow:
| Tier | Commission | Requirements |
|---|---|---|
| Starter | 20% | New vendors |
| Verified | 15% | 10+ sales, 4.0+ rating |
| Partner | 10% | 50+ sales, 4.5+ rating |
Quality Standards
Every listing goes through AI-powered review:
- Safety scan for harmful content
- Tool analysis for security
- Content check for completeness
- Pricing validation for fairness
Categories
Assistant
Personal and professional assistants that help with daily tasks, scheduling, research, and organization.
Support
Customer service agents, help desk bots, FAQ responders, and ticket handlers.
Coding
Development assistants for code review, documentation, debugging, refactoring, and testing.
Writing
Content creators, blog writers, editors, translators, and copywriters.
Analysis
Data analysts, report generators, trend analyzers, and business intelligence tools.
Automation
Workflow automators, task schedulers, process managers, and integration orchestrators.
Integration
Pre-built connectors for external services like CRMs, ERPs, and productivity tools.
Store Statistics
const stats = await client.store.getStats();
// Returns
{
totalListings: 1250,
totalInstalls: 45000,
totalReviews: 8900,
averageRating: 4.3
}
Featured Listings
Discover hand-picked quality agents:
const featured = await client.store.getFeatured();
// Returns top 6 featured listings
for (const listing of featured.data) {
console.log({
name: listing.name,
category: listing.category,
rating: listing.rating,
installs: listing.installCount,
price: listing.productPricing
});
}
Trust & Safety
Verified Purchases
Only users who actually purchased/installed can leave reviews.
AI-Powered Review
Every submission is scanned for:
- Jailbreak attempts
- Prompt injection risks
- Harmful instructions
- Excessive permissions
Vendor Badges
| Badge | Requirements |
|---|---|
| Silver | Verified tier, Pro+ subscription |
| Gold | 50+ sales, 4.5+ rating |
| Platinum | 100+ sales, 4.8+ rating, €50K+ revenue |
Refund Policy
- Full refund: Within 14 days
- Partial refund: 14-30 days (50%)
- No refund: After 30 days
API Access
Full store access via API:
import { Deeployd } from '@deeployd/sdk';
const client = new Deeployd({ apiKey: 'your-key' });
// Browse listings
const listings = await client.store.browse({
category: 'assistant',
pricing: 'free',
sortBy: 'popular'
});
// Get listing details
const listing = await client.store.get('listing-123');
// Install
await client.store.install('listing-123');
// Leave review
await client.store.createReview('listing-123', {
rating: 5,
title: 'Excellent assistant',
content: 'Saved hours of work every week.'
});
Getting Started
As a Buyer
- Go to Store in the dashboard
- Browse or search for agents
- Read reviews and compare options
- Click Install (free) or Purchase
- Configure and start using
As a Vendor
- Meet eligibility requirements
- Apply to the vendor program
- Complete verification steps
- Publish your first listing
- Track sales and earnings
Next: Learn how to browse and discover agents in the store.