Publishing Templates
The Publisher tab helps you package and submit your templates to the Deeployd Store.
Overview
Publishing allows you to:
- Share templates with your organization
- Sell templates on the marketplace
- Distribute templates to specific teams
Publishing Options
Private (Workspace Only)
const template = await client.templates.create({
name: 'Internal IT Support',
visibility: 'workspace',
sourceAgentId: 'agent-123'
});
Public (Store)
const listing = await client.store.publish({
templateId: 'template-123',
listing: {
title: 'IT Support Agent',
description: 'Complete IT helpdesk solution',
category: 'it-support',
pricing: { type: 'free' }
}
});
Paid Listing
const listing = await client.store.publish({
templateId: 'template-123',
listing: {
title: 'Enterprise Support Suite',
description: 'Full-featured enterprise support agent',
category: 'enterprise',
pricing: {
type: 'paid',
price: 4999, // $49.99 in cents
currency: 'usd'
}
}
});
Pre-Publishing Checklist
Before publishing, ensure:
- System prompt is complete and tested
- Schema has clear field descriptions
- Orchestration rules are configured
- Template has been tested with real conversations
- Documentation is complete
- Screenshots are prepared
Publishing Workflow
1. Review
The Publisher tab shows:
- Template configuration summary
- Completeness score
- Potential issues
2. Configure Listing
Set marketplace details:
- Title and description
- Category and tags
- Pricing
- Screenshots
3. Submit for Review
Templates are reviewed for:
- Quality and completeness
- Security and safety
- Policy compliance
4. Approval
After approval:
- Template appears in store
- Users can install and use it
- You receive notifications of installs/sales
Vendor Program
To sell templates, join the Vendor Program:
- Apply at Security Center > Vendor
- Complete profile verification
- Set up payment via Stripe
- Start publishing paid templates
Best Practices
Descriptions
Write clear, informative descriptions:
# IT Support Agent
A complete IT helpdesk solution that handles:
- Password resets and account issues
- Software installation requests
- Hardware troubleshooting
- Ticket creation and tracking
## Requirements
- ServiceNow integration (optional)
- Email notification setup
## Setup Time
5-10 minutes
Screenshots
Include screenshots showing:
- Agent in action
- Configuration interface
- Example conversations
- Key features
Pricing
Consider:
- Complexity of the template
- Value provided to users
- Comparable templates
- Your vendor tier (affects commission)
Related: Vendor Program | Store Overview