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.
npx agentmods add rules/helius-labs/core-ai/helius-data-queriesgit clone --depth 1 https://github.com/helius-labs/core-aiWrote 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.
[](https://agentmods.dev/rules/helius-labs/core-ai/helius-data-queries)<a href="https://agentmods.dev/rules/helius-labs/core-ai/helius-data-queries"><img src="https://agentmods.dev/badge/rules/helius-labs/core-ai/helius-data-queries.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00433 |
| Opus 5 | $0.00000 | $0.00217 |
| Sonnet 5 | $0.00000 | $0.00087 |
| Haiku 4.5 | $0.00000 | $0.00043 |
Grade A, and why
helius-data-queries scanned grade A with 0 findings 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
DAS API
- Use
getAssetsByOwnerwithshowFungible: trueto get both NFTs and fungible tokens in one call - Use
searchAssetsfor multi-criteria queries instead of client-side filtering - Use batch endpoints (
getAssetwithidsarray,getAssetProofBatch) instead of sequential single calls
Transaction History
- Prefer
parseTransactionsover raw RPC for transaction history — it returns human-readable data - Use
getTransactionHistoryinsignaturesmode for lightweight listing, thenparseTransactionsonly on transactions of interest - SDK parameter names differ from API names — the REST API uses kebab-case (
before-signature), the Enhanced SDK uses camelCase (beforeSignature), and the RPC SDK uses different names entirely (paginationToken). Always check the enhanced-transactions reference before writing pagination or filtering code - Never use
anyfor SDK request params — import the proper request types (GetEnhancedTransactionsByAddressRequest,GetTransactionsForAddressConfigFull, etc.) so TypeScript catches name mismatches at compile time; a wrong param name likebeforeinstead ofbeforeSignaturesilently does nothing helius.enhanced.getTransactionsByAddress()andhelius.getTransactionsForAddress()have completely different parameter shapes and pagination mechanisms — do not mix them
Token & Balance Queries
- Prefer
getBalance(returns ~2 lines) overgetWalletBalances(returns 50+ lines) when only SOL balance is needed - Prefer
getTokenBalances(compact) overgetWalletBalances(full portfolio with metadata) when you don't need USD values
Documentation Lookups
- Use
lookupHeliusDocswith thesectionparameter for targeted lookups — full docs can be 10,000+ tokens; a targeted section is typically 500-2,000 tokens
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.
- 5d ago First seen · 29 lines · 0 tokens per session scan A 82e249f695d2
helius-data-queries is a cursor rule published in the GitHub repository helius-labs/core-ai (26 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 433 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other cursor rules, from other repositories
flow-configuration
Comprehensive guide to Flow project configuration covering flow.json structure, CLI workflow, FCL integration, network management, and deployment best practices. Covers contract aliases, account management, dependency resolution, frontend FCL setup with React SDK, and environment-based configuration for seamless…
cadence-nft-standards
Comprehensive standards and best practices for developing Non-Fungible Tokens (NFTs) using Cadence. Ensures proper implementation of NonFungibleToken interfaces, MetadataViews integration for marketplace compatibility, secure resource handling patterns, and advanced modular architectures for complex NFTs with traits…
flow-development-workflow
Streamlined Flow development workflow covering documentation-first debugging methodology, iterative development approach, deployment verification, gas optimization strategies, and comprehensive testnet validation protocols. Focuses on practical workflows and error prevention rather than configuration details.
user-preferences
Defines personalized development preferences and communication style for Flow blockchain development including concise response formatting, documentation-driven problem solving, iterative workflow methodology, full-stack awareness, and systematic error resolution. Guides AI behavior to match user's preferred…
ai-generation-entrypoint
Start here — Happy Path (Restake): workflows/restaking-workflow.md.
client-workflow-bootstrap
Cursor rule "client-workflow-bootstrap" from ulises-jeremias/agent-toolkit, covering agent vs skill rule — why agent (cite clause), when to use vs holistic, caller / skills / handoff, interview process and gate before generating.