core-ai AGENTS.md

core-ai AGENTS.md is an instructions file for Codex, OpenCode from helius-labs/core-ai. It costs 2,000 tokens per session, scanned B, original, MIT.

Repository instructions for core-ai, a monorepo of Helius tools for building on Solana, a blockchain platform.

In plain words
What is it for?
They guide MCP server setup, API-key setup, blockchain queries, staking, skill usage, and the public tools exposed to compatible AI assistants.
Why use it?
They explain the repository structure and how its MCP server, skills, plugin, and command-line tool fit together.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/helius-labs/core-ai/agents-md
Clone the repo
git clone --depth 1 https://github.com/helius-labs/core-ai

Made for: Codex, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for core-ai AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/helius-labs/core-ai/agents-md.svg)](https://agentmods.dev/instructions/helius-labs/core-ai/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/helius-labs/core-ai/agents-md"><img src="https://agentmods.dev/badge/instructions/helius-labs/core-ai/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,000 This file is loaded in full into every session.
When invoked 2,000 The same file — it is already loaded in full.
Security scan B 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.02000 $0.02000
Opus 5 $0.01000 $0.01000
Sonnet 5 $0.00400 $0.00400
Haiku 4.5 $0.00200 $0.00200

Measured 5d ago against content hash 205138468820, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

core-ai AGENTS.md scanned grade B with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

For Codex, run `codex mcp add helius -- npx helius-mcp@latest` or add to `.codex/config.toml` (or `~/.codex/config.toml` for global):
AGENTS.md · 156 lines

How it starts

The opening of the file, as written. The whole thing — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Core AI — Agent Instructions

This file is the Layer A harness for Codex CLI and other OpenAI-compatible agents. Skills in .agents/skills/ provide the domain expertise (Layer B).

Repository Overview

This monorepo contains Helius developer tools for building on Solana:

Package What it does
helius-mcp/ MCP server (npx helius-mcp@latest) — exposes 10 public tools total: 9 routed domain tools plus expandResult
helius-skills/ Canonical skill source — SKILL.md + reference files for each domain
helius-plugin/ Claude Code plugin — bundles skills + auto-starts MCP server
helius-cli/ CLI for account setup, blockchain queries, and staking (npx helius-cli@latest)

MCP Server Setup

The Helius MCP server provides live blockchain access through 10 public tools total: 9 routed domain tools plus expandResult. Configure it as an MCP tool source:

npx helius-mcp@latest

This works with any MCP-compatible client. Use a domain tool such as heliusWallet, heliusAsset, or heliusStreaming plus action: "getBalance", action: "getAssetsByOwner", or action: "createWebhook" to call a specific Helius action. Use expandResult for summary-first follow-ups.

For Codex, run codex mcp add helius -- npx helius-mcp@latest or add to .codex/config.toml (or ~/.codex/config.toml for global):

[mcp_servers.helius]
command = "npx"
args = ["helius-mcp@latest"]

For other MCP clients, add to your project's .mcp.json:

{
  "mcpServers": {
    "helius": {
      "command": "npx",
      "args": ["helius-mcp@latest"]
    }
  }
}

API Key Setup

Most tools require a Helius API key. Three paths:

Path A — Existing key: Set the HELIUS_API_KEY environment variable, or call the setHeliusApiKey MCP tool.

Path B — Signup: Call generateKeypairsignup with mode: "link" (returns a hosted paymentUrl the user opens in a browser) → after payment, signup with mode: "resume". Or mode: "autopay" to pay USDC from the local keypair (wallet must hold ~0.001 SOL + the plan amount in USDC). API key is configured automatically.

Read the full file on GitHub · 156 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 156 lines · 2,000 tokens per session scan B 205138468820

Subscribe to this mod's changes

core-ai AGENTS.md is an instructions file published in the GitHub repository helius-labs/core-ai (26 stars, last pushed yesterday), licensed MIT. It adds 2,000 tokens to every session, about $0.0100 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories

shipkit AGENTS.md

AGENTS.md instructions for DjFikie25/shipkit, covering agents.md — ai coding guidelines, 1. project architecture, 2. auth conventions, 3. database conventions and 4. ai / mastra conventions.

DjFikie25/shipkit · 3,842 tokens

Skill_Seekers CLAUDE.md

Instructions for yusufkaraaslan/Skill_Seekers, covering claude.md, project overview, essential commands, required before running tests or cli (src/ layout) and run all tests (never skip - all must pass before commits).

yusufkaraaslan/Skill_Seekers · 5,387 tokens

ChatCrystal AGENTS.md

AGENTS.md instructions for ZengLiangYi/ChatCrystal, covering agents.md, project overview, commands, development (server port 3721 + client port 13721) and build for production.

ZengLiangYi/ChatCrystal · 2,922 tokens

FDEOps AGENTS.md

AGENTS.md instructions for suboss87/FDEOps, covering agents.md - working in the fdeops repository, if you are helping use fdeops in an engagement, if you are contributing to this repository and boundaries.

suboss87/FDEOps · 362 tokens

platform-skills copilot-instructions.md

Copilot instructions for nitinjain999/platform-skills, covering platform engineering instructions for github copilot, version: 1.40.0, source: https://github.com/nitinjain999/platform-skills, response contract and core principles.

nitinjain999/platform-skills · 3,564 tokens

agent-toolkit AGENTS.md

AGENTS.md instructions for ulises-jeremias/agent-toolkit, covering agents.md — ai agent contract, what this toolkit does, repository structure, operating rules and how to add a skill.

ulises-jeremias/agent-toolkit · 4,514 tokens