---
title: "Radix Context for AI Agents"
url: "https://radix.wiki/developers/ai-agents/radix-context"
version: "2.2.0"
updated: 2026-08-06
last_verified: 2026-07-27
license: CC-BY-4.0
license_url: "https://creativecommons.org/licenses/by/4.0/"
---

# Radix Context for AI Agents

|  |  |
| --- | --- |
| **Type** | Developer Tooling |
| **Author** | [xstelea](https://github.com/xstelea) |
| **Context Files** | 23 |
| **Domains** | [Scrypto](/developers/scrypto/01-fundamentals), [Gateway API](https://docs.radixdlt.com/docs/network-gateway), Transactions, Wallet, Effect |
| **Standard** | [agents.md](https://agents.md) |
| **Repository** | [GitHub](https://github.com/xstelea/radix-context) |

## Introduction

[radix-context](https://github.com/xstelea/radix-context) is a collection of 23 curated reference documents designed for AI coding agents – Claude, Cursor, Windsurf, and similar tools – to understand how to build dApps and [Scrypto](/developers/scrypto/01-fundamentals) components on the [Radix](/contents/tech/core-protocols/radix-engine) network. The project follows the [agents.md standard](https://agents.md), enabling compatible tools to auto-discover and load relevant documentation.

Rather than requiring an AI agent to search scattered docs, radix-context provides pre-structured, deep-reference material that agents can ingest directly. This dramatically improves the quality of AI-generated [Scrypto](/developers/scrypto/01-fundamentals) code and Radix [transaction manifests](/contents/tech/core-protocols/transaction-manifests).

## Installation

One-line install into any project directory:

```
curl -fsSL https://raw.githubusercontent.com/xstelea/radix-context/main/install.sh | bash
```

This copies 23 context files into a `context/` directory and merges an `AGENTS.md` index file. Optionally run `./setup.sh` to clone 7 companion repositories ([Scrypto](/developers/scrypto/01-fundamentals) source, [radix-dapp-toolkit](https://github.com/radixdlt/radix-dapp-toolkit), Effect, TanStack Router, and more) into `.repos/` for full cross-reference.

## Context Files

### Radix DLT & [Scrypto](/developers/scrypto/01-fundamentals) (13 files)

- **radix-[AccessRule](https://docs.radixdlt.com/docs/authorization-approach)** – Permission systems and role-based access control in [Scrypto](/developers/scrypto/01-fundamentals)
- **radix-Account** – Native account blueprint with 30 core methods
- **radix-Gateway** – Effect-wrapped [Gateway API](https://docs.radixdlt.com/docs/network-gateway) client with retry logic
- **radix-GatewayRustSdk** – Rust HTTP clients for Gateway and Core APIs
- **radix-Sbor** – [SBOR](https://docs.radixdlt.com/docs/sbor) wire format and schema system
- **radix-SubIntents** – Composable partial transactions for governance workflows
- **radix-TransactionManifest** – Manifest construction and validation (V1/V2)
- **radix-[radix-dapp-toolkit](https://github.com/radixdlt/radix-dapp-toolkit)** – Wallet integration, [ROLA](https://docs.radixdlt.com/docs/rola-radix-off-ledger-auth) authentication, and signing
- **radix-transactions** – Rust transaction building and signing
- **radix-ROLA** – Off-ledger authentication: challenge generation and signature verification
- **radix-RadixEngineToolkit** – Off-ledger manifest building, derivation, and SBOR via the Rust toolkit
- **radix-TypescriptRadixEngineToolkit** – The TypeScript wrapper's builders and entry-point classes
- **radix-TxTool** – Transaction tooling helpers

### Effect Library (8 files)

- **effect-Context** – Dependency injection with `Context.Tag`
- **effect-Layer** – Composable service [blueprints](https://docs.radixdlt.com/docs/blueprints-and-components) with memoization
- **effect-Pipe** – Piping utilities including `pipe()` and `Effect.gen`
- **effect-Platform** – HTTP, filesystem, terminal, and networking abstractions
- **effect-Queue** – Fiber-safe async queues with backpressure
- **effect-Rpc** – Type-safe, transport-agnostic RPC
- **effect-Schema** – Runtime validation and type-safe transformations
- **effect-atom** – Reactive state bridging Effect and React

### Framework (2 files)

- **tanstack-Router** – Type-safe routing with SSR and file-based routes
- **tanstackStart-ConsultationDapp** – Full-stack dApp reference using React 19 and Effect

## Companion Repositories

Running `./setup.sh` clones 7 shallow repositories into `.repos/` for full source-level context:

- [radixdlt-scrypto](https://github.com/radixdlt/radixdlt-scrypto) – [Scrypto](/developers/scrypto/01-fundamentals) source code (develop branch)
- [radix-dapp-toolkit](https://github.com/radixdlt/radix-dapp-toolkit) – Official dApp toolkit
- [consultation_v2](https://github.com/radixdlt/consultation_v2) – Consultation dApp reference implementation
- [radix-gateway-api-rust](https://github.com/ociswap/radix-client) – Rust [Gateway API](https://docs.radixdlt.com/docs/network-gateway) client (by Ociswap)
- [TanStack Router](https://github.com/TanStack/router) – Type-safe routing framework
- [Effect](https://github.com/Effect-TS/effect) – Functional TypeScript library

## Relationship to Radix Skills

In June 2026 the same author published [Radix Skills](/developers/ai-agents/radix-skills), an installable agent skill covering much of the same ground in 38 topic guides. The two are complementary rather than successive: radix-skills names radix-context in its own research strategy as an optional "candidate map for topics and vocabulary", and its guides route to local source checkouts of [radixdlt-scrypto](https://github.com/radixdlt/radixdlt-scrypto) and [radix-web3.js](https://github.com/xstelea/radix-web3.js) for verification.

The practical difference is when the material loads. radix-context copies its files into a project and relies on the [agents.md](https://agents.md) index for discovery; a skill is a described capability the agent selects for itself, then reads only the one or two guides that match the task.

## External Links

- [radix-context – GitHub Repository](https://github.com/xstelea/radix-context)
- [agents.md Standard](https://agents.md)
- [Radix Official Documentation](https://docs.radixdlt.com)
- [Radix DLT on GitHub](https://github.com/radixdlt)
