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

REPROCESS EDGES

Re-evaluate world model edges when the underlying data improves. Deletes edges below a confidence threshold and re-runs their compiled skill patterns for fresh scores. No model calls. No tokens.

The LLM compiled each skill once. REPROCESS EDGES runs the same compiled patterns again — against updated world model data — and produces new edges with recalculated confidence scores.

Syntax#

REPROCESS EDGES WHERE confidence < <threshold>

Example#

REPROCESS EDGES WHERE confidence < 0.7

This:

  1. Finds all derived edges with confidence < 0.7
  2. Identifies the skill that produced each edge (via skill_id provenance)
  3. Deletes the stale edges
  4. Re-executes the compiled pattern for those node pairs
  5. Materializes new edges with fresh confidence scores from current world model data

When to use it#

The world model is live. As new sensor observations arrive, existing derived edges can become stale — they were scored against older data. REPROCESS EDGES closes that loop:

-- New sensor data arrived with higher reliability readings
-- Refresh any co-occupancy edges that were scored below threshold
 
REPROCESS EDGES WHERE confidence < 0.75
-- => 12 ZONE_PEER edges re-evaluated
-- => avg confidence improved from 0.68 to 0.84

Scoped reprocessing#

Target a specific skill or relationship type:

-- Only refresh co-detection edges
REPROCESS EDGES WHERE confidence < 0.8
  AND type = 'CO_DETECTED'
 
-- Only refresh edges from an older skill version
REPROCESS EDGES WHERE skill_version < 3

How confidence improves without a new model call#

The compiled pattern scores edges from properties already in the graph — sensor reliability, detection confidence on existing relationships, zone hazard levels. When those upstream values improve (a sensor is recalibrated, a detection is corroborated by a second sensor), re-running the same pattern against the updated data produces a higher score.

The LLM authored the scoring logic. The graph engine executes it against current values.

Sensor s1 recalibrated: reliability 0.72 → 0.94
                  ↓
REPROCESS EDGES WHERE confidence < 0.75
                  ↓
  ZonePeerDetector compiled pattern re-runs
  Scores edge (Atlas-01, Rover-02) using s1.reliability = 0.94 now
  New confidence: 0.61 → 0.89

Relationship to skill versions#

REPROCESS EDGES re-runs the current compiled pattern of each skill. If you want the re-evaluation to use a new rule, create a new skill version first:

-- Recompile with a richer rule (one LLM call)
CREATE SKILL ZonePeerDetector_v2
  FROM PROMPT 'Link two Robot nodes as ZONE_PEER if they share a zone
               AND combined detection confidence exceeds 0.80'
  ALLOWED ON [Robot]
  TIER SYMBOLIC
 
-- Refresh all weak edges with the new compiled pattern (zero LLM)
REPROCESS EDGES WHERE confidence < 0.75

Old edges carry skill_version: 1. Refreshed edges carry skill_version: 2. Both are traceable in the provenance chain.

See Also#

  • CREATE SKILL — where the LLM compiles your rule (once)
  • PROCESS NODE — initial materialization of derived edges
  • Confidence & Provenance — how edges carry scores and evidence chains
  • Concepts: Skills — the compile-once model explained
Try it
Open ↗⌘↵ to run
Loading engine…
← PreviousPROCESS NODENext →CLI