---
title: "Radix Context for AI Agents"
path: "/developers/infrastructure/radix-context"
version: "1.2.0"
author: "Hydrate"
createdAt: "2026-02-25T09:12:37.112Z"
updatedAt: "2026-03-16T18:25:47.585Z"
---

# Radix Context for AI Agents

<Infobox>
| **Type** | Developer Tooling |
| **Author** | [xstelea](https://github.com/xstelea) |
| **Context Files** | 19 |
| **Domains** | [Scrypto](/developers/legacy-docs/updates/roadmap/scrypto/scrypto), [Gateway API](https://docs.radixdlt.com/docs/gateway-api), Transactions, Wallet, Effect |
| **Standard** | [agents.md](https://agents-md.org) |
| **Repository** | [GitHub](https://github.com/xstelea/radix-context) |
</Infobox>

## Introduction

[radix-context](https://github.com/xstelea/radix-context) is a collection of 19 curated reference documents designed for AI coding agents — Claude, Cursor, Windsurf, and similar tools — to understand how to build dApps and [Scrypto](/developers/legacy-docs/updates/roadmap/scrypto/scrypto) components on the [Radix](/contents/tech/core-concepts/radix-engine) network. The project follows the [agents.md standard](https://agents-md.org), 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/legacy-docs/updates/roadmap/scrypto/scrypto) 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 19 context files into a `context/` directory and merges an `AGENTS.md` index file. Optionally run `./setup.sh` to clone 7 companion repositories ([Scrypto](/developers/legacy-docs/updates/roadmap/scrypto/scrypto) 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/legacy-docs/updates/roadmap/scrypto/scrypto) (9 files)

- **radix-[AccessRule](https://docs.radixdlt.com/docs/authorization)** — Permission systems and role-based access control in [Scrypto](/developers/legacy-docs/updates/roadmap/scrypto/scrypto)
- **radix-Account** — Native account blueprint with 30 core methods
- **radix-Gateway** — Effect-wrapped [Gateway API](https://docs.radixdlt.com/docs/gateway-api) client with retry logic
- **radix-GatewayRustSdk** — Rust HTTP clients for Gateway and Core APIs
- **radix-Sbor** — [SBOR](/contents/tech/core-concepts/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) authentication, and signing
- **radix-transactions** — Rust transaction building and signing
### 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/legacy-docs/updates/roadmap/scrypto/scrypto) 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/gateway-api) client (by Ociswap)
- [TanStack Router](https://github.com/TanStack/router) — Type-safe routing framework
- [Effect](https://github.com/Effect-TS/effect) — Functional TypeScript library

## External Links

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