FLOW MASON
Beta Time Travel Debugging & Live Prompt Iteration

Universal AI Workflow
Infrastructure

Build, debug, and deploy intelligent pipelines with VSCode. The Salesforce DX approach to AI workflows — file-based development with database-backed production.

$ pip install flowmason
summarizer.py
# Define an AI-powered component with just a decorator
from flowmason_core import node, NodeInput, NodeOutput, Field

@node(name="summarizer", category="reasoning")
class SummarizerNode:
    class Input(NodeInput):
        text: str = Field(description="Text to summarize")
        max_length: int = 200

    class Output(NodeOutput):
        summary: str
        word_count: int

    async def execute(self, input: Input, context) -> Output:
        response = await context.llm.generate(
            prompt=f"Summarize in {input.max_length} chars: {input.text}"
        )
        return self.Output(
            summary=response.text,
            word_count=len(response.text.split())
        )
5,500+
Stages/second
0.18ms
Per-stage overhead
100+
Parallel stages
50+
Built-in components

Benchmarks measured under controlled conditions. Performance varies by environment.

Production Ready

The complete AI pipeline platform

Everything you need to design, execute, debug, and deploy intelligent workflows. From idea to production in minutes.

Visual Pipeline Builder

Design pipelines visually in VSCode with a DAG canvas editor. Drag, drop, and connect stages with instant validation.

Eden AI Integration

Access 20+ AI services with one API key: transcription, TTS, summarization, translation, sentiment analysis, and more.

Time Travel Debugging

Step forwards and backwards through execution history. Inspect data at any point, edit prompts mid-run, and see results instantly.

Vector Database Support

Build RAG pipelines with Pinecone, ChromaDB, and Weaviate. OpenAI embeddings with semantic search built-in.

Audio & Speech

Transcribe with Whisper/Deepgram, generate speech with ElevenLabs/OpenAI TTS. Voice cloning support.

Document Intelligence

Extract text from PDFs, images, and forms with Azure Document Intelligence. OCR with layout analysis.

Multi-Language SDKs

Run pipelines from Python, TypeScript, or React applications with full streaming support and type safety.

Data Connectors

Connect to PostgreSQL, MongoDB, Redis, and S3. SQL transforms, aggregations, and joins built-in.

Compliance & Governance

Built-in compliance evaluators, policy lookup, and rule engines. Citation tracking for verifiable AI outputs.

VSCode Native

Not another browser-based builder

FlowMason lives in your IDE. Get IntelliSense, Git integration, keyboard shortcuts, and the full power of VSCode.

  • IntelliSense & autocomplete
  • Full Debug Adapter Protocol
  • Test Explorer integration
  • Git-friendly file format
Hybrid Model

Salesforce DX-style workflow

Develop locally with file-based pipelines, deploy to staging for testing, push to production with database-backed runtime.

LOCAL STAGING PRODUCTION
.pipeline.json → PostgreSQL → API Runtime
Fast iteration Version control Full observability

Built for real-world applications

From content generation to data processing, FlowMason powers production workflows across industries.

DevOps & CI/CD

Automate deployment pipelines, run tests, deploy to staging and production, and rollback on failures with intelligent orchestration.

CI/CD automation Blue-green deploys Rollback workflows Release management

IT Operations

Monitor services, respond to incidents automatically, perform AI root cause analysis, and escalate when needed.

Health monitoring Incident response Auto-remediation Log analysis

Content Generation

Build pipelines that generate blog posts, marketing copy, product descriptions, and more with AI-powered refinement loops.

Blog post generation Marketing copy Product descriptions Social media content

API Integration

Orchestrate REST APIs, webhooks, and data synchronization across multiple services with parallel execution.

Multi-API orchestration Webhook processing Data sync ETL pipelines

Customer Support

Automate ticket triage, generate response suggestions, and route inquiries to the right teams.

Ticket classification Response drafting Sentiment analysis Escalation routing

Research Assistant

Summarize documents, answer questions from knowledge bases, and synthesize information from multiple sources.

Document summarization Q&A systems Knowledge synthesis Report generation

Ready to build intelligent pipelines?

Get started in minutes with our CLI and VSCode extension. No credit card required.

Simple, transparent pricing

Start free, scale as you grow. No hidden fees.

Free

Free forever

Get started with FlowMason at no cost.

  • Unlimited local pipelines
  • Full VSCode extension
  • All built-in components
  • CLI tools
  • Community support
Get Started
Most Popular

Pro

Coming Soon

Team features for production AI workflows.

  • Everything in Free
  • Team collaboration
  • Staging environments
  • Priority support
  • Advanced analytics
  • Custom components
Join Waitlist

Enterprise

Contact Us

For organizations with advanced requirements.

  • Everything in Pro
  • SSO/SAML authentication
  • Role-based access control
  • Audit logging
  • On-premise deployment
  • Dedicated support
  • Custom integrations
Contact Sales

All plans include access to the full component library and documentation. API costs for LLM providers (OpenAI, Anthropic, etc.) are billed separately by those providers.

Works with your favorite AI providers

Anthropic
OpenAI
Google
Groq
Perplexity
Eden AI
Ollama