ACRYX Framework v2.0

Deploy Geo-Sentient AI Agents at the Edge.

A high-performance Multi-Agent System (MAS) for spatial-temporal orchestration. Move beyond cloud bottlenecks with 100% edge-native, privacy-preserving infrastructure.

bash - acryx-cli
~ npm install @acryx/core
added 142 packages in 3s
~ acryx deploy --strategy spatial
Initializing Multi-Agent Matrix...
✓ Spatial Sentinel: Synced (LBS active)
✓ Predictive Core: Local LLM Loaded
✓ Auto-Executor: Standing by
[SUCCESS] Geo-Sentient Engine running at edge.
~

Built for the Autonomous Era

ACRYX provides the fundamental primitives required to build, deploy, and scale spatial-aware applications without relying on centralized cloud compute.

Ultra-Low Latency

Execute complex orchestration logic entirely on the edge. Bypass cloud round-trips for sub-millisecond response times in critical physical environments.

Privacy by Design

Built-in Federated Learning capabilities. Your users' spatial trajectories and behavioral data never leave their personal devices.

Multi-Agent Synergy

Out-of-the-box coordination between local monitors, predictive cores, and action executors, simplifying complex decentralized workflows.

System Architecture

A decoupled, composable engine designed for high-throughput spatial reasoning.

The Multi-Agent Matrix

Spatial Sentinel

Ingests multi-modal data streams (LBS, RF metrics, local sensors) to construct an ambient awareness graph.

Predictive Core

On-device LLMs process graphs to deduce intents, forecast spatial congestions, and plan optimal orchestrations.

@acryx/infer

Autonomous Executor

Translates predictions into actionable API calls, networking slice requests, or UI rendering commands.

Core Modules

v2.1

Hyper-LBS

Sub-meter accuracy leveraging telecom triangulations.

v1.4

Edge-Native LLMs

Lightweight models executing entirely on local devices.

Core

Federated Protocol

Continuous model sync without transmitting raw data.

v2.0

Dynamic Graphs

Real-time mapping of physical/digital relationships.

Enterprise Solutions

Three implementation scenarios demonstrating the power of Geo-Sentient orchestration.

Zero-Click Orchestration

Bridging Physical & Digital Realities

ACRYX agents autonomously dismantle the barriers between physical environments and digital ecosystems, orchestrating seamless interactions without human intervention.

Use Case: Tech Expo Navigation When a user enters the perimeter, the Agent instantly validates location to prevent spoofing, pushes an immersive AR quest, and securely deposits digital assets upon completion via enterprise APIs.

Agent Terminal
Anti-Spoofing Auth Passed
LBS_CONFIRMED
Trigger
Deploy AR Quest
Execution
Credit Wallet API
Predictive Autonomy

Elastic Resource Allocation

Traditional AI solves problems post-occurrence; ACRYX Agents predict spatial-temporal shifts and deploy infrastructure preemptively.

Use Case: Urban Marathon Infrastructure The Predictive Agent ingests trajectories 48 hours in advance, autonomously negotiating 5G/6G network slice expansions and alerting regional retail APIs to initiate hyper-local scaling protocols.

Resource Forecast

T-48H Projection

Autoscaling Triggered
Telecom Slice Bandwidth +450%
Traffic Routing Nodes Rerouted
Retailer API Webhooks Fired (1.2k)
Decentralized Edge

Privacy-First Personal AI

ACRYX decentralizes its intelligence, launching edge-native agents that act as personal spatial concierges, securing your data completely on-device.

Use Case: Local Service Negotiation When businesses request foot traffic, their Cloud Agents initiate a zero-knowledge match request. Your Local Edge Agent negotiates privately, accepting offers that match your strict preferences without exposing raw identity.

Merchant Cloud Agent
Zero-Knowledge Barrier
Personal Edge Agent

Company Overview

Pioneering Edge-Native AI from our Singapore Headquarters.

Redefining Realities

ACRYX is dedicated to the development of Multi-Agent Systems (MAS). We believe the future of intelligence shouldn't be confined to cloud-based interfaces; it must possess "spatial awareness" to deeply integrate into the physical world.

Through our proprietary Geo-Sentient architecture, we empower enterprises with decentralized, privacy-first, and highly autonomous agent infrastructure.

HQ
Singapore
2026
Global Rollout
Global Operations
Global Operations
Radiating edge networks worldwide
Documentation

Introduction to ACRYX

ACRYX is an open-core framework designed to build, deploy, and orchestrate Geo-Sentient AI Agents purely at the edge. It abstracts away the complexity of LBS (Location-Based Services) validation, federated learning, and spatial graph construction.

Quick Start

The easiest way to get started with ACRYX is using the official CLI tool. Ensure you have Node.js 18.0 or later installed.

Terminal
npm install -g @acryx/cli
acryx init my-spatial-app
cd my-spatial-app
acryx dev

Configuration

Agents are configured via the acryx.config.json file located in your project root.

acryx.config.json
{
  "version": "2.0",
  "edge_mode": true,
  "agents": {
    "sentinel": { "lbs_precision": "sub-meter" },
    "predictive": { "llm_backend": "local-llama-3-8b" }
  }
}

Note on Edge Models

If your target device lacks sufficient memory for the 8B parameter model, ACRYX will automatically fallback to the quantized 3B model via federated sync.

Geo-Sentient Agents

Agents are the core operational units within the ACRYX ecosystem. Unlike traditional bots, Geo-Sentient Agents possess awareness of their physical hardware location, network topology, and immediate spatial surroundings (via LBS APIs).

Edge-Native LLMs

We ship heavily quantized, specialized Large Language Models (LLMs) ranging from 1B to 8B parameters. These models run via WebAssembly or native core ML runtimes directly on the edge node, ensuring 0ms network latency and zero data egress.

Spatial Graphs

A Spatial Graph is a real-time data structure representing the physical relationships between localized devices, POIs (Points of Interest), and network infrastructure. It is dynamically constructed and destroyed as devices move through physical space.

CLI Commands Reference

Command Description
acryx init <dir> Scaffolds a new ACRYX project in the specified directory.
acryx deploy Compiles and pushes the agent matrix to target edge nodes.
acryx sync Force synchronizes the local LLM weights via federated nodes.

Node.js SDK

For deep integrations, import the core library directly into your Node.js or edge runtime environments.

import { AgentMatrix, LBSValidator } from '@acryx/core';

const matrix = new AgentMatrix();
await matrix.initialize();

Ready to Build at the Edge?

Integrate the ACRYX Framework into your infrastructure today and unlock spatial autonomy.

Read the Docs