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.
# 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())
) Benchmarks measured under controlled conditions. Performance varies by environment.
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.
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
Salesforce DX-style workflow
Develop locally with file-based pipelines, deploy to staging for testing, push to production with database-backed runtime.
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.
IT Operations
Monitor services, respond to incidents automatically, perform AI root cause analysis, and escalate when needed.
Content Generation
Build pipelines that generate blog posts, marketing copy, product descriptions, and more with AI-powered refinement loops.
API Integration
Orchestrate REST APIs, webhooks, and data synchronization across multiple services with parallel execution.
Customer Support
Automate ticket triage, generate response suggestions, and route inquiries to the right teams.
Research Assistant
Summarize documents, answer questions from knowledge bases, and synthesize information from multiple sources.
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
Get started with FlowMason at no cost.
- Unlimited local pipelines
- Full VSCode extension
- All built-in components
- CLI tools
- Community support
Pro
Team features for production AI workflows.
- Everything in Free
- Team collaboration
- Staging environments
- Priority support
- Advanced analytics
- Custom components
Enterprise
For organizations with advanced requirements.
- Everything in Pro
- SSO/SAML authentication
- Role-based access control
- Audit logging
- On-premise deployment
- Dedicated support
- Custom integrations
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