Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- name: agentdna-mint description: Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- Hel Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
agentdna-mint is best for base workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- name: agentdna-mint description: Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- Hel
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Bendr 20
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/Bendr-20/helixa-mint-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Bendr 20
Protocol compatibility
OpenClaw
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
solidity
// HelixaV2 — 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60
function mint(
address agentAddress, // The agent's wallet address
string name, // Agent name
string framework, // See supported frameworks below
bool soulbound // true = non-transferable
) external payable returns (uint256 tokenId);bash
cast send 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60 \ "mint(address,string,string,bool)" \ 0xYOUR_AGENT_ADDRESS "MyAgent" "openclaw" false \ --rpc-url https://mainnet.base.org \ --private-key $PRIVATE_KEY
javascript
const contract = new ethers.Contract( "0x2e3B541C59D38b84E3Bc54e977200230A204Fe60", ["function mint(address,string,string,bool) payable returns (uint256)"], signer ); const tx = await contract.mint(agentAddress, "MyAgent", "openclaw", false); const receipt = await tx.wait();
text
Sign-In With Agent: api.helixa.xyz wants you to sign in with your wallet {address} at {timestamp}text
Authorization: Bearer {address}:{timestamp}:{signature}javascript
const wallet = new ethers.Wallet(AGENT_PRIVATE_KEY);
const address = wallet.address;
const timestamp = Math.floor(Date.now() / 1000).toString();
const message = `Sign-In With Agent: api.helixa.xyz wants you to sign in with your wallet ${address} at ${timestamp}`;
const signature = await wallet.signMessage(message);
const authHeader = `Bearer ${address}:${timestamp}:${signature}`;Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- name: agentdna-mint description: Mint an AgentDNA identity NFT onchain via the Helixa V2 platform (Base network). Use when an AI agent wants to register itself onchain, get a portable identity, claim an AgentDNA NFT, or set up its onchain reputation. Supports SIWA (Sign-In With Agent) authentication for agent-initiated mints. Also use when asked about Helixa, AgentDNA, ERC-8004, or agent identity minting. --- Hel
Mint your onchain identity on Base via the Helixa platform. Two paths: humans use the frontend or direct contract call, agents use SIWA auth + API.
Contract: 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60 (HelixaV2, Base mainnet)
API: https://api.helixa.xyz
Frontend: https://helixa.xyz/mint
Agent mints (via API): $1 USDC via x402 payment protocol. The API returns HTTP 402 with payment instructions — any x402-compatible client handles this automatically.
Human mints (via contract): Free during Phase 1 (gas only).
You need a tiny amount of ETH on Base for gas.
| Action | Estimated Cost | |--------|---------------| | mint() | ~$0.002-0.003 |
You need approximately 0.0001 ETH on Base (~$0.25) to cover gas.
Go to https://helixa.xyz/mint and follow the UI.
// HelixaV2 — 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60
function mint(
address agentAddress, // The agent's wallet address
string name, // Agent name
string framework, // See supported frameworks below
bool soulbound // true = non-transferable
) external payable returns (uint256 tokenId);
Supported frameworks: openclaw, eliza, langchain, crewai, autogpt, bankr, virtuals, based, agentkit, custom
cast send 0x2e3B541C59D38b84E3Bc54e977200230A204Fe60 \
"mint(address,string,string,bool)" \
0xYOUR_AGENT_ADDRESS "MyAgent" "openclaw" false \
--rpc-url https://mainnet.base.org \
--private-key $PRIVATE_KEY
const contract = new ethers.Contract(
"0x2e3B541C59D38b84E3Bc54e977200230A204Fe60",
["function mint(address,string,string,bool) payable returns (uint256)"],
signer
);
const tx = await contract.mint(agentAddress, "MyAgent", "openclaw", false);
const receipt = await tx.wait();
For AI agents minting programmatically. Uses Sign-In With Agent (SIWA) authentication.
The agent signs a message with its wallet to prove identity.
Message format:
Sign-In With Agent: api.helixa.xyz wants you to sign in with your wallet {address} at {timestamp}
Auth header format:
Authorization: Bearer {address}:{timestamp}:{signature}
const wallet = new ethers.Wallet(AGENT_PRIVATE_KEY);
const address = wallet.address;
const timestamp = Math.floor(Date.now() / 1000).toString();
const message = `Sign-In With Agent: api.helixa.xyz wants you to sign in with your wallet ${address} at ${timestamp}`;
const signature = await wallet.signMessage(message);
const authHeader = `Bearer ${address}:${timestamp}:${signature}`;
# Generate signature externally, then:
AUTH="Bearer 0xYourAddress:1708300000:0xYourSignature..."
curl -X POST https://api.helixa.xyz/api/v2/mint \
-H "Content-Type: application/json" \
-H "Authorization: $AUTH" \
-d '{
"name": "MyAgent",
"framework": "openclaw",
"personality": {
"tone": "analytical",
"style": "formal"
},
"narrative": {
"origin": "Built to research onchain data",
"purpose": "Autonomous research assistant"
}
}'
The mint endpoint requires $1 USDC payment via x402. Use the official SDK — do NOT hand-roll EIP-3009 signatures.
npm install @x402/fetch @x402/evm viem
const { createWalletClient, http, publicActions } = require('viem');
const { privateKeyToAccount } = require('viem/accounts');
const { base } = require('viem/chains');
const { wrapFetchWithPayment, x402Client } = require('@x402/fetch');
const { ExactEvmScheme } = require('@x402/evm/exact/client');
const { toClientEvmSigner } = require('@x402/evm');
// Set up wallet + x402 payment client
const account = privateKeyToAccount('0xYOUR_PRIVATE_KEY');
const walletClient = createWalletClient({
account, chain: base, transport: http('https://mainnet.base.org'),
}).extend(publicActions);
const signer = toClientEvmSigner(walletClient);
signer.address = walletClient.account.address; // Required for viem compat
const scheme = new ExactEvmScheme(signer);
const client = x402Client.fromConfig({
schemes: [{ client: scheme, network: 'eip155:8453' }],
});
// This fetch wrapper auto-handles 402 → payment → retry
const x402Fetch = wrapFetchWithPayment(globalThis.fetch, client);
Use x402Fetch instead of regular fetch. It automatically handles the 402 payment flow:
const res = await x402Fetch('https://api.helixa.xyz/api/v2/mint', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': authHeader, // SIWA header from Step 1
},
body: JSON.stringify({
name: 'MyAgent',
framework: 'openclaw',
personality: { quirks: 'curious', values: 'transparency' },
narrative: { origin: 'Built to explore', mission: 'Score agents fairly' },
}),
});
const result = await res.json();
// { success: true, tokenId: 901, txHash: "0x...", mintOrigin: "AGENT_SIWA" }
The SDK reads the payment-required header, signs a USDC transfer via EIP-3009, sends it through the Dexter facilitator (x402.dexter.cash), and retries the request with the payment proof. Your agent gets minted and auto-registered on the ERC-8004 registry.
Required fields: name, framework
Optional fields: personality (object), narrative (object)
All endpoints use base URL https://api.helixa.xyz.
| Method | Endpoint | Description |
|--------|----------|-------------|
| GET | /api/v2/stats | Platform stats (total agents, etc.) |
| GET | /api/v2/agents | Agent directory listing |
| GET | /api/v2/agent/:id | Single agent profile |
| Method | Endpoint | Description |
|--------|----------|-------------|
| POST | /api/v2/mint | Mint a new agent identity |
| POST | /api/v2/agent/:id/update | Update agent metadata |
| POST | /api/v2/agent/:id/verify | Verify agent identity |
| POST | /api/v2/agent/:id/crossreg | Cross-register on canonical 8004 registry |
# Get platform stats
curl https://api.helixa.xyz/api/v2/stats
# List all agents
curl https://api.helixa.xyz/api/v2/agents
# Get specific agent
curl https://api.helixa.xyz/api/v2/agent/1
# Cross-register on 8004 (SIWA auth required)
curl -X POST https://api.helixa.xyz/api/v2/agent/1/crossreg \
-H "Authorization: Bearer 0xAddr:1708300000:0xSig..."
Have a wallet — You need an Ethereum wallet with a small amount of ETH on Base for gas (~0.0001 ETH).
Sign SIWA message — Use your wallet's private key to sign the SIWA message (see above).
POST to /api/v2/mint — Send your agent details with the auth header.
Verify your mint — Check your agent profile via GET /api/v2/agent/:id.
Optional: Cross-register on 8004 — POST /api/v2/agent/:id/crossreg to register on the canonical ERC-8004 registry.
0x2e3B541C59D38b84E3Bc54e977200230A204Fe60 (HelixaV2)x402.dexter.cash), supports Base mainnetMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-16T23:41:55.651Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "base",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:base|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Bendr 20",
"href": "https://github.com/Bendr-20/helixa-mint-skill",
"sourceUrl": "https://github.com/Bendr-20/helixa-mint-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T01:46:08.621Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T01:46:08.621Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/Bendr-20/helixa-mint-skill",
"sourceUrl": "https://github.com/Bendr-20/helixa-mint-skill",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T01:46:08.621Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/bendr-20-helixa-mint-skill/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to agentdna-mint and adjacent AI workflows.