Remotion Support Systems42 minAdvancedUpdated 3/2/2026
Remotion SaaS Self-Serve Support Video System for Ticket Deflection and Faster Resolution
Support teams do not need more random screen recordings. They need a reliable system that publishes accurate, role-aware, and release-safe answer videos at scale. This guide shows how to engineer that system with Remotion, Next.js, and an enterprise SaaS operating model.
📝
Remotion SaaS Self-Serve Support Video System
🔑
Remotion • SaaS Support • Ticket Deflection • Knowledge Operations
BishopTech Blog
What You Will Learn
Build a support video architecture that maps to real ticket categories and customer intent rather than generic content buckets.
Design Remotion compositions that can answer recurring support problems with high clarity and repeatable pacing.
Implement schema-validated input contracts so videos remain stable when upstream product and support data is incomplete.
Use calculateMetadata and frame-budgeting to keep videos concise while still covering critical troubleshooting details.
Version screenshots, API payload examples, and script claims so every support answer remains auditable across product releases.
Create a review model that balances support speed with engineering accuracy for high-risk topics like auth, billing, and data exports.
Distribute answer videos contextually across docs, in-app surfaces, chat flows, and email responses without duplicate sends.
Instrument engagement and resolution telemetry so your team can tie content quality to ticket deflection and time-to-resolution metrics.
Run a seven-day launch sprint that ships a first support-video lane in production without introducing operational chaos.
Evolve your support content library into a compounding SaaS asset that lowers cost-to-serve while improving customer trust.
7-Day Implementation Sprint
Day 1: Map top ticket intents, choose one high-impact support lane, and define success metrics for deflection and resolution speed.
Day 2: Publish taxonomy, risk tiers, SLAs, and TypeScript input schemas with validation rules for the first lane.
Day 3: Build core Remotion modules for framing, diagnostic flow, fix steps, verification, and escalation endings.
Day 4: Implement calculateMetadata duration budgets, shared animation primitives, and versioned evidence asset manifests.
Day 5: Wire unified scripts to narration and captions, run review routing, and validate output with support plus engineering stakeholders.
Day 6: Connect contextual distribution to docs, in-app help, and ticket macros; enable telemetry for render health and support outcomes.
Day 7: Launch the first lane, monitor live performance, run a same-day optimization retro, and lock the next expansion backlog.
Step-by-Step Setup Framework
1
Start with support intent mapping, not content brainstorming
Most support video efforts fail before the first render because teams start by brainstorming topics instead of mapping intent. Begin with your real ticket stream and segment requests by customer intent: configuration, troubleshooting, access, billing, analytics interpretation, integration edge cases, and account governance. Within each segment, isolate the top incidents by combined frequency and handling time. Then classify each issue by answer shape: quick correction, guided diagnostic, policy clarification, or workflow walkthrough. This intent map becomes your production backlog. It also prevents one of the biggest execution traps: creating polished videos for topics that are easy to answer in one sentence while high-friction tickets stay unresolved. Pull in support leads, product managers, and one engineer to validate the map so each category reflects both customer language and technical truth. By grounding the system in observed demand, you create a support video roadmap that is measurable from day one and directly connected to cost reduction and customer experience outcomes.
Why this matters: Intent-first mapping ensures every video solves a proven support problem and ties output directly to deflection potential.
2
Define a strict support content taxonomy and SLA by video type
After intent mapping, define a taxonomy that controls scope and production expectations. Use categories like rapid-answer clips, diagnostic walkthroughs, admin policy explainers, and release-impact updates. For each category, set operational boundaries: target duration, mandatory proof points, required reviewers, update SLA, and allowed distribution channels. Example: a rapid-answer clip might be 45 to 90 seconds with one validated action step and same-day publish SLA; a billing workflow explainer might require engineering plus finance review and a 72-hour publish SLA. Write this taxonomy in repository-adjacent documentation and mirror the structure in composition naming conventions. When teams skip this, every request becomes a custom project and throughput collapses. A taxonomy creates production predictability and makes intake triage objective rather than political. It also helps customer-facing teams choose the right asset format quickly when responding to tickets, onboarding emails, or escalation summaries.
Why this matters: A taxonomy with SLAs transforms support video from ad hoc content into an operational service with predictable quality and speed.
3
Model your input payloads with TypeScript and validation guards
Treat every support video request as a typed payload, not free-form copy. Define interfaces for issue category, product area, target audience role, prerequisites, known constraints, and expected user outcome. Include evidence fields for factual claims, such as doc references, release IDs, or API behavior notes. Add optional branches for plan-tier differences and region-specific behavior. Then implement validation that fails early if critical fields are missing, ambiguous, or contradictory. Support systems often ingest messy data from ticketing tools, chat summaries, or internal notes, so your render pipeline must be resilient by design. Use defaults for low-risk missing values and hard stops for high-risk omissions like billing rules or security instructions. Maintain schema versions and changelogs so older renders remain reproducible when customers ask what guidance they received at a specific date. This approach reduces hallucinated explanations and prevents downstream confusion when product behavior evolves.
Why this matters: Schema-validated inputs keep support guidance accurate, reproducible, and stable under real-world data variability.
4
Design composition modules around support resolution stages
Do not build one long universal support timeline. Build modular scenes that reflect a practical resolution arc: problem framing, environment check, diagnostic branch, fix execution, verification step, and escalation path. Each module should expose clear props and deterministic defaults so it can be reused across many incidents. A login issue and an integration issue can share framing and verification modules while using different diagnostic branches. This lowers maintenance cost and allows rapid updates when product UI changes. Keep module contracts narrow; one module should do one thing well. Use sequence boundaries and shared transition primitives so pacing remains consistent across categories. Add optional micro-modules for confidence cues, like callouts that explain why a step matters, not just what to click. These cues reduce user drop-off during technical flows. With modular architecture, your team can assemble customer-specific or channel-specific variants without cloning entire compositions.
Why this matters: Resolution-stage modules provide reusable structure that scales output while preserving clarity and engineering maintainability.
5
Implement duration governance with calculateMetadata budgets
Support videos lose effectiveness when they become mini-courses. Use calculateMetadata to compute runtime from structured inputs such as number of diagnostic checks, branch count, and instructional density. Set strict frame budgets by category and enforce runtime ceilings. If content exceeds budget, route to split-output mode: one short primary answer and one deeper follow-up module linked contextually. This keeps first-contact responses concise while preserving depth where needed. Record duration decisions in logs to explain why specific issues generated longer or shorter outputs. Build pacing constants in a single location so your team can tune system-wide speed after observing engagement data. Avoid manual timeline edits for each request; they create inconsistency and hidden production debt. A budgeted duration system supports predictable queue throughput and prevents support agents from relying on bloated assets that customers never finish.
Why this matters: Metadata-driven duration control protects watch completion, improves comprehension, and keeps production throughput stable.
6
Use frame-based animation primitives for instructional certainty
Support guidance has no tolerance for timing drift when callouts must align with exact steps. Drive motion using useCurrentFrame with interpolate or spring and keep all key transitions deterministic. Build a small primitive library: entrance fade, directional cue, step highlight pulse, error-state emphasis, and progress indicator. Reuse these primitives across all modules so users quickly understand visual language. Keep easing conservative and readable; support content should communicate authority and calm. Avoid decorative motion that competes with instruction hierarchy. Add regression tests for scenes where caption timing and UI highlight timing must stay aligned across edits. This is especially important when scripts are updated near release deadlines. Deterministic frame logic is also safer for multi-format exports because behavior remains consistent across render contexts and machines.
Why this matters: Frame-accurate animation prevents misaligned instructions and keeps troubleshooting content trustworthy.
7
Version UI and API evidence assets by release and product area
Support videos become dangerous when visuals or payload examples no longer match the live product. Establish an asset pipeline tied to release management. Capture UI states in controlled environments, tag each capture by release version and feature area, and store immutable references. For API-focused support modules, maintain versioned payload examples and response snippets with documented assumptions. Add a manifest that maps each scene to approved asset versions and run freshness checks in CI. If a scene references deprecated assets, block publish until updated or explicitly waived by an owner. Include a rollback map so you can quickly regenerate previous guidance for customers still on phased rollouts. This level of evidence management feels strict, but it prevents a common SaaS failure mode where support content lags product changes and increases ticket volume instead of reducing it.
Why this matters: Release-coupled evidence assets preserve factual accuracy and protect customer trust during rapid product iteration.
8
Unify script, narration, and captions from one source of truth
Fragmented script workflows create contradictory support guidance. Build a canonical script object containing spoken narration, on-screen text, and accessibility captions derived from the same message intent. Define channel variants inside the same object, such as a concise in-app version and a fuller email-support version, while preserving factual consistency. Enforce maximum line lengths and reading speed targets to maintain mobile readability and reduce cognitive overload for stressed users. Add terminology rules so product naming remains consistent with docs and UI labels. For multilingual support, localize from structured source strings rather than reauthoring free-form scripts. Then adjust timing budgets for expansion in translated text. A unified script model also simplifies review because reviewers can compare all output forms in one place rather than hunting across separate files and tools.
Why this matters: Single-source script systems eliminate contradiction, improve accessibility, and speed reliable localization.
9
Create risk-tier review paths that match support topic sensitivity
Not every support answer needs the same governance depth. Define review tiers based on user impact and compliance risk. Tier 1 might cover low-risk UX tips reviewed by support content owners. Tier 2 can include configuration and reporting issues requiring product or engineering verification. Tier 3 should include billing, security, identity, and data-governance topics requiring cross-functional sign-off. Encode these tiers in your intake and rendering workflow so routing is automatic and auditable. Publish reviewer SLAs and fallback owners to avoid bottlenecks when key people are unavailable. Keep rubric criteria short: factual correctness, actionability, policy compliance, and channel appropriateness. This prevents review from becoming subjective design debate. Risk-tiered governance gives teams speed on routine content while ensuring critical answers are never rushed out with unverified claims.
Why this matters: Tiered review models protect users from high-impact mistakes without slowing down everyday support operations.
10
Connect distribution to support context and customer role
Publishing answer videos to one static knowledge page leaves most value unrealized. Distribution should be context-aware and role-aware. Link each video category to delivery surfaces: docs embed blocks, in-app help drawers, ticket reply macros, chatbot follow-ups, and lifecycle emails. Use issue metadata to choose the right variant for admins, operators, or executives. Add idempotency controls to avoid duplicate sends when workflows retry. Include expiration handling so obsolete links cannot circulate long after updates. For high-friction incidents, support agents should be able to send an answer clip plus one precise next step in the same message template. Track whether customers watched and completed the action to inform follow-up logic. Contextual distribution turns videos from passive assets into active resolution accelerators.
Why this matters: Contextual delivery ensures the right guidance reaches the right person at the right moment, increasing resolution speed.
11
Instrument observability across render health and support outcomes
A support video program without telemetry quickly devolves into opinion-driven effort. Instrument two data layers. First, pipeline health metrics: render time, failure rates by module, retry counts, distribution success, and queue latency. Second, customer outcome metrics: watch completion, step abandonment points, ticket reopen rates, first-response resolution, and average handling time changes after video adoption. Correlate these layers so you can distinguish operational failures from content-quality failures. Build dashboards readable by support managers and engineering leads without manual interpretation. Add alerts for spikes in failed renders or sudden drops in completion for high-volume topics. With this visibility, optimization conversations become concrete: improve module timing, rewrite specific scripts, refresh assets, or adjust routing rules. Observability is what makes this a system, not a content experiment.
Why this matters: Telemetry connects production reliability to customer impact, enabling evidence-based optimization instead of guesswork.
12
Design the knowledge handshake between docs and video modules
Written docs and support videos should reinforce each other, not compete. Create a knowledge handshake model where each ticket-class article links to one short answer video and each video links back to the canonical article for detailed steps, caveats, and changelog context. Structure docs so headings map to module identifiers. This lets your team update one concept and propagate consistency across formats. Add metadata tags for product area, account tier relevance, and release compatibility, then use these tags in both docs navigation and video retrieval. For customers with low bandwidth or strict access environments, docs remain the default while video is optional enrichment. For customers struggling with complex sequences, video becomes the lead format while docs provide verification depth. This handshake improves comprehension and reduces redundant ticket escalations.
Why this matters: Docs-video alignment creates a coherent support experience and reduces contradiction across channels.
13
Build escalation-aware endings that prevent dead-end guidance
Many support videos explain the fix but fail to explain what to do when the fix does not work. Every module should end with explicit verification criteria and escalation paths. Include conditions that indicate successful resolution, common failure symptoms that require escalation, and the exact context users should provide when opening follow-up tickets. For higher-tier customers, include role-aware escalation contacts or paths. Keep these endings concise but concrete so users do not re-enter support loops with incomplete information. Add structured capture prompts that encourage users to provide environment details, timestamps, and error identifiers. This reduces back-and-forth and shortens diagnostic cycles. Escalation-aware endings are especially important for integration and data sync topics where outcomes depend on external systems outside your immediate control.
Why this matters: Strong endings convert one-way explanations into complete resolution workflows that reduce repeat contacts.
14
Engineer multi-format delivery without duplicating scene logic
Support content is consumed in web docs, mobile apps, chat threads, and email clients. Build layout adapters for aspect ratios and safe zones while keeping narrative logic shared. Do not fork compositions per channel; that guarantees drift and doubles maintenance after every release. Instead, define responsive typography scales, callout density rules, and fallback placements that adapt by viewport class. Validate each critical module in at least one landscape and one portrait output. Generate stable poster frames and concise thumbnails to improve scannability in dense help centers. For enterprise clients with strict IT policies, provide fallback codec presets and downloadable options with clear retention controls. Shared-logic multi-format delivery expands reach without fragmenting ownership or introducing inconsistent instructions across channels.
Why this matters: Channel-adaptive outputs maximize accessibility while preserving one maintainable source of instructional truth.
15
Embed security and compliance controls into the content pipeline
Support answers often touch sensitive operations: authentication, permissions, exports, billing, and API credentials. Add controls at authoring and infrastructure layers. In authoring, enforce banned phrase policies, placeholder requirements for sensitive values, and explicit mention rules for security-critical actions. In infrastructure, apply access controls to render inputs and artifacts, encrypt stored outputs when policy requires, and log who generated and published each asset. Define retention policies by topic sensitivity and customer tier. For regulated accounts, generate a lightweight attestation bundle containing schema versions, reviewer approvals, and distribution timestamps. This helps customer trust conversations and reduces compliance friction during renewals. Security controls should not be bolted on after launch; they must be a first-class part of the system design.
Why this matters: Built-in compliance safeguards prevent accidental data exposure and strengthen enterprise trust in support operations.
16
Create release-sync workflows so support guidance ships with product changes
If support videos update weeks after product releases, you create a trust gap. Integrate support video planning into release rituals. During feature freeze, identify impacted support modules, assign update owners, and queue asset refresh requirements. During release candidate validation, run quick render checks for affected modules and verify doc links. At release launch, publish updated answer assets in sync with changelog communication. After launch, monitor incident tags for mismatch signals that indicate guidance drift. This release-sync cadence prevents support from becoming a lagging function and turns content into part of your product reliability posture. It also reduces emergency rework because updates are planned instead of reactive.
Why this matters: Release-synchronized updates keep support guidance accurate when customers need it most: immediately after change.
17
Run a monthly optimization loop grounded in behavior and ticket economics
Optimization should focus on measurable impact, not aesthetic preference. Run a monthly review that combines video engagement signals, ticket outcomes, and qualitative agent feedback. Prioritize improvements by blended impact: topic volume, average handling cost, and customer frustration severity. Scope experiments narrowly, such as revising one intro pattern, tightening one diagnostic branch, or changing one distribution trigger. Record hypotheses before rollout and evaluate outcomes after a fixed window. Retire low-performing assets and promote high performers to default response macros. Share results with support, product, and leadership to maintain cross-functional support for the program. Over time, this cadence builds a compounding library where each iteration improves both customer autonomy and team efficiency.
Why this matters: Behavior-led optimization turns support content into a durable cost and experience advantage.
18
Operationalize ownership with a clear RACI and on-call readiness
Support video systems fail when ownership is vague. Publish a RACI that assigns responsibility for intake, scripting, engineering implementation, asset freshness, QA approvals, and distribution operations. Pair this with an on-call model for pipeline incidents and urgent content corrections. Define severity levels, triage playbooks, communication templates, and rollback conditions. Keep runbooks in the same repository as code and update them through pull requests so process changes are reviewable. Run quarterly drills that simulate broken renders, stale assets, or incorrect published guidance to validate detection and recovery speed. Ownership clarity protects program continuity when team members rotate and reduces key-person risk in high-growth SaaS environments.
Why this matters: Explicit ownership and readiness practices make support video delivery resilient under real production pressure.
19
Scale from first lane to full support coverage with phased expansion
Do not attempt full-library coverage at launch. Start with one high-impact lane, such as login/access issues or integration setup, and prove measurable deflection within a short cycle. Once metrics validate value, expand horizontally by intent category and vertically by customer tier complexity. Reuse core modules and refine taxonomy rather than creating net-new structures each phase. Track the cost-to-produce versus cost-to-serve savings so expansion decisions stay economically grounded. As coverage grows, establish governance checkpoints to prevent duplication and enforce archival standards. A phased model keeps complexity manageable and ensures each expansion wave inherits tested architecture, tooling, and workflows instead of repeating early mistakes.
Why this matters: Phased scaling preserves quality and economics while turning early wins into a sustainable support content platform.
20
Create a support-content experimentation framework that compounds team knowledge
Once the system is live, you need a disciplined experimentation layer so quality improves predictably instead of drifting through random edits. Build a lightweight framework with three experiment classes: comprehension experiments, conversion-to-action experiments, and deflection economics experiments. Comprehension tests focus on whether users can correctly execute steps after watching. Conversion-to-action tests measure whether viewers complete the intended next step, such as reconnecting an integration, updating permissions, or validating webhook status. Deflection economics tests quantify whether revised modules reduce ticket volume and handling time enough to justify production effort. For each experiment, define one hypothesis, one primary metric, one decision threshold, and one fixed measurement window. Avoid running large bundles of changes; isolate variables so causality is clear. Document experiment setup in the same repository as your module code and link outcomes to affected scenes, script sections, and distribution triggers. Include both quantitative results and structured support-agent observations because front-line feedback often catches ambiguity before metrics fully surface it. Over several cycles, this framework produces a knowledge base of what actually helps customers self-resolve faster. New contributors can learn from prior evidence, not guesswork, and leadership can fund expansion with confidence because improvements are tied to defensible outcomes.
Why this matters: A formal experimentation framework turns incremental edits into compounding operational intelligence, improving support outcomes over time.
Business Application
Support leaders can reduce repetitive ticket load by pairing top macros with short, high-clarity answer videos tied to exact issue classes.
Customer success teams can proactively send role-based troubleshooting modules before high-risk rollout milestones to prevent avoidable escalations.
Platform teams can publish release-safe diagnostic explainers as part of launch readiness, reducing post-release chaos and confusion.
Product organizations can use deflection telemetry from support videos to identify UX friction hotspots and prioritize roadmap fixes.
Revenue teams can improve renewal confidence by demonstrating a mature, fast, and trustworthy self-serve support experience for enterprise buyers.
Implementation teams can reuse support modules in onboarding and admin enablement flows, reducing duplicated content effort across departments.
Agencies delivering SaaS systems can package support-video OS operations as a premium managed service with measurable outcomes.
Operations leadership can lower cost-to-serve by replacing low-value synchronous support interactions with accurate asynchronous guidance.
Common Traps to Avoid
Creating support videos based on guesses rather than ticket evidence.
Build roadmap priorities from intent-segmented ticket data and handling-time impact.
Treating every request as a custom one-off production job.
Use a strict taxonomy and reusable modules so throughput scales without quality collapse.
Publishing unvalidated technical claims under time pressure.
Require schema checks, evidence fields, and risk-tier reviewer sign-off for sensitive topics.
Letting screenshots and payload examples drift after releases.
Version assets by release and enforce CI freshness checks before publishing.
Ignoring what happens if the suggested fix fails.
Include verification criteria and escalation paths in every module ending.
Measuring views but not support outcomes.
Track deflection, reopen rates, and resolution time alongside engagement telemetry.
Splitting docs and video ownership into isolated silos.
Run a docs-video handshake model with shared tags, references, and update workflows.
Scaling coverage too quickly before proving one lane.
Launch one high-impact lane first, validate economics, then expand in phases.
More Helpful Guides
System Setup11 minIntermediate
How to Set Up OpenClaw for Reliable Agent Workflows
If your team is experimenting with agents but keeps getting inconsistent outcomes, this OpenClaw setup guide gives you a repeatable framework you can run in production.
Why Agentic LLM Skills Are Now a Core Business Advantage
Businesses that treat agentic LLMs like a side trend are losing speed, margin, and visibility. This guide shows how to build practical team capability now.
Next.js SaaS Launch Checklist for Production Teams
Launching a SaaS is easy. Launching a SaaS that stays stable under real users is the hard part. Use this checklist to ship with clean infrastructure, billing safety, and a real ops plan.
SaaS Observability & Incident Response Playbook for Next.js Teams
Most SaaS outages do not come from one giant failure. They come from gaps in visibility, unclear ownership, and missing playbooks. This guide lays out a production-grade observability and incident response system that keeps your Next.js product stable, your team calm, and your customers informed.
SaaS Billing Infrastructure Guide for Stripe + Next.js Teams
Billing is not just payments. It is entitlements, usage tracking, lifecycle events, and customer trust. This guide shows how to build a SaaS billing foundation that survives upgrades, proration edge cases, and growth without becoming a support nightmare.
Remotion SaaS Video Pipeline Playbook for Repeatable Marketing Output
If your team keeps rebuilding demos from scratch, you are paying the edit tax every launch. This playbook shows how to set up Remotion so product videos become an asset pipeline, not a one-off scramble.
Remotion Personalized Demo Engine for SaaS Sales Teams
Personalized demos close deals faster, but manual editing collapses once your pipeline grows. This guide shows how to build a Remotion demo engine that takes structured data, renders consistent videos, and keeps sales enablement aligned with your product reality.
Remotion Release Notes Video Factory for SaaS Product Updates
Release notes are a growth lever, but most teams ship them as a text dump. This guide shows how to build a Remotion video factory that turns structured updates into crisp, on-brand product update videos every release.
Remotion SaaS Onboarding Video System for Product-Led Growth Teams
Great onboarding videos do not come from a one-off edit. This guide shows how to build a Remotion onboarding system that adapts to roles, features, and trial stages while keeping quality stable as your product changes.
Remotion SaaS Metrics Briefing System for Revenue and Product Leaders
Dashboards are everywhere, but leaders still struggle to share clear, repeatable performance narratives. This guide shows how to build a Remotion metrics briefing system that converts raw SaaS data into trustworthy, on-brand video updates without manual editing churn.
Remotion SaaS Feature Adoption Video System for Customer Success Teams
Feature adoption stalls when education arrives late or looks improvised. This guide shows how to build a Remotion-driven video system that turns product updates into clear, role-specific adoption moments so customer success teams can lift usage without burning cycles on custom edits. You will leave with a repeatable architecture for data-driven templates, consistent motion, and a release-ready asset pipeline that scales with every new feature you ship, even when your product UI is evolving every sprint.
Remotion SaaS QBR Video System for Customer Success Teams
QBRs should tell a clear story, not dump charts on a screen. This guide shows how to build a Remotion QBR video system that turns real product data into executive-ready updates with consistent visuals, reliable timing, and a repeatable production workflow your customer success team can trust.
Remotion SaaS Training Video Academy for Scaled Customer Education
If your training videos get rebuilt every quarter, you are paying a content tax that never ends. This guide shows how to build a Remotion training academy that keeps onboarding, feature training, and enablement videos aligned to your product and easy to update.
Remotion SaaS Churn Defense Video System for Retention and Expansion
Churn rarely happens in one moment. It builds when users lose clarity, miss new value, or feel stuck. This guide shows how to build a Remotion churn defense system that delivers the right video at the right moment, with reliable data inputs, consistent templates, and measurable retention impact.
Remotion SaaS Incident Status Video System for Trust-First Support
Incidents test trust. This guide shows how to build a Remotion incident status video system that turns structured updates into clear customer-facing briefings, with reliable rendering, clean data contracts, and a repeatable approval workflow.
Remotion SaaS Implementation Video Operating System for Post-Sale Teams
Most SaaS implementation videos are created under pressure, scattered across tools, and hard to maintain once the product changes. This guide shows how to build a Remotion-based video operating system that turns post-sale communication into a repeatable, code-driven, revenue-supporting pipeline in production environments.
Remotion SaaS Release Rollout Control Plane for Engineering, Support, and GTM Teams
Shipping features is only half the job. If your release communication is inconsistent, late, or disconnected from product truth, customers lose trust and adoption stalls. This guide shows how to build a Remotion-based control plane that turns every release into clear, reliable, role-aware communication.
Reading creates clarity. Implementation creates results. If you want the architecture, workflows, and execution layers handled for you, we can deploy the system end to end.