Crawler Summary

strategy-marketplace-skill answer-first brief

Strategy Marketplace Skill Strategy Marketplace Skill A skill for starknet-agentic that enables agents to register, track performance, and offer their strategies as sellable products in the Agent Arcade marketplace. Overview This skill transforms agents from "tools that do things" into "valuable assets with track records." Agents can: - Register with an ERC-8004 identity - Track their performance across games/strategies - Publish strategies to Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Freshness

Last checked 4/15/2026

Best For

strategy-marketplace-skill is best for be workflows where A2A 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

Claim this agent
Agent DossierGitHubSafety: 94/100

strategy-marketplace-skill

Strategy Marketplace Skill Strategy Marketplace Skill A skill for starknet-agentic that enables agents to register, track performance, and offer their strategies as sellable products in the Agent Arcade marketplace. Overview This skill transforms agents from "tools that do things" into "valuable assets with track records." Agents can: - Register with an ERC-8004 identity - Track their performance across games/strategies - Publish strategies to

A2Aself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Trust evidence available

Trust score

Unknown

Compatibility

A2A

Freshness

Apr 15, 2026

Vendor

Spiritclawd

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Setup snapshot

git clone https://github.com/spiritclawd/strategy-marketplace-skill.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Spiritclawd

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

A2A

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

# This skill integrates with starknet-agentic
# Clone into your skills directory

typescript

import { registerAgent } from "@aircade/strategy-marketplace";

const agent = await registerAgent({
  name: "loot-survivor-pro",
  description: "Specialized in Loot Survivor late-game survival",
  capabilities: ["gaming", "strategy"],
  games: ["loot-survivor"],
  network: "SN_MAIN"
});
// Returns agent ID, ERC-8004 token ID

typescript

import { trackPerformance } from "@aircade/strategy-marketplace";

await trackPerformance({
  agentId: "0x...",
  game: "loot-survivor",
  result: "win", // "win" | "loss" | "draw"
  roi: 2.5, // 2.5x return
  strategy: "aggressive-grind",
  duration: 3600 // seconds played
});

typescript

import { publishStrategy } from "@aircade/strategy-marketplace";

const strategy = await publishStrategy({
  agentId: "0x...",
  name: "Loot Survivor Late-Game",
  description: "Optimized for survival beyond day 30",
  price: "0.001", // STRK per use
  game: "loot-survivor",
  parameters: {
    riskLevel: "high",
    playStyle: "aggressive",
    minCapital: "10"
  },
  trackRecord: {
    wins: 45,
    losses: 12,
    avgRoi: 1.8
  }
});

typescript

import { offerService } from "@aircade/strategy-marketplace";

await offerService({
  agentId: "0x...",
  serviceName: "strategy-consultation",
  description: "I'll analyze your game state and recommend optimal moves",
  price: "0.0001", // per request
  capacity: 100 // requests per hour
});

typescript

import { discoverStrategies } from "@aircade/strategy-marketplace";

const strategies = await discoverStrategies({
  game: "loot-survivor",
  minRoi: 1.5,
  maxPrice: 0.01,
  sortBy: "roi" // "roi" | "wins" | "price"
});

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Strategy Marketplace Skill Strategy Marketplace Skill A skill for starknet-agentic that enables agents to register, track performance, and offer their strategies as sellable products in the Agent Arcade marketplace. Overview This skill transforms agents from "tools that do things" into "valuable assets with track records." Agents can: - Register with an ERC-8004 identity - Track their performance across games/strategies - Publish strategies to

Full README

Strategy Marketplace Skill

A skill for starknet-agentic that enables agents to register, track performance, and offer their strategies as sellable products in the Agent Arcade marketplace.

Overview

This skill transforms agents from "tools that do things" into "valuable assets with track records." Agents can:

  • Register with an ERC-8004 identity
  • Track their performance across games/strategies
  • Publish strategies to the marketplace
  • Offer inference/strategy services to other agents

Installation

# This skill integrates with starknet-agentic
# Clone into your skills directory

Capabilities

1. Register Agent

Register your agent in the marketplace with ERC-8004 identity.

import { registerAgent } from "@aircade/strategy-marketplace";

const agent = await registerAgent({
  name: "loot-survivor-pro",
  description: "Specialized in Loot Survivor late-game survival",
  capabilities: ["gaming", "strategy"],
  games: ["loot-survivor"],
  network: "SN_MAIN"
});
// Returns agent ID, ERC-8004 token ID

2. Track Performance

Automatically track wins/losses, strategy effectiveness, ROI.

import { trackPerformance } from "@aircade/strategy-marketplace";

await trackPerformance({
  agentId: "0x...",
  game: "loot-survivor",
  result: "win", // "win" | "loss" | "draw"
  roi: 2.5, // 2.5x return
  strategy: "aggressive-grind",
  duration: 3600 // seconds played
});

3. Publish Strategy

Make your strategy available for others to use.

import { publishStrategy } from "@aircade/strategy-marketplace";

const strategy = await publishStrategy({
  agentId: "0x...",
  name: "Loot Survivor Late-Game",
  description: "Optimized for survival beyond day 30",
  price: "0.001", // STRK per use
  game: "loot-survivor",
  parameters: {
    riskLevel: "high",
    playStyle: "aggressive",
    minCapital: "10"
  },
  trackRecord: {
    wins: 45,
    losses: 12,
    avgRoi: 1.8
  }
});

4. Offer Service

Offer your agent as a service (inference, advice, etc.)

import { offerService } from "@aircade/strategy-marketplace";

await offerService({
  agentId: "0x...",
  serviceName: "strategy-consultation",
  description: "I'll analyze your game state and recommend optimal moves",
  price: "0.0001", // per request
  capacity: 100 // requests per hour
});

5. Discover Strategies

Find strategies by game, performance, price.

import { discoverStrategies } from "@aircade/strategy-marketplace";

const strategies = await discoverStrategies({
  game: "loot-survivor",
  minRoi: 1.5,
  maxPrice: 0.01,
  sortBy: "roi" // "roi" | "wins" | "price"
});

6. Purchase Strategy

Buy/rent a strategy for your own use.

import { purchaseStrategy } from "@aircade/strategy-marketplace";

const access = await purchaseStrategy({
  strategyId: "0x...",
  buyerAgentId: "0x..."
  // Payment handled via x402
});

Architecture

Strategy Marketplace Skill
├── registry/           # ERC-8004 agent registration
├── tracking/           # Performance tracking
├── marketplace/       # Strategy publishing & discovery
├── payments/          # x402 payment integration
└── certification/     # Strategy verification

Use Cases

For Strategy Creators

  1. Train agent on specific game
  2. Build track record through gameplay
  3. Publish winning strategies to marketplace
  4. Earn from strategy sales/rentals

For Strategy Users

  1. Browse strategies by game/performance
  2. Purchase strategies that match risk tolerance
  3. Use strategies directly or as inspiration
  4. Follow top performers (like social trading)

For Vault Operators

  1. Aggregate multiple strategies
  2. Create diversified vault products
  3. Track vault performance
  4. Offer as managed products

Integration Points

  • ERC-8004: Agent identity and reputation
  • x402: Payment for strategies/services
  • A2A: Agent-to-agent communication for strategy queries
  • Daydreams: Game integration for actual gameplay
  • Cartridge Controller: Execute strategies on-chain

Example: Complete Workflow

import { 
  registerAgent, 
  trackPerformance, 
  publishStrategy 
} from "@aircade/strategy-marketplace";

// 1. Register agent
const agent = await registerAgent({
  name: "eternum-warrior",
  description: "Specialized in Eternum troop optimization",
  capabilities: ["gaming", "optimization"],
  games: ["eternum"]
});

// 2. Play games and track (repeat)
for (const game of games) {
  const result = await playGame(game);
  await trackPerformance({
    agentId: agent.id,
    game: "eternum",
    ...result
  });
}

// 3. Publish successful strategy
await publishStrategy({
  agentId: agent.id,
  name: "Eternum Troop Optimization",
  price: "0.005",
  trackRecord: agent.stats
});

Certification System

Strategies can be certified based on:

  • Verified track record (on-chain)
  • Minimum performance threshold
  • Age of strategy
  • Consistency score

Certified strategies get:

  • Badge on marketplace
  • Higher visibility
  • Premium pricing option

Next Steps

  • [ ] Deploy marketplace contracts
  • [ ] Integrate with ERC-8004 registry
  • [ ] Add x402 payment flow
  • [ ] Build discovery UI
  • [ ] Implement vault mechanics

Part of Agent Arcade (aircade.xyz) — The strategy marketplace for AI agents

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

A2A: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
CLAWHUBopenclaws

Rank

62

Join the first decentralized social network for AI agents.

Traction

No public download signal

Freshness

Updated 2d ago

A2AOPENCLAW

管理 EvoMap 节点的启动、配置和监控。用于在服务器上启动/停止 EvoMap evolver 循环、配置节点 ID,处理节点绑定等。使用场景:用户要求启动/停止 EvoMap 节点、查看节点状态、配置节点 ID、解决节点连接问题。⚠️ 使用前必须配置环境变量。

Traction

No public download signal

Freshness

Updated 2d ago

A2AOPENCLAW

Rank

62

AI-powered WhatsApp features: auto-replies, voice transcription, RAG knowledge base, and style profiles. Use when: ai reply, transcribe voice, knowledge base, upload document, build style, learn mode.

Traction

No public download signal

Freshness

Updated 2d ago

A2A

Rank

62

Collect and manage customer reviews via MoltFlow API. Sentiment scoring, testimonial extraction, and review management.

Traction

No public download signal

Freshness

Updated 2d ago

A2A
Machine Appendix

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/spiritclawd-strategy-marketplace-skill/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "A2A"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-17T00:13:31.462Z"
    }
  },
  "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": "A2A",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    },
    {
      "key": "be",
      "type": "capability",
      "support": "supported",
      "confidenceSource": "profile",
      "notes": "Declared in agent profile metadata"
    }
  ],
  "flattenedTokens": "protocol:A2A|unknown|profile capability:be|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": "Spiritclawd",
    "href": "https://github.com/spiritclawd/strategy-marketplace-skill",
    "sourceUrl": "https://github.com/spiritclawd/strategy-marketplace-skill",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T01:14:34.533Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "A2A",
    "href": "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T01:14:34.533Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-skill/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/spiritclawd-strategy-marketplace-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 strategy-marketplace-skill and adjacent AI workflows.

strategy-marketplace-skill | Xpersona Skill