MeshFlow
  • Cloud PlatformDeployIntegrationsInit CLIWhy MeshFlow
  • DocsLearn
  • CustomersCertificationBlogChangelogCommunity
  • Pricing
Sign inGet started
Pricing
Sign inGet started
MeshFlow

The production-safe standard for agentic AI.
Apache 2.0 — free forever.

Product
  • Pricing
  • Cloud
  • Compare
  • Init CLI
  • Changelog
Docs
  • Quickstart
  • Core concepts
  • Compliance guide
  • Token optimization
  • API reference
Resources
  • Blog
  • Customers
  • Community
  • PyPI
  • GitHub
Company
  • Discord
  • Twitter
  • Security
  • License
MeshFlow © 2026 · Yaya Systems · Apache 2.0
All systems operational
MeshFlowdocs
Search docs...⌘K
v1.13.0 GitHub Discord
Getting startedQuickstartInstallationCore conceptsHarness architectureSkills vs ToolsSandbox mode
GuidesBuilding agentsMulti-agent workflowsModel RoutersCost AnalyticsCompliance guideToken optimization
Claude & AIAdvisor patternThinking budgetsDynamic workflowsContext compactionTool streaming
Governancemeshflow-forensicZero-Trust PoliciesSOC 2 assertionEU AI ActProduction Readiness
IntegrationsOpenAI Agents SDKLangGraphCrewAIMCP ToolsTypeScript SDKOTel / OTLPAutoGen 0.4+
API ReferenceWorkflowAgentCostCapAdvisorAgentCostRegressionGate
Docs/Guides/Compliance guide

Compliance guide

MeshFlow ships compliance profiles for HIPAA, SOX, GDPR, PCI, and NERC, plus sensitive-data detection, guardrails, policy-as-code, and tamper-evident audit records.

Architecture-first compliance
MeshFlow's compliance is enforced in code, not in prompts. Deterministic code-level enforcement does not fail under adversarial inputs.

What's active by default

python
# Standard policy is the default governance posture
agent = Agent(name="assistant", role="executor")

# Add stricter profiles and guardrails for regulated workflows.
# Ledger records preserve replay and audit evidence for each run.

HIPAA configuration

python
from meshflow import Agent, PIIBlockGuardrail, compliance_profile

hipaa = compliance_profile("hipaa").to_policy()
agent = Agent(
name="clinical_assistant",
role="executor",
policy=hipaa,
input_guardrails=[PIIBlockGuardrail()],
output_guardrails=[PIIBlockGuardrail()],
)
Previous
Multi-agent workflows
Next
Token optimization
On this pageWhat's active by defaultHIPAA configuration