Agentic Token Economics Repo Colab

Agentic Tokenomics: A Shared Harness for Regenerative Governance

What is this?

This repository is a coordination layer — a shared infrastructure for designing, specifying, and implementing the mechanisms that give the REGEN token real utility and the Regen Network real governance.

The core premise: routine governance work — price monitoring, data validation, credit class screening, standard proposal processing — doesn’t need to be bottlenecked through a small group of humans. It can be automated by AI agents that operate transparently within on-chain infrastructure, freeing human judgment for the decisions that actually require it. The target is 65–75% automation of routine governance, with human oversight always retained for high-stakes, contested, or constitutional decisions.

But this isn’t just a spec for robots. It’s a harness — a way for multiple contributors, working with their own AI tools and agentic workflows, to build coherently toward a shared system without stepping on each other.

Why this matters

Regen Network sits at an unusual intersection. It has a blockchain with ecological crediting infrastructure. It has a knowledge commons (KOI) that indexes the context anyone needs to contribute meaningfully. And it now has AI agents capable of doing real governance work — reviewing credit class applications, analyzing proposals, monitoring markets, watching validator health.

The opportunity is to wire these together: distributed work, blockchain-based rigor and truth verification, agentic workflows nested into transparent governance, and tokenomics linked to ecological outcomes. What makes this more than a theoretical exercise is that the whole system can be dogfooded — Regen can use its own claims engine and knowledge infrastructure to prove the approach works, then offer it as replicable infrastructure for any ecological governance context.

The REGEN token in this framing is not a thing in itself. It’s a coordination tool. The question the working group has been iterating on since January 2026: who do we want to coordinate with this token, and what is the target behavior?

The architecture

Nine mechanisms across two pillars

Token Utility Mechanisms create concrete reasons to hold and use REGEN within the ecological credit lifecycle:

  • M001-ENH — Credit Class Approval Voting: dual-track voting for credit class decisions

  • M008 — Data Attestation Bonding: stake REGEN to back the quality of ecological data

  • M009 — Service Provision Escrow: lock tokens as escrow for contracted ecological services

  • M010 — Reputation/Legitimacy Signaling: build and stake on track records

  • M011 — Marketplace Curation & Quality Signals: curate and surface quality in the credit marketplace

Economic Reboot Mechanisms support the transition from inflationary proof-of-stake to a value-driven proof-of-authority model:

  • M012 — Fixed Cap Dynamic Supply: supply-capped mint/burn linked to ecological value creation

  • M013 — Value-Based Fee Routing: route protocol fees through burn, validator rewards, community pool, and agent infrastructure

  • M014 — Authority Validator Governance: bioregional validator selection and accountability

  • M015 — Contribution-Weighted Rewards: reward participants based on actual contributions, not just stake size

Each mechanism has a full specification, JSON schemas, datasets, and a reference implementation. Nine CosmWasm smart contracts implement the on-chain logic. A cadCAD simulation model validates the economic parameters before anything touches a testnet.

Four governance layers

| Layer | Automation | What it handles |

|-------|-----------|-----------------|

| L1 — Fully Automated | 100% | Price monitoring, data validation, routine alerts |

| L2 — Agentic + Oversight | 85%+ | Credit class screening, standard proposals |

| L3 — Human-in-Loop | 50% | Large grants, contested decisions |

| L4 — Constitutional | 0% | Protocol upgrades, governance parameter changes |

The system branches like a tree: at the core, a small set of agents handle infrastructure-level governance. One layer up, methodology-specific agents manage domain decisions. Further out, project-level processes run with increasing human involvement. The key design constraint is that automation only applies where the decision logic is well-understood and the stakes are bounded.

Four agent personas

| Agent | Domain | What it does |

|-------|--------|-------------|

| AGENT-001 — Registry Reviewer | Credit classes, methodology | Reviews applications, checks compliance, flags issues |

| AGENT-002 — Governance Analyst | Proposals, voting patterns | Analyzes proposals, surfaces context, monitors governance health |

| AGENT-003 — Market Monitor | Price, liquidity | Watches market conditions, detects anomalies, triggers alerts |

| AGENT-004 — Validator Monitor | Network health | Tracks validator performance, monitors the PoA transition |

These agents run on ElizaOS, read from the Regen Ledger and KOI knowledge graph via MCP, and can bring governance proposals, comment on GitHub, and generate artifacts that feed back into the knowledge commons.

The harness concept

Here’s what makes this repo different from a typical governance spec: it’s designed as a shared agentic harness for multi-party collaboration.

Multiple contributors are building agentic tools and workflows for Regen — each bringing their own AI setups, their own engineering approaches, their own areas of focus. The agentic-tokenomics repo exists to harmonize that agency. It provides:

  • A mechanism library where each mechanism is a self-contained module with spec, schema, implementation, and tests. If you’re working on a burn/mint mechanism, a reputation system, or a fee-splitting contract — it goes here, backlinked to the shared index.

  • Shared schemas and verification so that independently-developed components can interoperate. The scripts/verify.mjs tool validates all schemas; CI enforces it.

  • Phase structure (discovery → design → implementation → deployment → operations) that gives everyone a shared map of where the system is and what’s next.

  • Knowledge commons integration via KOI, which means any contributor with access has the indexed context of the entire Regen ecosystem — the same context that allows non-engineers to do institutional-grade infrastructure work with AI support.

The working group has described this as a “recursive learning opportunity” — the more people build within the shared infrastructure, the more the knowledge commons grows, which upgrades everyone’s capacity to build further. The harness doesn’t constrain contributors; it amplifies them by providing common ground.

How this was built

This is worth being transparent about: a significant portion of the implementation work in this repo was produced by AI coding agents. brawlaphant (an OpenAI Codex agent) generated CosmWasm contracts, simulation models, agent scaffolds, phase specifications, and CI infrastructure. CShear authored the original mechanism specifications. ToknWrks contributed fee-split alignment. The review and merge process was conducted collaboratively between a human architect and Claude Code.

The repo is itself a case study in the kind of graduated human-AI collaboration the governance system is designed to enable on-chain: AI agents generating work, different AI agents helping review and triage it, human judgment setting priorities and resolving conflicts. It’s early, it’s imperfect, and it’s working.

Five phases, all specified

| Phase | Status | What it covers |

|-------|--------|---------------|

| Phase 1 — Discovery & Analysis | Complete | Stakeholder mapping, value flows, mechanism inventory |

| Phase 2 — Mechanism Design | Complete | 9 mechanism specs, 12 agent workflows, 5 governance processes |

| Phase 3 — Implementation & Testing | Specified | Smart contract specs, agent orchestration, security framework, KOI integration |

| Phase 4 — Deployment & Migration | Specified | Testnet plan, mainnet PoS→PoA runbook, community onboarding |

| Phase 5 — Operations & Evolution | Specified | Monitoring, incident response, evolution governance |

How to contribute

The repo is public, dual-licensed (Apache 2.0 for code, CC-BY-SA 4.0 for specifications), and structured for independent contribution.

Where to start:

  • Read the mechanism specs in mechanisms/ — each one is self-contained with a SPEC.md, datasets, schemas, and reference implementation. Pick one that’s in your domain.

  • Review the open PRs — there are currently 26 open, covering edge-case tests, agent workflow implementations, integration tests, integrator docs, and CI fixes. Reviews welcome.

  • Run the simulations — the cadCAD model in simulations/ validates economic parameters for M012-M015. If you have opinions about supply dynamics, fee routing ratios, or reward curves, this is where to test them.

  • Build an agent — AGENT-001 and AGENT-002 have standalone TypeScript reference implementations. AGENT-003 and AGENT-004 have character definitions and open PRs for full workflow implementations. If you have ElizaOS experience, these are directly actionable.

  • Improve the contracts — 9 CosmWasm contracts are landed. They need richer test coverage, workspace integration, and clippy cleanup. If you write Rust, there’s concrete work waiting.

What we’re especially looking for:

  • CosmWasm and Cosmos SDK experience (contract review, integration testing)

  • cadCAD and agent-based modeling (parameter validation, stress scenarios)

  • ElizaOS and AI agent development (workflow implementation, plugin development)

  • Governance design (mechanism review, proposal drafting, community process)

  • Ecological domain knowledge (credit class workflows, methodology review, data attestation)

The goal is not to have everyone converge on a single way of working. It’s to harmonize the agency of everyone who wants to contribute — in a rigorous, coherent way, building on shared infrastructure and shared knowledge — so that the whole is genuinely greater than the sum of its parts.

Links

1 Like

Agentic Tokenomics: From Specification to Implementation

A progress update on the governance automation framework

Over the past several months, the agentic-tokenomics repository has grown from a set of mechanism design specifications into a working implementation scaffold. This week we ran a collaborative review sweep — human architect + Claude Code — through the accumulated pull request pipeline. 61 PRs merged total across the project’s lifetime, with the final 20 triaged and landed in a single session. Here’s where things stand.

What shipped

9 mechanism specifications, fully landed on main. These cover the two pillars of the system:

  • Token Utility Mechanisms (M001-ENH, M008-M011) — credit class approval voting, data attestation bonding, service escrow, reputation signaling, and marketplace curation. These give $REGEN concrete utility within the ecological credit lifecycle.

  • Economic Reboot Mechanisms (M012-M015) — fixed-cap dynamic supply, value-based fee routing, authority validator governance, and contribution-weighted rewards. These support the PoS→PoA transition and align token economics with network value creation rather than speculation.

9 CosmWasm smart contracts implementing these mechanisms, organized in a Cargo workspace with unit tests. Five arrived in an umbrella PR, with M009, M010, M012, and M013 merged separately to preserve their richer individual test suites.

A cadCAD economic simulation model for validating M012-M015 parameters — supply dynamics, fee routing ratios, and reward distribution curves — before anything touches a testnet.

4 ElizaOS agent character definitions (Registry Reviewer, Governance Analyst, Market Monitor, Validator Monitor) with standalone TypeScript reference implementations for AGENT-001 and AGENT-002.

Dual licensing (Apache 2.0 for code, CC-BY-SA 4.0 for specifications), GitHub Actions CI, schema verification, and governance proposal drafts for the 9 open questions flagged as needing on-chain governance resolution.

The 4-layer governance model

The system is designed around graduated automation:

| Layer | Automation | What it handles |

|-------|-----------|-----------------|

| L1 | 100% autonomous | Price monitoring, data validation, routine alerts |

| L2 | 85%+ agentic | Credit class screening, standard proposals |

| L3 | 50% human-in-loop | Large grants, contested decisions |

| L4 | 0% (constitutional) | Protocol upgrades, governance parameter changes |

The goal is 65-75% automation of routine governance — not replacing human judgment, but freeing it for the decisions that actually need it.

Contributors

This work reflects contributions across multiple modes of collaboration:

  • CShear — original mechanism specifications (M001-ENH through M015)

  • brawlaphant (Codex agent) — schema hardening, phase 3-5 specs, CosmWasm contracts, cadCAD simulations, agent scaffolds, CI/licensing

  • ToknWrks — fee split consistency alignment

  • glandua — PoA integration docs, agent implementations, M013 architecture, conflict resolution

  • MaxSemenchuk — ecosystem directory

  • DarrenZal — early contributions

This is worth highlighting: a significant portion of the implementation work was produced by an AI coding agent (brawlaphant is an OpenAI Codex agent), and the review/merge sweep was conducted collaboratively between a human architect and Claude Code. The repo itself is a live case study in multi-agent collaboration — AI agents generating implementation work, a different AI agent helping review and triage it, with human judgment setting priorities and resolving conflicts. This is the same kind of graduated human-AI collaboration the governance system is designed to enable on-chain.

What’s next

26 new PRs are already open, covering:

  • Edge-case test vectors for all 7 core mechanisms (6 vectors each with auto-discover self-tests)

  • Full agent workflow implementations for AGENT-003 (Market Monitor) and AGENT-004 (Validator Monitor)

  • Integration tests for cross-mechanism flows (M013 fee-router → M012 burn, M010 reputation + M011 curation coexistence)

  • Integrator documentation — how-to guides for all 9 mechanisms

  • CI hardening — clippy fixes, pandas 2.x compatibility, workspace wiring

The implementation path from here: review and land the test/docs/CI wave, then move toward testnet deployment using the Phase 4 runbooks already specified.

Links

  • Repository: regen-network/agentic-tokenomics

  • All 5 phases specified: Phase 1 (discovery) through Phase 5 (operations/evolution)

  • License: Apache 2.0 (code) + CC-BY-SA 4.0 (specs)

Feedback and contributions welcome — particularly from folks with CosmWasm, cadCAD, or ElizaOS experience.

1 Like