Mandate bundles
Pre-packaged sets of mandates for specific compliance frameworks: ISO 27001, NIST CSF, PCI DSS Level 1, FedRAMP.
The Defiant Marketplace is where teams publish and install extensions: custom agent skills, vertical pack additions, mandate bundles, and integration adapters. Everything in the marketplace is versioned, signed, and checked for license compliance (MIT/Apache/BSD only — mandate_8 applies to marketplace packages).
Mandate bundles
Pre-packaged sets of mandates for specific compliance frameworks: ISO 27001, NIST CSF, PCI DSS Level 1, FedRAMP.
Agent skills
New capabilities for existing agents: deploy to Railway, Fly.io, or AWS; integrate with Linear, Jira, or Notion.
Vertical pack extensions
Additions to existing verticals: Fintech + crypto, Healthcare + clinical trials, B2B SaaS + usage-based billing.
Integration adapters
Ambassador-compatible adapters for services not built into Defiant: Twilio, SendGrid, PlanetScale, Cloudflare R2.
# Browse available packagesdefiant marketplace search --category mandate-bundle
# Install a packagedefiant marketplace install @defiant-marketplace/iso-27001
# List installed packagesdefiant marketplace list
# Update a packagedefiant marketplace update @defiant-marketplace/iso-27001
# Remove a packagedefiant marketplace remove @defiant-marketplace/iso-27001| Package | Description | Mandates added |
|---|---|---|
@defiant-marketplace/iso-27001 | ISO/IEC 27001:2022 information security controls | 18 |
@defiant-marketplace/nist-csf | NIST Cybersecurity Framework 2.0 | 24 |
@defiant-marketplace/pci-level1 | PCI DSS Level 1 (> 6M transactions/year) | 31 |
@defiant-marketplace/fedramp-moderate | FedRAMP Moderate baseline | 47 |
@defiant-marketplace/soc2-type2 | SOC 2 Type II evidence collection hooks | 12 |
| Package | Description | Agents extended |
|---|---|---|
@defiant-marketplace/deploy-fly | Deploy to Fly.io | Launcher |
@defiant-marketplace/deploy-railway | Deploy to Railway | Launcher |
@defiant-marketplace/deploy-aws | Deploy to AWS (ECS, Lambda) | Launcher |
@defiant-marketplace/linear-tracker | Update Linear issues on sprint complete | Scribe |
@defiant-marketplace/jira-tracker | Update Jira tickets on sprint complete | Scribe |
@defiant-marketplace/notion-docs | Write sprint summaries to Notion | Scribe |
@defiant-marketplace/slack-notify | Send sprint notifications to Slack | Scribe, Launcher |
| Package | Description |
|---|---|
@defiant-marketplace/twilio | SMS and voice for Ambassador |
@defiant-marketplace/cloudflare-r2 | Object storage adapter |
@defiant-marketplace/planetscale | PlanetScale DB adapter for Ambassador |
@defiant-marketplace/upstash-redis | Redis adapter (Upstash) |
@defiant-marketplace/neon | Neon serverless Postgres adapter |
my-defiant-package/ package.json # name, version, description, license, keywords manifest.yaml # declares what this package provides mandates/ # mandate YAML files (if mandate-bundle) skills/ # skill definitions (if agent-skill) integrations/ # integration YAML (if integration-adapter) tests/ # tests for your package README.mdname: "@myorg/my-mandate-bundle"version: "1.0.0"type: mandate-bundle # mandate-bundle | agent-skill | vertical-extension | integration-adapterdescription: "ISO 27001:2022 mandate bundle for Defiant projects"license: MITauthor: "My Organization <dev@myorg.com>"defiant_version: ">=2.0.0"
# For mandate-bundles:mandates: - mandates/iso27001_a5.yaml - mandates/iso27001_a6.yaml # ...
# For agent-skills:skills: - agent: launcher skill: deploy.railway file: skills/deploy-railway.js
# For integration-adapters:integrations: - integrations/railway.yamlAll marketplace packages must be signed with an Ed25519 key registered with your Defiant account:
# Generate a signing keydefiant marketplace keys generate
# Sign a packagedefiant marketplace sign ./my-defiant-package
# Publishdefiant marketplace publish ./my-defiant-packageThe Marketplace team reviews all submissions for:
Review typically takes 2-5 business days. Once approved, the package is published and available for install.
Enterprise customers can run a private Marketplace registry for internal packages:
{ "marketplace": { "registry": "https://marketplace.internal.yourorg.com", "allowPublic": true // allow public marketplace in addition to private }}Internal packages are not reviewed by the Defiant team and are the organization’s responsibility to validate.