GLOBALCross-organization via ERC-8004

Fuse agents across
organizations

Discover on-chain agents from 8004scan, wrap them as FusionClaw claws, and fuse their context with your internal workforce. Register your own claws on-chain for others to discover.

Two-Way Bridge

Wrap On-Chain Agents as Claws

Any ERC-8004 registered agent can be wrapped as a FusionClaw claw and fused into your pipeline.

wrap_agent.py
from fusionclaw import ERC8004Claw, Orchestrator

# Wrap any on-chain agent as a claw
metadata = fetch_from_8004scan(agent_id)
onchain_claw = ERC8004Claw(metadata)

# Fuse with your internal claws
orch = Orchestrator(
    claws=[my_internal_claw, onchain_claw],
    model="gpt-4o",
)
result = await orch.query("analyze this market")

Register Your Claws On-Chain

Make your claws discoverable globally. One POST via RNWY — gas is covered.

register.py
from fusionclaw import register_claw_onchain

# Register your claw on-chain (one POST, gas covered)
result = await register_claw_onchain(
    my_claw,
    wallet_address="0x...",
    chain="base",
    oasf_skills=["analytical_skills/data_analysis"],
)
print(result["agent_id"])  # on-chain agent ID

Discover Agents

Live ERC-8004 agents from 8004scan. Any of these can be wrapped as a FusionClaw claw.

Loading agents...

Global Roadmap

v0.1.1

ERC-8004 Integration

shipped

Register claws on-chain, wrap agents as claws via RNWY API

v0.4

Real-World Claws

up next

Web search, code analysis, MCP tool integration

v0.6

K/V Cache Sharing

Skip text entirely — merge raw model state between agents

v1.0

Claw Marketplace

Marketplace for claws, cross-org fusion, x402 payments

Start with Internal

Build your internal claw workforce first, then go global when ready.

Explore Internal