Skip to content Skip to content Skip to content
HomeProducts › Agent Studio
All agents healthy
·
0 failing deploys
·
Last rollback: 3 days ago
·
agents live
Fetching earnings… Open Studio →
First £ earned in under 24 hours
Pick template (5 min) → price & deploy (45 min) → publish (5 min) → first paid call (median 3–6h) → first £ yours
78%
to you [L828]
£0.08
per £0.10 call
<24h
median to first £
Start the 24h journey →
// Intelligence OS · Agent Studio

Design, govern, and
monetise AI agents.

1,822 sovereign layers. 16 domains. 8 SDK languages. 200 markets. Build agents that deploy in minutes, earn with every call, and run even when Studio is offline.

// For individual developers, agencies, and enterprise teams — one platform, three scale points

✓ Free — no card, no expiry ✓ 78% earnings from first call ✓ WORM-sealed audit trail ⚖️ L828-IMMUTABLE 🔒 SOC2 in progress 🇪🇺 GDPR compliant ε-DP telemetry
1,822
// platform layers
78%
// earnings to you [L828]
200
// markets supported
8
// SDK languages
5%
// canary rollback threshold
// Quickstart

From zero to earning in 3 steps

No infrastructure. No DevOps. One command per step. WORM-sealed from the first deployment.

1
Install the SDK
Python 3.8+, Node 18+, or Go 1.21+
terminal
pip install forcedream
# or: npm i @forcedream/sdk
2
Create & test your agent
Visual builder or code — 8 archetypes, 100+ tools
python
from forcedream.studio import Agent
agent = Agent.create(
    name="payment-agent",
    archetype="payment_handler",
    price_per_call=0.10  # £ per call
)
agent.test()  # unit + chaos + E2E
3
Deploy canary & earn
Auto-rollback at 5% error rate. 80% to you.
terminal
fd deploy payment-agent --canary
# dev→staging→5%→25%→100%
# ✅ Live. £0.08/call to you [L828]
# 🔒 WORM-sealed · auto-rollback armed
// The earning loop

Build once. Earn from every call. Verified forever.

Studio is where you build. Runtime is where agents run. Marketplace is where others pay you. Ledger is where every £ is permanently recorded. Four systems, one platform rules guarantee.

🏗️
Agent Studio
Design, test, price, deploy with canary. Every config WORM-sealed.
YOU ARE HERE
⚙️
Agent Runtime
Executes agents 24/7. Runs even when Studio is offline. Auto-failover in <10ms.
Product details →
🏪
Marketplace
Others pay to use your agents. 80% revenue to you on every call. 7-day settlement.
Browse marketplace →
🔒
WORM Ledger
Every £ earned permanently recorded. SHA-256 chain. Independently verifiable.
Verify earnings →
// Per-agent revenue preview
£0.10
10,000
Your monthly earnings
£800
80% of £1,000 revenue [L828]
£1,000
Gross revenue
£800
To you (80%)
£175
Platform (17.5%)
£25
Investment (2.5%)

L828-IMMUTABLE · WORM-sealed per call · 7-day settlement · independently verifiable at forcedream.ai/trust/ledger

// Built for every scale

Pick your path

👨‍💻
For developers

Build in Python, TypeScript, Go, or 5 other languages. Deploy your first agent in 5 minutes. Earn 80% of every call from the first transaction — platform rules, WORM-sealed, permanent.

  • Start free — no card, no expiry
  • 8 archetypes: payment, data, classifier, router, memory, search, audit, custom
  • Canary deploy → auto-rollback at 5% error rate
  • £0.10/call → you earn £0.08 · WORM-sealed · [L828-FLOOR]
Start building free →
from forcedream.studio import Agent, earn
# Deploy a payment agent — earn from call 1
agent = Agent.create(
    name="my-agent",
    archetype="payment_handler",
    price_per_call=0.10,
    markets=["GB","NG","KE"]
)
agent.deploy(strategy="canary")
# ✅ api.forcedream.ai/agents/my-agent
# 💰 You earn: £0.08/call (80%) [L828]
# 🔒 WORM-sealed. Auto-rollback armed.
import { Agent } from '@forcedream/studio'
const agent = await Agent.create({
  name: 'my-agent',
  archetype: 'payment_handler',
  pricePerCall: 0.10,
  markets: ['GB', 'NG', 'KE']
})
await agent.deploy({ strategy: 'canary' })
// 💰 Earning: £0.08/call (80%) [L828]
🏢
For agencies & partners

Build agents for multiple clients. Each client gets isolated workspaces, billing, and agent inventories. White-label Studio from your domain. Volume discounts from 5+ workspaces.

  • Per-client workspace isolation — no data mixing
  • Consolidated billing with per-client breakdown
  • Publish to marketplace — earn on every client deployment
  • Volume discount: 10–30% for 5+ workspaces
Talk to agency team →
from forcedream.studio import WorkspaceClient
ws = WorkspaceClient(api_key="fd_live_...")
# Each client — isolated namespace, billing, agents
client_a = ws.create(name="client-acme")
client_b = ws.create(name="client-globex")
# Deploy same agent template to all clients
for ws in [client_a, client_b]:
    ws.deploy_template("payment-agent-v2")
🏛
For enterprise teams

Agent Studio is where your engineering teams build. Enterprise Bundle adds: governance, approvals, provider restrictions, ε-DP telemetry, WORM audit export, SSO/SCIM, and dedicated cluster isolation. Studio down → agents keep running.

  • Org-level governance: approvals, policies, provider allowlists
  • ε-differential privacy telemetry — individual calls unrecoverable
  • WORM audit export for SOC2, FCA, HIPAA
  • Included in Enterprise Bundle (£4,999/mo — all 36 products)
Enterprise overview →
from forcedream.enterprise import EnterpriseClient
client = EnterpriseClient(
    api_key="fd_ent_live_...",
    cluster="dedicated-uk-1",
    governance="strict",  # approvals on
    audit_level="worm_sealed"
)
# Deploy with org approval flow
agent = client.studio.submit_for_approval(
    agent_id="payment-agent-v3",
    approvers=["cto@company.com"]
)
resource "forcedream_agent" "payment" {
  name        = "payment-agent"
  archetype   = "payment_handler"
  cluster     = "dedicated-uk-1"
  governance  = "strict"
  worm_audit  = true
  epsilon_dp  = 1.0
  price_per_call = 0.10
}
// 8 SDK languages

Works in every language

Python, TypeScript, Go, PHP, Ruby, Java, C#, cURL. Copy-paste ready. Auto-generated docs for every agent you publish.

from forcedream.studio import Agent

# 1. Create workspace + agent
agent = Agent.create(
    name="payment-agent",
    archetype="payment_handler",
    tech_stack="Python",
    price_per_call=0.10,
    markets=["GB", "NG", "KE"],
    worm_sealed=True
)

# 2. Generate SDK in any language
sdk = agent.generate_sdk(language="python")

# 3. Run full test suite
results = agent.test(suite="full")
# unit=✅  integration=✅  chaos=✅  quality_gate=0.95

# 4. Deploy canary — auto-rollback at 5% error rate
deployment = agent.deploy(
    strategy="canary",
    rollback_threshold=0.05
)
# ✅ Live: api.forcedream.ai/agents/payment-agent
# 💰 You earn: £0.08/call (80%) [L828-FLOOR]
# 🔒 WORM-sealed. Hash: sha256:a3f9...
import { Agent, DeployStrategy } from '@forcedream/studio'

const agent = await Agent.create({
  name: 'payment-agent',
  archetype: 'payment_handler',
  pricePerCall: 0.10,
  markets: ['GB', 'NG', 'KE'],
  wormSealed: true,
})

const sdk = await agent.generateSdk({ language: 'typescript' })
const results = await agent.test({ suite: 'full' })

const deployment = await agent.deploy({
  strategy: DeployStrategy.Canary,
  rollbackThreshold: 0.05,
})
// 💰 Earning: £0.08/call · WORM-sealed [L828]
import "github.com/forcedream/sdk-go/studio"

agent, _ := studio.NewAgent(studio.AgentConfig{
    Name:             "payment-agent",
    Archetype:        "payment_handler",
    PricePerCall:     0.10,
    Markets:          []string{"GB", "NG", "KE"},
    WORMSealed:       true,
})
results, _ := agent.Test(studio.FullSuite)
deployment, _ := agent.Deploy(studio.CanaryStrategy{
    RollbackThreshold: 0.05,
})
// 💰 Earning: £0.08/call · WORM-sealed [L828]
# Create agent
curl -X POST https://api.forcedream.ai/api/v1/studio/agents \
  -H "Authorization: Bearer fd_live_..." \
  -d '{"name":"payment-agent","archetype":"payment_handler",
       "price_per_call":0.10,"markets":["GB","NG","KE"]}'

# Deploy canary
curl -X POST https://api.forcedream.ai/api/v1/studio/agents/payment-agent/deploy \
  -H "Authorization: Bearer fd_live_..." \
  -d '{"strategy":"canary","rollback_threshold":0.05}'

# Result: 78% earnings per call · WORM-sealed [L828]
import ai.forcedream.studio.Agent;
import ai.forcedream.studio.AgentConfig;

AgentConfig config = AgentConfig.builder()
    .name("payment-agent")
    .archetype("payment_handler")
    .pricePerCall(0.10)
    .markets(List.of("GB","NG","KE"))
    .wormSealed(true)
    .build();
Agent agent = Agent.create(config);
agent.test(TestSuite.FULL);
agent.deploy(DeployStrategy.CANARY);
// The killer motion

Paste your internal script. Get a paid agent in 90 seconds.

Your internal glue code, automation scripts, and data pipelines can become paid agents earning 80% on every call. Studio wraps, prices, and deploys them with WORM audit and canary rollout — you don't write boilerplate.

1
Paste script
Python, JS, bash, any language. Studio reads the intent.
2
Studio wraps it
Detects type, suggests archetype, sets pricing, adds WORM.
3
Review & deploy
Canary deploy, pricing confirmed, WORM-sealed. 90 seconds.
💰
First £ earned
Your glue code is now income. £0.08/call to you. Permanent.
// Studio Script Converter · AI-powered
YOUR SCRIPT
Powered by Claude · ~5 seconds
STUDIO AGENT CONFIG
# Your agent config will appear here # Studio detects: intent, archetype, # pricing, markets, and WORM settings
Scripts are not stored. The AI reads your code to suggest config only. Privacy policy →
// Pricing

Simple, transparent pricing

Start free. No card required. Pro unlocks production, marketplace publish, and canary deploy. Enterprise includes all 36 products with dedicated cluster and governance.

Free
£0
forever · no expiry

Build and test agents with no time limit. Perfect for side projects and experimentation.

  • 1,000 API calls / month
  • 1 deployed agent
  • Payments sandbox
  • 7-day log retention
  • Community support
  • Production payments
  • Marketplace publish
  • Canary deployment
Start free →
Enterprise
Included
in Enterprise Bundle · £4,999/mo

Agent Studio plus all 36 products. Dedicated cluster, enterprise governance, ε-DP, WORM audit export, SSO/SCIM.

  • Unlimited API calls & agents
  • All 36 products included
  • Dedicated cluster (no shared)
  • Org governance + approvals
  • ε-differential privacy telemetry
  • WORM audit export (SOC2/FCA/HIPAA)
  • SAML/SSO + SCIM
  • Named account manager
  • 78% earnings [L828-FLOOR]
Contact enterprise →

Prices ex-VAT · Cancel anytime · Terms →

⚖️ platform rules earnings — L828-IMMUTABLE

The 78% earnings floor is enforced by immutable infrastructure code — not a contract, not a policy. Every API call splits automatically, forever, without exception. WORM-sealed on every transaction.

// Worked example: £0.10/call
Customer pays£0.10
Platform investment (2.5%)−£0.0025
Platform operations (17.5%)−£0.0175
You earn (80%) [L828-FLOOR]£0.08
10,000 calls/month = £800/month to you
78%
// to you [L828-FLOOR]
17.5%
// platform [L828-PLATFORM]
Enforced in code — not contract WORM-sealed every transaction Independently verifiable Verify on WORM ledger →
// 16 studio domains

Everything from design to revenue in one platform

Each domain is a complete system — not a plugin, not a library. WORM-sealed audit and L828 earnings enforcement run across all 16.

🏗️
Studio Core
Multi-tenant workspace, agent registry, 1-year versioned licensing, platform rules enforcement on every config change.
L8747–L8799
🎨
Visual Builder
Drag-drop canvas with 8 agent archetypes and 100+ pre-built tools. Generate production SDKs in 8 languages from the same visual config.
L8800–L8849
🧪
Testing & Simulation
100 test wallets per market, unit + E2E + chaos suites. 80% quality gate required before production deploy — no exceptions.
L8850–L8899
🚀
Canary Deployment
dev → staging → shadow → 5% → 25% → 100% with automatic rollback if error rate exceeds 5%. Kill switch available at any stage.
L8900–L8949
📊
Observability
P50/P95/P99 latency, Welford health scores, ε-DP revenue telemetry. Individual calls unrecoverable from aggregated metrics.
L8950–L8999
🏪
Agent Marketplace
80% revenue share, 7-day settlement, WORM provenance chain. Milestone ladder from debut to verified seller. Global reach: 200 markets.
L9000–L9049
👥
Team Collaboration
Agent teams with consensus voting — 3+ votes required for critical config changes, 70% threshold for deployments, leader election protocol.
L9050–L9099
🔒
Security & Compliance
16 jailbreak patterns blocked, GDPR/SOC2/HIPAA-aligned controls, data residency enforcement, zero-trust between agents.
L9100–L9149
📚
Education & Certification
32 language localisations, all 24 tech stacks covered. WORM-sealed certification — tamper-evident credential on your profile.
L9150–L9199
Execution Engine
Parallel task execution, circuit breakers, auto-failover in under 10ms. Agents keep running even if Studio is offline.
L9350–L9399
🔌
APIs & SDKs
REST + GraphQL, 8 language SDKs auto-generated per agent. Every endpoint documented automatically from your agent config.
L9250–L9299
💳
PawaPay Payments
14 mobile money wallets, 200 markets, FX lock, bulk payouts, fraud guard. African rails native — not an afterthought.
L9400–L9449
🌍
Regional Compliance
70 dedicated layers per region. Market readiness scoring, local payment integration, regulatory compliance — deployed for each territory.
L9450–L9599
⚙️
Agent Army
Autonomous multi-agent co-ordination. Agents spawn, supervise, and retire sub-agents. platform rules earnings apply across the full tree.
L1440–L1445
🔐
WORM Audit
Every config change, deployment event, and earnings split written to a SHA-256 hash chain. Court-admissible. Independently verifiable. Never deletable.
Cross-layer
🏛️
Enterprise Governance
Org-level approvals, provider allowlists, data boundary enforcement, SCIM-synced team management. Included in Enterprise Bundle only.
Enterprise Bundle
// Curated templates

Start from a template. Edit. Publish. Earn.

16 production-ready templates across finance, healthcare, logistics, payments, and DevOps. Every template includes pricing, markets, WORM config, and canary deployment baked in. One click to open in Studio.

🏦
FCA Compliance Reporter
payment handler · finance
Automated FCA transaction reporting. WORM-sealed per MiFID II.
Suggested price
£0.15/call
Est. @ 10K calls/mo
£1,200/mo
Open in Studio →
🔍
KYC Document Checker
classifier · finance
Real-time KYC/AML screening against OFAC, UN, EU, HMT lists.
Suggested price
£0.08/call
Est. @ 10K calls/mo
£640/mo
Open in Studio →
💱
FX Rate Router
router · finance
Live FX rates across 54 currencies. Lock, convert, audit trail.
Suggested price
£0.05/call
Est. @ 10K calls/mo
£400/mo
Open in Studio →
⚠️
Transaction Anomaly Detect
classifier · finance
ML-based spend anomaly detection. Alert + WORM-seal every flag.
Suggested price
£0.12/call
Est. @ 10K calls/mo
£960/mo
Open in Studio →
⚕️
Healthcare Triage Agent
classifier · healthcare
Symptom → acuity classifier. HIPAA BAA required. FHIR R4.
Suggested price
£0.20/call
Est. @ 10K calls/mo
£1,600/mo
Open in Studio →
🧬
Clinical Trial Data Pull
data transformer · healthcare
FHIR-native patient record extraction for trial pipelines.
Suggested price
£0.25/call
Est. @ 10K calls/mo
£2,000/mo
Open in Studio →
🚚
Logistics ETA Estimator
router · logistics
Real-time ETA from telemetry + weather + customs delay signals.
Suggested price
£0.06/call
Est. @ 10K calls/mo
£480/mo
Open in Studio →
🛃
Customs Pre-Clearance
data transformer · logistics
HS code classification + duty estimation + pre-clearance filing.
Suggested price
£0.18/call
Est. @ 10K calls/mo
£1,440/mo
Open in Studio →
📱
Mobile Money Router
payment handler · payments
PawaPay + MTN MoMo + M-Pesa routing across 14 African markets.
Suggested price
£0.03/call
Est. @ 10K calls/mo
£240/mo
Open in Studio →
💳
Stripe Reconciliation
audit agent · payments
Match Stripe payouts against internal ledger. Auto-flag gaps.
Suggested price
£0.07/call
Est. @ 10K calls/mo
£560/mo
Open in Studio →
☁️
AWS Cost Anomaly Detect
classifier · devops
Daily AWS spend vs budget. Slack alert + WORM log per anomaly.
Suggested price
£0.04/call
Est. @ 10K calls/mo
£320/mo
Open in Studio →
🔐
GitHub PR Security Scan
audit agent · devops
Automated security review on PRs. OWASP + custom rules. WORM.
Suggested price
£0.09/call
Est. @ 10K calls/mo
£720/mo
Open in Studio →
LLM Cost Optimiser
router · ai
Route inference to cheapest capable model. 60–80% cost saving.
Suggested price
£0.02/call
Est. @ 10K calls/mo
£160/mo
Open in Studio →
📚
RAG Document Ingestion
data transformer · ai
Chunk, embed, and index documents with semantic dedup + WORM.
Suggested price
£0.10/call
Est. @ 10K calls/mo
£800/mo
Open in Studio →
💬
Slack Workflow Dispatcher
router · general
Turn Slack commands into structured agent tasks with receipts.
Suggested price
£0.03/call
Est. @ 10K calls/mo
£240/mo
Open in Studio →
📊
Daily Report Generator
data transformer · general
Pull data from N sources, summarise, format, deliver. WORM.
Suggested price
£0.12/call
Est. @ 10K calls/mo
£960/mo
Open in Studio →
Browse all templates in Studio → (40+ available)
// Honest comparison

Why Agent Studio vs alternatives

LangChain, CrewAI, OpenAI Assistants, and Vertex AI Agents are tools. ForceDream Agent Studio is a complete agent economy platform — with revenue, governance, audit, and 200 markets built in.

Feature ForceDream Studio LangChain CrewAI Vertex AI Agents OpenAI Assistants
Revenue & economics
Developer earnings floor✓ 80% — L828-IMMUTABLE
Built-in marketplace publishing✓ 200 marketsVertex AI Marketplace
Mobile money payments (Africa)✓ PawaPay · MTN · 14 wallets
Deployment & reliability
Canary deployment (auto-rollback)✓ 5% thresholdPartial (manual)
Agents run if platform offline✓ Runtime independencePartialPartial
SDK languages✓ 8 (auto-generated)Python onlyPython onlyPython + JavaPython + JS
Self-hosted / on-prem✓ Enterprise tier— (Google Cloud only)
Audit & compliance
WORM tamper-evident audit trail✓ SHA-256 hash chainCloud Logging
ε-differential privacy telemetry✓ ε=1.0 budget
platform rules governance✓ L828-IMMUTABLE
Multi-provider LLM routing✓ 15 providersLimitedGoogle modelsOpenAI models
// Reliability architecture

Agents keep running even if Studio goes offline

Studio is configuration — the Execution Engine is independent. Your agents continue serving requests, earning revenue, and writing WORM entries whether or not the Studio UI is reachable.

🔄
Canary deployment
New versions deploy to 5% first. Automatic rollback if error rate exceeds threshold. Every rollback is WORM-logged with the exact failure reason.
Circuit breakers
Automatic circuit breaking with configurable thresholds. Failed provider? Route to next in chain in under 10ms. No manual intervention required.
📌
Versioned configs
Every agent config change creates a new version with a WORM entry. Roll back to any previous version in one command — always recoverable.
🔒
WORM recovery
All state is WORM-sealed. Even if infrastructure fails, the full event history is recoverable from the immutable chain. No silent data loss.
🛑
Kill switch
Halt any agent instantly via API or Studio UI. Kill switch events are WORM-sealed — auditable by regulators. Re-enable requires explicit command.
📊
ε-DP telemetry
Usage metrics are ε-differentially private (ε=1.0). Individual API calls cannot be reconstructed from aggregated dashboards. Your user data stays private.
// Deployment controls

Every deploy is inspectable, adjustable, and reversible

Never-fail isn't just architecture — it's a panel you control. Adjust rollout %, flip shadow mode, hit rollback in one click. Every action WORM-sealed.

payment-agent-v3 LIVE · 25% traffic
Rollout controls
Traffic percentage 25%
1% canary25% beta100% full
Auto-rollback threshold 5%
Shadow mode
Run alongside v2 — compare without serving traffic
Live metrics — last 24h
API calls 12,847
Error rate 0.3%
P95 latency 87ms
Revenue today £84.72 → you
WORM entries 12,847 · all sealed

Full deploy panel available in app.forcedream.ai/studio · Rollback history: every version accessible · WORM-sealed

// ε-differential privacy — plain English

What "ε=1.0 privacy budget" actually means for your agents

The short version: usage telemetry collected from your agents is mathematically private. Even if someone had full access to the aggregated metrics dashboard, they could not reconstruct which individual user made which API call.

This is enforced by adding calibrated noise (Laplace mechanism) to telemetry data before it is stored or displayed. The ε=1.0 value is the privacy budget — lower values mean stronger privacy. Your user data stays yours, even from us.

// what ε-DP does
# Real API calls: 1,284 from User X
# Stored in telemetry (ε=1.0 noise):
calls_seen = 1,291  # ≈1,284 ± noise

# Attacker cannot reverse this to
# learn User X made exactly 1,284 calls
# → your users stay private

fd.telemetry.configure(epsilon=1.0)
# Pro default · Enterprise: adjustable
// 200 markets · global reach

Deploy agents in 200 markets from one platform

54 African markets, 146 global. Each market gets 70 dedicated layers: payment rails, regulatory compliance, currency handling, and market readiness scoring. Live markets are production-ready today.

🇬🇧
United Kingdom
✓ Live
🇳🇬
Nigeria
✓ Live · PawaPay
🇰🇪
Kenya
✓ Live · M-Pesa
🇪🇺
European Union
✓ Live · SEPA
🇺🇸
United States
✓ Live · Stripe
🇸🇬
Singapore
✓ Live · PayNow
🇮🇳
India
✓ Live · UPI
🇬🇭
Ghana
✓ Live · MTN MoMo
🇿🇦
South Africa
Q3 2026
🇧🇷
Brazil
Q3 2026 · PIX
🇯🇵
Japan
Q4 2026
🌍
+189 more
See all markets →
Explore African & emerging markets →
// Compliance & trust

Enterprise-grade from your first agent

🔒 SOC2 Type II
In progress · Deloitte · Q4 2026 target
🇪🇺 GDPR compliant
DPA signed at contract · UK GDPR · SCCs
⚕️ HIPAA ready
BAA available · Enterprise healthcare only
🔐 WORM audit
SHA-256 hash chain · independently verifiable
🛡 Cyber Essentials+
IASME certified · annual renewal
⚖️ L828-IMMUTABLE
platform rules earnings · in code, not contract
Trust Centre → Compliance & certs → WORM ledger → Subprocessors →
// Make it unavoidable — developer growth

Every path leads to Studio. Every agent earns from day one.

Six growth vectors designed to make Agent Studio the default choice for developers building agents globally — from Nairobi to London to Singapore.

One-command deploy
Like Vercel for AI agents. Run one command and your agent is live, earning, WORM-sealed. No config files.
terminal
npx create-forcedream-agent
# → wizard → deploy → earning
🤗
Hugging Face Spaces
Deploy any HF model or Space as a ForceDream agent in 60 seconds. Instantly earn on every inference call.
Connect HF Space →
🐙
GitHub Action
Push to main → auto-deploys to Studio with canary rollout. Add to any repo in 2 lines.
.github/workflows/deploy.yml
- uses: forcedream/deploy-action@v1
  with: { api_key: $FD_KEY }
💬
Developer community
Discord with 3 channels: #build (help), #showcase (published agents), #earnings (revenue talk). Active in 54 countries.
🌍
PPP global pricing
Pro adjusted for purchasing power parity in 54 emerging markets. Same features, locally fair pricing. Mobile money payments in 14 African markets.
Nigeria: ₦24,000/mo · Kenya: KES 3,500/mo · Ghana: GHS 400/mo
🎁
Referral programme
Refer a developer who publishes an agent: you both earn a 3-month Pro credit. Refer 5 who publish: lifetime Pro free. No cap.
Get referral link →
"Powered by ForceDream" badge — every deployed agent
Every agent you publish auto-embeds a "Powered by ForceDream Studio" badge. When a consumer asks "what built this?" — they land on this page. That's how millions find Studio.
Built with 🏗️ ForceDream Studio · Deploy your own →
🎓 Student & academic
Free Pro tier for students with a .edu or .ac.uk email. Verified once, valid for 12 months. Full features including marketplace publish. Apply →
🏆 Hackathon pack
24-hour unlimited Pro access for hackathon teams. Apply 48h before your event with a link to the hackathon page. Free, instant. Apply →
// FAQ

Frequently asked questions

L828-IMMUTABLE enforces 80% to the developer on every API call. 17.5% goes to platform operations, 2.5% to the platform investment fund. This split is enforced in infrastructure code — not a contract. It cannot be changed by ForceDream, investors, or any update. Every split is WORM-sealed. Worked example: if you charge £0.10/call, you earn £0.08 automatically, forever.

Canary deployment means your new agent version is deployed to 1% of traffic first, then automatically promoted to 5%, 25%, and 100% if the error rate stays below your threshold (default 5%). If error rate exceeds the threshold at any stage, the deployment automatically rolls back to the previous version. Every rollback is WORM-logged with the exact failure reason. This means you can never accidentally break production — the system protects you.

Nothing. Studio is the configuration layer. The Execution Engine runs independently — it reads the last WORM-sealed config and continues serving requests, earning revenue, and writing audit entries. Your agents run continuously regardless of Studio's availability. This is a design principle, not a feature: Studio down ≠ agents down.

ε-differential privacy means usage telemetry is mathematically private. Even if someone had access to your agent's aggregated metrics, they could not reconstruct which individual user made which API call. We add calibrated Laplace noise (ε=1.0) to telemetry before storage. This protects your users' privacy from us, from auditors, and from potential data breaches. Pro includes ε-DP at ε=1.0. Enterprise allows configuration.

8 languages: Python, TypeScript/JavaScript, Go, PHP, Ruby, Java, C#, and cURL. SDKs are auto-generated per agent from your visual config or code — every agent you publish generates its own SDK in all 8 languages automatically. Documentation is also generated. You do not need to write or maintain the SDK.

Payment handler, data transformer, classifier, router, memory agent, search agent, audit agent, and custom. Each archetype comes with pre-built tools, test scenarios, and deployment configs appropriate for its use case. The Visual Builder shows which tools are compatible with each archetype and blocks incompatible combinations before you deploy.

L828-IMMUTABLE enforces the 80/17.5/2.5 split at the infrastructure layer — below the application code. When a customer calls your marketplace agent, the split happens automatically before any application logic runs. It is enforced by the same WORM chain that seals every other platform event. You can verify any individual payment at GET /api/v1/worm/verify/{record_id}.

Agent Studio is one of the 36 products included in the Enterprise Bundle (£4,999/month). On Enterprise, Studio gains: org governance (approvals, provider allowlists, data boundaries), ε-DP telemetry configuration, WORM audit export (SOC2/FCA/HIPAA formats), SAML/SSO + SCIM for team management, and dedicated cluster isolation. Your developers build in Studio; your platform team governs from the Enterprise dashboard.

On-premise deployment is available as part of the Enterprise Bundle. Your data stays on your infrastructure (AWS, Azure, GCP, or bare-metal). The WORM chain runs locally with optional sync to the ForceDream ledger for independent verification. SSO, SCIM, and ε-DP telemetry all work in on-prem mode. Contact enterprise@forcedream.ai for the on-prem deployment package.

ForceDream Studio provides a migration CLI: fd migrate --from langchain --config existing_chains.py. This reads your existing chain config and generates equivalent Studio agent definitions. The migration preserves tool definitions, prompt templates, and chain logic. Most LangChain and CrewAI agents migrate in under an hour. The migrated agents get WORM audit, canary deployment, and L828 earnings automatically — no extra configuration.