token-economics-designer

token-economics-designer is an agent for Claude Code from Matt-Dionis/claude-code-configs. It costs 28 tokens per session (1,304 once invoked), scanned A, original, MIT.

An agent role focused on designing token-based access levels and pricing. It uses ERC-1155 tokens, a blockchain token format that can represent multiple kinds of items or permissions.

In plain words
What is it for?
Use it to design access tiers, assign token IDs, protect tools based on token ownership, and plan free, paid, or enterprise models.
Why use it?
It provides a structured way to connect user access, features, upgrade paths, and prices.

Agent for Claude Code

Written for Claude Code: installed under .claude/. Also seen: names the TodoWrite tool.

Good fit Use it to design access tiers, assign token IDs, protect tools based on token ownership, and plan free, paid, or enterprise models.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/matt-dionis/claude-code-configs/token-economics-designer
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.

Clone the repo
git clone --depth 1 https://github.com/Matt-Dionis/claude-code-configs

Made for: Claude Code.

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 token-economics-designer

README.md
[![agentmods](https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/token-economics-designer/github.svg)](https://agentmods.dev/agents/matt-dionis/claude-code-configs/token-economics-designer)
Your own site
<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.

agentmods 80×15 button for token-economics-designer

Your own site · 80×15
<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>
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,304 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00028 $0.01304
Opus 5 $0.00014 $0.00652
Sonnet 5 $0.00006 $0.00261
Haiku 4.5 $0.00003 $0.00130

Measured 10d ago against content hash 11de5b883d48, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

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.

configurations/mcp-servers/token-gated-mcp-server/.claude/agents/token-economics-designer.md · 212 lines

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

  1. Token Tier Design

    • Multi-tier access patterns
    • Token ID allocation strategies
    • Pricing model design
    • Access control hierarchies
  2. Implementation Patterns

    • ANY token logic
    • Tiered tool access
    • Dynamic requirements
    • Upgrade paths
  3. 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);
  }
});

Read the full file on GitHub · 212 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. 10d ago First seen · 212 lines · 28 tokens per session scan A 11de5b883d48

Subscribe to this mod's changes

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.

Related

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/behavioral-prediction-mcp · 297 tokens

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…

ChainAware/behavioral-prediction-mcp · 231 tokens

crypto-analyst

Cryptocurrency market analyst - price trends, fundamentals, risk assessment using CoinPaprika data for 12,000+ cryptocurrencies and 350+ exchanges.

coinpaprika/claude-marketplace · 34 tokens

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.

rafaelkamimura/claude-tools · 36 tokens

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…

GeckoVision/gecko-surf · 100 tokens

Demonstrate

Agent for demonstrating VS Code features.

microsoft/vscode · 10 tokens