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/centrifuge/api-v3/protocol-speccinggit clone --depth 1 https://github.com/centrifuge/api-v3What 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.00559 |
| Opus 5 | $0.00000 | $0.00280 |
| Sonnet 5 | $0.00000 | $0.00112 |
| Haiku 4.5 | $0.00000 | $0.00056 |
Grade A, and why
protocol-speccing 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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 50 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Protocol Speccing Guidelines
When creating issue specifications for the cfg-api-v3 indexer to track updates from cfg-protocol-v3, follow these strict guidelines to ensure accuracy and consistency. The events might be local to a single domain or span across Hub and Spoke.
1. Issue Structure
- No Solution Design: Do not provide indexer solution design or architectural details in the issue unless specifically requested. Stick purely to on-chain specifications.
- Clear Headings: Use predictable sections like
## Description,## On-Chain Specifications,## Data Type Notes, and## Indexer Requirements.
2. On-Chain Flow
Break the event flow down according to the required domains (Hub, Spoke, or both).
For Cross-Chain Flows (e.g., Hub to Spoke, or Spoke to Hub)
Define the process across the two domains:
- Initiating Domain: Identify the Contract (e.g.,
Hub.solorSpoke.sol), Function, and the initiating Event (e.g.,UpdateContract). If it uses a payload, detail theabi.decodeshape andenumvalues. - Finalizing Domain: Identify the finalizing Contract (e.g.,
Spoke.sol,Hub.sol, or manager contracts), Function (e.g.,trustedCallor message handler), and the emitted Event upon completion.
For Single-Chain Flows
Define the process within its specific domain:
- Domain (Hub or Spoke): Identify the Contract.
- Identify the Function executing the state change.
- Identify the Event Emitted.
- Describe the chronological order if multiple events are triggered sequentially.
3. Data Type Notes
Explicitly highlight internal data types, and specific mapping operations. If spanning domains, highlight the differences:
- Assets: The protocol often uses
AssetId(a custom type mapped touint128). This may need to be resolved toaddress assetanduint256 tokenId. - Addresses: Be aware of encoding addresses as
bytes32(common in cross-chain payloads) which are later resolved to standardaddresstypes.
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.
- 2d ago First seen · 50 lines · 0 tokens per session scan A 6dd6d64c1a46
protocol-speccing is a cursor rule published in the GitHub repository centrifuge/api-v3 (5 stars, last pushed 5d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 559 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-31.
Other cursor rules, from other repositories
solana-integration-constraints
Constraints and requirements for Solana integration with MetaMask Connect — wallet adapter config, CAIP-2 IDs, network support per platform, RPC routing, and platform limitations.
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…
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.
cli-error-handling
CLI command error handling patterns.
prefer-direct-imports-over-module-mocks
Prefer extracting a testable core over vi.mock / vi.resetModules when unit tests need to reach production logic entangled with config, env, or singletons.