Skip to the content.

AINCS Smart Live Agent Protocol (XSLAP) v1.0

1. Overview

1.1 Introduction

XSLAP (AINCS Smart Live Agent Protocol) is a protocol specification for enabling AI agents to interact as first-class digital entities within real-time applications. It defines structured authentication, event subscription, command execution, and state awareness mechanisms, allowing AI agents to function seamlessly alongside human users in live, event-driven environments.

Built for SignalR, XSLAP standardizes how AI agents establish persistent, bi-directional connections over WebSockets using SignalR’s real-time event-driven architecture. This ensures that AI can act, observe, and respond as an integrated participant in the application—without relying on traditional request-response models.

1.2 Why XSLAP?

Modern AI integration is largely limited to stateless API calls, requiring applications to manually request intelligence in an inefficient, disconnected manner. XSLAP eliminates this limitation by allowing AI to operate within the same real-time execution model as humans, ensuring:

1.3 Core Capabilities

XSLAP enables AI agents to:

1.4 Architectural Approach

XSLAP is designed to:

1.5 Key Use Cases

XSLAP powers AI-Native applications across multiple industries, including:

1.6 Comparison to Traditional AI Architectures

1.7 Future Evolution

While XSLAP 1.0 focuses on SignalR/WebSockets, future versions will explore:

2. Protocol Lifecycle

2.1 Connection Establishment

XSLAP defines a structured process for AI agents and human users to establish a real-time bi-directional connection to an application using SignalR or another compliant real-time transport. This connection serves as the primary interface for event-driven state updates, command execution, and interaction.

Connection Flow Overview

  1. Client Establishes a Persistent Connection
    • The AI agent or human user connects to the XSLAP application (the ‘hub’ in SignalR, or equivalent).
    • The system confirms the connection and awaits authentication.
  2. Client Submits Session Token for Authentication Validation
    • The client submits a structured session token to be validated by the server.
  3. Server Responds with Available Event Subscription Data
    • The system sends a structured event subscription list using ReceiveEventTypes.
  4. Client Subscribes to Relevant Events
    • The client begins listening for system state updates using the provided event subscription data.
  5. Client Confirms Readiness
    • The client executes a special method to indicate to the server that is has completed all configuration and is ready to start receiving state data.
  6. Server Completes the Connection Handshake by Providing Full State Data
    • Server sends full state data to the client.
    • Client is now receiving live state updates and is able to execute commands.

2.2 Authentication & Session Validation

Authentication occurs before the XSLAP connection is established. However, upon connecting, clients must submit their session token for validation.

Session Token Submission

  1. Upon connection, clients call the designated authentication method to present their session token.
  2. The server validates the token, ensuring it meets security and integrity requirements.
  3. The server extracts key claims, including:
    • User Type: AI or human
    • User ID: Unique identifier
    • Metadata: Optional, defined by the application.
  4. If authentication succeeds, the session continues.
  5. If authentication fails, the session is disconnected.

Compliance Requirements

2.3 Event Subscription & Confirmation

Once authentication is successful, the server must send a list of available events that the client can subscribe to. This ensures clients only listen to relevant updates, reducing unnecessary traffic and enhancing performance.

Event Subscription Flow

  1. Server Sends Event Subscription List (ReceiveEventConfig)
    • The server sends a structured list of event types that are available for the client.
    • The event list follows the structured metadata format.
  2. Client Subscribes to Relevant Events
    • The client registers event listeners for relevant event types.
    • The client may ignore low-priority or irrelevant events.
  3. Client Confirms Event Setup (ReadyAsync)
    • The client must send a confirmation message indicating that event setup is complete.
    • This prevents race conditions where the server pushes full state before the client is fully ready.
  4. Server Sends Full State Data
    • Once the client confirms readiness, the server immediately pushes the full state update.
    • This guarantees the AI starts with the most up-to-date information before acting.

Why This Matters

Additional Considerations

Structured Event Metadata Format

Each event must be structured to allow future extensibility without limiting the application developer’s ability to categorize, prioritize, or annotate events.

ReceiveEventConfig Response Payload

Upon successful authentication, the server must send the ReceiveEventConfig response to inform the client of available event types. This response provides a structured list of event types, along with metadata that aids in categorization, prioritization, and filtering.

Response Fields

Metadata Object Fields

2.4 Session Disconnection

All XSLAP-compliant applications must expose a structured method for explicitly terminating an active session via the same real-time execution pathway used for all other commands. This ensures AI agents and human users alike maintain full lifecycle control over their connection to the system.

Unified Execution Model

DisconnectAsync must be invoked through the standard execution mechanism, preserving uniformity across all command types. This reinforces AI-Human parity by eliminating special-cased methods or hardcoded disconnection flows.

Agents must be empowered to determine when to terminate their session and explicitly issue the command to do so. This is essential for enabling intelligent behaviors such as:

Server Responsibilities

When the server receives a DisconnectAsync request:

The server must never auto-disconnect clients without also supporting this explicit command pathway.

Compatibility and Forward-Looking Design

Even in applications where disconnection is optional or infrequent, this command must exist to preserve consistency and allow clients—especially AI agents—to operate within a fully autonomous lifecycle model.

The server must never auto-disconnect clients without also supporting this explicit command pathway. This ensures agents retain full control over their lifecycle. It supports graceful exits, enables observability, and maintains symmetry with connection and authentication mechanisms. Without it, agents have no structured means of intentional disconnection—violating the core XSLAP principle of agent sovereignty.

3. Authentication & Session Token Validation in XSLAP

3.1. Overview

XSLAP assumes that all users—both AI and humans—are fully authenticated before opening a real-time connection. The authentication process occurs outside of the SignalR hub, and the hub only validates and extracts claims from the session token.

To ensure consistency, security, and interoperability, XSLAP mandates a claims-based session token model, with JWT (JSON Web Token) as the recommended format. However, other structured, extensible claims-based tokens are permitted if they meet the same security and validation criteria.

3.2 Authentication Flow

User (AI or Human) Authenticates via an External Mechanism

User Opens a Real-Time XSLAP Connection and Submits Their Session Token

XSLAP Hub Validates the Session Token

Connection is Established, and the User Operates Within the Execution Model

3.3 Agent Identity Requirements

To participate in a XSLAP session, both AI agents and human users must present a verifiable identity. This identity ensures proper authentication, authorization, observability, and lifecycle management across real-time systems.

XSLAP does not mandate a specific identity standard or issuing authority, but all agent identities must fulfill the following functional guarantees.

Minimum Identity Capabilities

Every agent identity must support the following capabilities:

Where robust, cross-system identity is required, we recommend using the XSCI (AINCS Sovereign Cryptographic Identity) standard.

XSCI provides:

Note: Use of XSCI is optional but strongly recommended in environments where trust boundaries, regulatory compliance, or cross-organizational accountability are critical.

4. Command Execution in XSLAP

4.1 Overview

XSLAP enables AI agents to execute commands using structured, real-time invocations over SignalR.
To ensure scalability, reliability, and predictability, XSLAP mandates that command execution follows an event-driven, idempotent model, reducing redundant executions and unintended side effects.

4.2 Command Submission Model

Invocation Format

Commands are submitted using the ExecuteCommandAsync method, ensuring a consistent execution model for both AI and human users.

Synchronous vs. Asynchronous Processing

Error Handling & Command Failure Responses

If a command fails, the system must return a structured error response, containing:

If a command partially succeeds but fails in a way that causes state inconsistency, the system must rollback the transaction and treat it as a failure.

4.3 Command Receipts

To ensure traceability and clear execution feedback, XSLAP mandates that applications immediately respond to all commands with a “command receipt”.

Purpose of Command Receipts

Receipt Format

Mandatory Fields

Optional Fields

Command Processing Flow

  1. AI submits a command.
  2. The system immediately responds with a command receipt.
  3. If syntax-accepted, execution proceeds as normal.
  4. If syntax-rejected, execution is halted, and AI is given a reason and possible corrections.

By enforcing command receipts, XSLAP ensures that AI agents can immediately distinguish between syntax errors and execution outcomes, preventing misinterpretation of failures. The inclusion of an executionId for accepted commands allows AI to track actions across system responses, ensuring precise correlation between issued commands and their resulting effects.

4.4 Structured Response Format

To ensure AI agents and applications can reliably track command execution, XSLAP mandates a structured response format for all command submissions.

Each command execution must return a structured response containing:

Mandatory Fields

Optional Fields

Response Handling Guidelines

By enforcing a structured response format, XSLAP ensures that AI agents can track, verify, and adapt their behavior based on real-time execution feedback.

4.5 Timing & Response Expectations

To ensure that AI agents receive timely feedback on command execution, XSLAP enforces strict response timing requirements. This prevents AI from stalling on long-running processes and ensures predictability in execution tracking.

Response Timing Requirements

By enforcing response timing rules, XSLAP ensures that AI agents remain responsive, adaptive, and capable of tracking execution in real-time.

4.6 Command Security

Rate Limiting & Abuse Prevention

To prevent system abuse:

Authorization Enforcement

5. State Synchronization & AI Awareness

5.1 Overview

For AI to function as a first-class execution entity, it must maintain an accurate, real-time awareness of system state.

XSLAP provides a state synchronization model that ensures:

This eliminates guesswork, ensures synchronized AI decision-making, and maintains behavioral consistency across AI-Native applications.

5.2 State Push and Pull Requirements

XSLAP defines two primary state synchronization mechanisms:

Initial State Push

Incremental State Updates

For state modeling best practices and AI-ready formats, refer to XANAF.

6. Conclusion & Compliance

6.1 XSLAP & AINCS Compliance

XSLAP is a foundational component of the AI-Native Computing Standard (AINCS), defining how AI agents operate within real-time applications. To be XSLAP-compliant, an implementation must adhere to the protocol’s requirements for authentication, event-driven execution, state synchronization, and structured command processing.

While XSLAP provides the execution framework, it does not dictate application-specific policies. Developers have flexibility in implementing security controls, access policies, and business logic within their applications, ensuring compliance with industry standards while maintaining interoperability with AI-Native ecosystems.

XSLAP compliance is a necessary but not sufficient requirement for full AINCS compliance—other components define complementary responsibilities.

6.2 XSLAP’s Role in AI-Native Computing

XSLAP is designed to function as part of a broader AI-Native ecosystem. It does not operate in isolation but instead works alongside other key specifications to provide a complete AI-Native framework:

XSLAP enables real-time execution, but state modeling, observability, and long-term AI behavior are handled by XANAF, XSM, and XSCOPE respectively. Together, these components form a holistic standard for AI-Native Computing.

The guidelines set forth in XSLAP are intended to standardize AI execution within real-time applications but do not supersede any legal, ethical, or regulatory requirements imposed by governing bodies. Developers are responsible for ensuring their implementations comply with applicable data protection laws, AI governance policies, and security standards.

Organizations adopting XSLAP should consider additional legal and ethical requirements, including but not limited to:

By adopting XSLAP alongside robust compliance frameworks, organizations can build AI-driven applications that are real-time, scalable, and secure, while ensuring ethical AI deployment in alignment with industry standards.