Skip to main content

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:

CategoryExamples
AssistantPersonal assistants, schedulers, researchers
SupportCustomer service, help desk, FAQ bots
CodingCode reviewers, documentation writers, debuggers
WritingContent creators, editors, translators
AnalysisData analysts, report generators
AutomationTask automators, workflow managers
IntegrationConnectors 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

ModelDescription
FreeNo cost, install and use immediately
One-TimeSingle purchase, lifetime access
SubscriptionMonthly or yearly billing
FreemiumFree tier with paid upgrades

For Vendors

Monetize Your Expertise

Turn your agents into products:

  1. Build an agent that solves a real problem
  2. Apply to the vendor program
  3. Publish to the store
  4. 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:

TierCommissionRequirements
Starter20%New vendors
Verified15%10+ sales, 4.0+ rating
Partner10%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
}

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

BadgeRequirements
SilverVerified tier, Pro+ subscription
Gold50+ sales, 4.5+ rating
Platinum100+ 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

  1. Go to Store in the dashboard
  2. Browse or search for agents
  3. Read reviews and compare options
  4. Click Install (free) or Purchase
  5. Configure and start using

As a Vendor

  1. Meet eligibility requirements
  2. Apply to the vendor program
  3. Complete verification steps
  4. Publish your first listing
  5. Track sales and earnings

Next: Learn how to browse and discover agents in the store.