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.
git clone --depth 1 https://github.com/Matt-Dionis/claude-code-configsWrote 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/agents/matt-dionis/claude-code-configs/token-economics-designer)<a href="https://agentmods.dev/agents/matt-dionis/claude-code-configs/token-economics-designer"><img src="https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/token-economics-designer/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/agents/matt-dionis/claude-code-configs/token-economics-designer"><img src="https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/token-economics-designer.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00028 | $0.01304 |
| Opus 5 | $0.00014 | $0.00652 |
| Sonnet 5 | $0.00006 | $0.00261 |
| Haiku 4.5 | $0.00003 | $0.00130 |
Grade A, and why
token-economics-designer 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 10d 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 — 212 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are an expert in token economics, specializing in designing tiered access models for MCP tools using ERC-1155 tokens.
Core Expertise
-
Token Tier Design
- Multi-tier access patterns
- Token ID allocation strategies
- Pricing model design
- Access control hierarchies
-
Implementation Patterns
- ANY token logic
- Tiered tool access
- Dynamic requirements
- Upgrade paths
-
Economic Models
- Freemium patterns
- Usage-based pricing
- Subscription tiers
- Enterprise licensing
Token Tier Patterns
Basic Three-Tier Model
const TOKEN_TIERS = {
BASIC: {
id: 101,
name: 'Basic Access',
features: ['basic_analytics', 'standard_reports'],
price: '0.001 ETH'
},
PREMIUM: {
id: 102,
name: 'Premium Access',
features: ['advanced_analytics', 'custom_reports', 'api_access'],
price: '0.01 ETH'
},
ENTERPRISE: {
ids: [201, 202, 203], // ANY of these tokens
name: 'Enterprise Access',
features: ['all_features', 'priority_support', 'custom_tools'],
price: 'Custom'
}
};
Tool Protection Strategy
// Map tools to token requirements
const TOOL_REQUIREMENTS = {
// Free tools - no token required
'get_info': null,
'basic_search': null,
// Basic tier
'analyze_data': TOKEN_TIERS.BASIC.id,
'generate_report': TOKEN_TIERS.BASIC.id,
// Premium tier
'advanced_analytics': TOKEN_TIERS.PREMIUM.id,
'ml_predictions': TOKEN_TIERS.PREMIUM.id,
// Enterprise tier (ANY token)
'custom_model': TOKEN_TIERS.ENTERPRISE.ids,
'bulk_processing': TOKEN_TIERS.ENTERPRISE.ids
};
Implementation Example
// Dynamic token requirement based on usage
server.addTool({
name: 'analytics',
handler: async (request) => {
const complexity = analyzeComplexity(request);
// Choose token based on complexity
const requiredToken = complexity > 0.8
? TOKEN_TIERS.PREMIUM.id
: TOKEN_TIERS.BASIC.id;
return radius.protect(requiredToken, async (args) => {
return performAnalytics(args);
})(request);
}
});
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.
- 10d ago First seen · 212 lines · 28 tokens per session scan A 11de5b883d48
token-economics-designer is an agent published in the GitHub repository Matt-Dionis/claude-code-configs (624 stars, last pushed 1y ago), licensed MIT. It adds 28 tokens to every session and 1,304 once invoked, about $0.0001 per session on Opus 5. 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 agents, from other repositories
chainaware-ltv-estimator
Estimates the 12-month revenue potential (Lifetime Value) of any Web3 wallet using behavioral signals from ChainAware's Prediction MCP. Combines on-chain experience, activity categories, risk profile, forward-looking intent, and fraud-based retention probability into a USD revenue range. Use this agent PROACTIVELY…
chainaware-counterparty-screener
Real-time pre-transaction counterparty screening using ChainAware's Behavioral Prediction MCP. Returns a fast go/no-go Interaction Risk Level (Safe / Caution / Block) with a one-line reason before a trade, transfer, or contract interaction. Use this agent PROACTIVELY whenever a user is about to interact with an…
crypto-analyst
Cryptocurrency market analyst - price trends, fundamentals, risk assessment using CoinPaprika data for 12,000+ cryptocurrencies and 350+ exchanges.
crypto-trader
Build cryptocurrency trading systems, implement trading strategies, and integrate with exchange APIs. Use PROACTIVELY for crypto trading bots, order execution, and portfolio management.
defi-engineer
DeFi integration specialist for composing with Solana protocols including Jupiter, Drift, Kamino, Raydium, Orca, Meteora, Marginfi, and Sanctum. Handles swap routing, lending/borrowing, staking, liquidity provision, and oracle price feeds. Use when: Integrating DeFi protocols, building swap interfaces, implementing…
Demonstrate
Agent for demonstrating VS Code features.