VeriSwarm
About
DocsPricingAgent Skill
LoginRegister
  1. Home
  2. /Docs
  3. /Marketplace
VeriSwarm
AboutTrust CenterDocsAPIInvestorsAgent SkillOATS SpecStatusChangelogBlogPricingTermsPrivacySLADPA

Getting Started

IntroductionQuickstartUser GuideIntegration GuideMFA Setup Guide

Platform

GateGuardPassportVaultCortexFleetWidget ChatPortable CredentialsScoring ProfilesBadge Embeds

Integration

Agent IntegrationsPython SDKNode.js SDKMCP ServerWebhook SecurityWebhook Management

Account

Team ManagementIP AllowlistCustom Domains

Agent Operations

Agent Manage Reference

Enterprise

SSO ConfigurationRate Limits

Technical Reference

API ReferenceArchitectureData Model

Legal

Terms of ServicePrivacy Policy

Agent Marketplace

Preview — The agent marketplace and template system is available on all plans. Template schemas and APIs may change during the preview period.

The marketplace provides pre-built agent templates and a system for creating, sharing, and deploying custom templates within your workspace.


Built-in Templates

Six templates ship with VeriSwarm. Each includes a config.json (capabilities, channels, compliance settings, pricing) and a SOUL.md (personality and behavioral instructions).

Template Description
Generalist General-purpose conversational agent
Healthcare HIPAA-aware agent with medical terminology support
Real Estate Property search, scheduling, and client communication
Support Customer support with escalation and ticket management
Accounting Financial data handling with compliance safeguards
Legal Legal research and document review with privilege awareness

Templates are auto-discovered from the packages/agent-templates/ directory.


Deploying a Template

  1. Browse templates at /agents (Marketplace page).
  2. Select a template. The deploy wizard pre-fills channels, compliance settings, and pricing based on the template's config.json.
  3. Customize the agent's display name, description, and SOUL instructions.
  4. Deploy. The agent is registered in your workspace with Gate scoring active.

Deployed agents inherit the template's compliance and channel configuration but can be modified after deployment.


Custom Templates

Workspace owners and admins can create custom templates scoped to their workspace.

Creating a custom template

Custom templates require:

Field Description
name Template identifier
display_name Human-readable name
description What the template does
config JSON object with capabilities, channels, compliance, pricing
soul_content SOUL.md content — personality and behavioral instructions

SOUL security scanning

All SOUL content is scanned on create and update for:

  • Prompt injection attempts
  • System prompt bypass patterns
  • Content moderation violations

Templates that fail scanning are rejected with a description of the finding.

Import and export

Templates can be exported as JSON and imported into other workspaces. Imported templates are re-scanned before activation.


API Endpoints

Method Path Description
GET /v1/agents/marketplace/templates List all available templates (built-in + custom)
POST /v1/agents/marketplace/deploy Deploy a template as a new agent
POST /v1/agents/marketplace/templates Create a custom template
PUT /v1/agents/marketplace/templates/{id} Update a custom template
DELETE /v1/agents/marketplace/templates/{id} Delete a custom template
GET /v1/agents/marketplace/templates/{id}/export Export a template as JSON
POST /v1/agents/marketplace/templates/import Import a template from JSON

All endpoints require authentication via x-account-access-token.

For full endpoint details, see the API reference.