ArcFlow
Company
Managed Services
Markets
  • News
  • LOG IN
  • GET STARTED

OZ brings Visual Intelligence to physical venues, a managed edge layer that lets real-world environments see, understand, and act in real time.

Talk to us

ArcFlow

  • World Models
  • Sensors

Managed Services

  • OZ VI Venue 1
  • Case Studies

Markets

  • Sports
  • Broadcasting
  • Robotics

Company

  • About
  • Technology
  • Careers
  • Contact

Ready to see it live?

Talk to the OZ team about deploying at your venues, from a single pilot match to a full regional rollout.

Schedule a deployment review

© 2026 OZ. All rights reserved.

LinkedIn
ArcFlow Docs
Get Started
  • Get Started
  • Quickstart
  • Installation
  • Project Setup
  • Platforms
  • Bindings
  • Licensing
  • Pricing
Capabilities
  • Vector Search
  • Graph Algorithms
  • Sync
  • MCP Server (AI Agents)
  • Live Queries
  • Programs
  • Temporal
  • Spatial
  • Trusted RAG
  • Behavior Graph
  • Agent-Native
  • Event Sourcing
  • GPU Acceleration
  • Intent Relay
Concepts
  • World Model
  • Graph Model
  • Query Language (GQL)
  • Graph Patterns
  • SQL vs GQL
  • Parameters
  • Query Results
  • Persistence & WAL
  • Error Handling
  • Observations & Evidence
  • Confidence & Provenance
  • Proof Artifacts & Gates
  • Skills
GQL / WorldCypher
  • Overview
  • MATCH
  • WHERE
  • RETURN
  • OPTIONAL MATCH
  • CREATE
  • SET
  • MERGE
  • DELETE
  • REMOVE
  • WITH
  • UNION
  • UNWIND
  • CASE
  • Spatial Queries
  • Temporal Queries
  • Algorithms Reference
  • Triggers
Schema
  • Overview
  • Indexes
  • Constraints
  • Data Types
Functions
  • Built-in Functions
  • Aggregations
  • Procedures
  • Shortest Path
  • EXPLAIN
  • PROFILE
Skills
  • Overview
  • CREATE SKILL
  • PROCESS NODE
  • REPROCESS EDGES
Operations
  • CLI
  • REPL Commands
  • Snapshot & Restore
  • Server Modes & PG Wire
  • Persistence
  • Import & Export
  • Docker
  • Architecture
  • Cloud Architecture
  • Sync Protocol (Deep Dive)
Guides
  • Agent Integration
  • World Model
  • Graph Model Fundamentals
  • Trusted RAG
  • Using Skills
  • Behavior Graphs
  • Swarm & Multi-Agent
  • Migration Guide
  • Filesystem Workspace
  • From SQL to GQL
  • ArcFlow for Coding Agents
  • Data Quality & Pipeline Integrity
  • Code Intelligence
Tutorials
  • Knowledge Graph
  • Entity Linking
  • Vector Search
  • Graph Algorithms
Recipes
  • CRUD
  • Multi-MATCH
  • MERGE (Upsert)
  • Full-Text Search
  • Temporal Queries
  • Batch Projection
  • GraphRAG
Use Cases
  • Agent Tooling
  • Knowledge Management
  • RAG Pipeline
  • Fraud Detection
  • Sports Analytics
  • Grounded Neural Objects
  • Behavior Graphs
  • Autonomous Systems
  • Digital Twins
  • Robotics & Perception
Reference
  • TypeScript API
  • GQL Conformance
  • Compatibility Matrix
  • Glossary
  • Data Types
  • Operators
  • Error Codes
  • Known Issues

Intent Relay

The OZ Intent Relay is contribution infrastructure — submit a described intent, receive a signed compiled artifact. No source code access required. OZ's build agents implement the change, run the test suite, and sign the binary. You get a production-grade artifact without touching the engine internals.

Developer                        OZ Build Relay                    ArcFlow Source
┌──────────────┐    Intent       ┌──────────────────┐              ┌─────────────┐
│ "Fix the bug │───────────────→ │ Sandboxed build  │─────────────→│ Private     │
│  where X     │                 │ AI agent         │              │ source code │
│  happens"    │   Artifact      │ implements fix   │              │             │
│              │←─────────────── │ runs tests       │←─────────────│             │
│              │                 │ signs binary     │              │             │
└──────────────┘                 └──────────────────┘              └─────────────┘

How it works#

1. Write an intent#

An intent describes what you want, not how to implement it:

{
  "category": "bug_fix",
  "description": "MERGE with ON CREATE SET creates duplicates when the match key contains a dash character",
  "motivation": "Breaks our entity resolution pipeline when IDs contain hyphens",
  "test_cases": [
    {
      "input": "MERGE (n:Entity {id: 'abc-123'}) ON CREATE SET n.name = 'test'",
      "expected_output": "1 node created on first run, 0 on second run",
      "description": "Idempotent MERGE with hyphenated ID"
    }
  ],
  "context": "Reproduction: run the MERGE twice, count(*) returns 2 instead of 1"
}

2. Submit via CLI#

arcflow-relay submit --category bug_fix --description "..." --test-case "..."

Or via the API:

curl -X POST https://relay.oz.com/v1/intents \
  -H "Authorization: Bearer bsk_your_key" \
  -H "Content-Type: application/json" \
  -d '{ "category": "bug_fix", "description": "...", "test_cases": [...] }'

3. Receive artifacts#

The relay:

  1. Spawns an isolated, sandboxed build session
  2. AI agent implements the change against the private source
  3. Runs the full test suite + your test cases
  4. Signs the compiled artifact (Ed25519)
  5. Returns the binary + test results
{
  "status": "pass",
  "artifact": {
    "url": "https://relay.oz.com/artifacts/abc123.dylib",
    "hash": "sha256:...",
    "signature": "ed25519:..."
  },
  "tests": {
    "total": 654,
    "passed": 654,
    "failed": 0,
    "your_tests": { "total": 1, "passed": 1 }
  },
  "summary": "Fixed MERGE match predicate to handle hyphenated string keys correctly."
}

4. Use the artifact#

The custom artifact is a drop-in replacement:

# Replace the standard binary
cp artifact.dylib node_modules/arcflow/arcflow.darwin-arm64.node
 
# Everything works the same, with your fix included

5. Promotion#

If the change passes OZ's quality review, it gets promoted to the official release. You get:

  • Credit in the changelog
  • Early access (14 days before general availability)

Intent categories#

CategoryWhen to use
bug_fixSomething doesn't work as documented
featureNew functionality needed
performanceExisting feature is too slow
compatibilityIntegration issue with a specific platform/tool

Service tiers#

TierIntents/dayConcurrent sessionsArtifact retentionPrice
Community317 daysFree
Professional10390 daysContact
EnterpriseCustom10+1 year+Annual contract

Security#

  • Each build runs in process-level isolation (sandboxed)
  • No outbound network access during builds
  • Maximum 30 minutes per intent
  • All artifacts signed with Ed25519
  • Artifact signature verification built into the SDK

What the relay never returns#

  • Source code, diffs, or patches
  • Internal file paths or function signatures
  • Build logs beyond pass/fail
  • Internal test source code

CLI reference#

arcflow-relay submit     # Submit an intent
arcflow-relay status     # Check intent status
arcflow-relay artifacts  # List your artifacts
arcflow-relay verify     # Verify artifact signature

A2A Protocol#

The relay uses the Agent-to-Agent (A2A) protocol for communication. Each intent is wrapped in an A2A Message with structured Parts (text description, test cases, context).


See Also#

  • Agent-Native Database — the integration surfaces the relay routes to
  • MCP Server — cloud chat UI integration for agents without local shell access
  • Skills — declarative relationship rules: another way to add world model features
Try it
Open ↗⌘↵ to run
Loading engine…
← PreviousGPU AccelerationNext →World Model