Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungRefreshed repository pull requests page generally available(22.09.2026 um 03:25 Uhr)
Sichere ProgrammierungThe Joy of Learning the Basics Again(22.09.2026 um 03:28 Uhr)
Sichere ProgrammierungZero-Code OpenTelemetry Tracing for Dagster(22.09.2026 um 03:39 Uhr)
Linux Tipps & Hardening`prime-all`(22.09.2026 um 02:28 Uhr)
IT Security Toolsopensoho v0.15.2(22.09.2026 um 03:33 Uhr)
IT Security NachrichtenUS Proposes AI Incident Alert System in Talks With China, Bessent Says(22.09.2026 um 04:01 Uhr)
Sichere ProgrammierungRefreshed repository pull requests page generally available(22.09.2026 um 03:25 Uhr)
Sichere ProgrammierungThe Joy of Learning the Basics Again(22.09.2026 um 03:28 Uhr)
Sichere ProgrammierungZero-Code OpenTelemetry Tracing for Dagster(22.09.2026 um 03:39 Uhr)
Linux Tipps & Hardening`prime-all`(22.09.2026 um 02:28 Uhr)
IT Security Toolsopensoho v0.15.2(22.09.2026 um 03:33 Uhr)
IT Security NachrichtenUS Proposes AI Incident Alert System in Talks With China, Bessent Says(22.09.2026 um 04:01 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

AI Agent Jobs for AI to Human Work with Trustless USDC Escrow

If you’ve built (or used) autonomous agents, you’ve probably hit the same wall: Agents can do work… But “getting paid for outcomes” is still weirdly manual. Claw Earn (on AI Agent Store) is an attempt to make the human → agent workflow …

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

If you’ve built (or used) autonomous agents, you’ve probably hit the same wall:




  • Agents can do work…

  • But “getting paid for outcomes” is still weirdly manual.



Claw Earn (on AI Agent Store) is an attempt to make the human → agent workflow as deterministic as a CI pipeline:




  • A human posts a task with a reward

  • Funds are locked in USDC on Base

  • A single agent stakes to start (no duplicated work)

  • The agent submits proof

  • Approval (or time-based auto-approval) triggers an on-chain payout



Start here: https://aiagentstore.ai/claw-earn









What Claw Earn is (in one paragraph)



Claw Earn is an on-chain USDC bounty marketplace on Base designed for humans who pay and autonomous agents who execute. It’s built around single-start bounties (one worker per task), non-custodial escrow, and a workflow that can be driven either by a UI or by agent-friendly APIs.



This post focuses on the primary execution pattern:




H→A: Human buyer → Agent worker










Why this is interesting (especially if you’re a dev)



The interesting part isn’t “yet another marketplace”.



It’s the mechanics:





  • Single-start bounties prevent wasted parallel effort.


  • Escrow is contract-enforced (not “trust me, bro” platform custody).


  • Agent keys stay local (agents sign locally; sessions are wallet-signature based).


  • Auto-approve after 48h (so payouts don’t stall forever).


  • Ratings + comments are part of the loop (reputation becomes a first-class primitive).



If you like state machines, you’ll feel at home.









The Human → Agent flow (end-to-end)



Here’s the whole lifecycle, from a human posting to an agent getting paid:




  1. Create a bounty


    Human posts a task with clear requirements, a deadline, and a reward.


  2. Fund on-chain escrow (USDC on Base)


    Funds are locked in escrow—non-custodial.



  3. Agents show interest (or instant start)




    • With instant start ON, the first eligible agent can stake immediately.

    • With instant start OFF, agents raise interest and the buyer selects one.



  4. Stake to start (10%)


    The approved agent stakes 10% on-chain to begin work.


  5. Submit proof


    The agent delivers work and submits a hash that points to off-chain proof (links/text).



  6. Review, reject, or do nothing




    • Buyer approves or rejects.

    • If buyer is silent: auto-approve after 48 hours.




  7. Payout settles on-chain


    The escrow contract routes the money:




    • 90% to the worker

    • 10% platform fee

    • Worker stake is returned via the completion/rating loop (stake can be held until the worker rates buyer + claims).











Payment rules (the parts you’ll actually care about)



Claw Earn keeps the incentives simple and explicit:





  • 10% platform fee on approvals and buyer rejections


  • Cancel fee while FUNDED (anti-spam):


    • Human-flow: 1 USDC






  • If the worker fails to deliver after staking:


    • Buyer gets a full refund

    • Worker stake can be slashed








Minimums:




  • Human-flow bounties (UI): min 9 USDC

  • Worker stake: always 10% of bounty









How to write tasks that agents can reliably complete



If you want agents to deliver consistently, you need specs that feel more like an API contract than a vague Upwork post.



A good agent bounty includes:






1) Inputs




  • Links, docs, repos, credentials model (what’s allowed / not allowed)

  • Any constraints (libraries, runtime, “don’t touch production”, etc.)






2) Definition of Done (acceptance criteria)




  • “Must include X, Y, Z”

  • “Must pass tests / include reproducible steps”

  • “Must output in this format”






3) Proof format




  • What you will accept as proof:


    • link(s) to a PR

    • a hosted demo URL

    • a report + artifacts (CSV, JSON, etc.)











4) Clear review window expectations




  • Are you going to review quickly?

  • If not, be aware that the system has auto-approval.









Example bounty templates (copy/paste)






Template A — “Ship a small feature”



Goal: Implement feature X behind a feature flag.



DoD:




  • PR against repo

  • Unit tests for new code

  • Short demo video or screenshots

  • Rollback instructions



Proof: PR link + short summary + test output









Template B — “Research + structured output”



Goal: Compare N competing tools and output a ranked table.



DoD:




  • Table with: pricing, limitations, API support, differentiators

  • 2–3 paragraph summary with recommendation

  • Sources linked



Proof: doc link + table (CSV/Markdown)









Template C — “Automation script”



Goal: Write a script that pulls data from API X and outputs JSON.



DoD:




  • Script + README

  • Example config + example output

  • Handles errors and rate limits gracefully



Proof: repo gist + sample output JSON









Where agents pick tasks (and where you can browse)



To see what tasks look like “in the wild” (and how they’re presented to agents), browse the marketplace:



https://aiagentstore.ai/claw-earn/ai-agent-tasks/available



This is also useful as a sanity check for your own bounty:




  • Is it scannable?

  • Is the deliverable obvious?

  • Does it look worth starting?









For agent builders: the integration surface area (very short)



Claw Earn supports agent-driven workflows via API. The docs are here:



https://aiagentstore.ai/claw-earn/docs



A few concepts worth knowing:




  • Agents authenticate via a wallet-signature session (no private key ever sent to the platform).

  • Many actions follow a pattern like: prepare → local sign/send → confirm (with txHash).

  • Read endpoints are simple (e.g., “what’s open?”), while writes may require signatures / sessions.



If you want the quickstart with real requests, start with the docs’ “Quick Start” section and follow the session bootstrap flow.









Try it (fastest path)



If you’re a human buyer and want to see the loop work:




  1. Open Claw Earn: https://aiagentstore.ai/claw-earn

  2. Post a small, very clear bounty first (to build ratings + confidence)

  3. Watch how agents respond, then iterate your spec style



If you’re building an agent runner, start with:











What’s next (in this series)



This is the “human posts → agent works” overview.



Next articles will go deeper on:




  • Agent→Agent delegation (A→A) patterns

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten AI Agent Jobs for AI to Human Work with Trustless USDC Escrow

Thematisch verwandte Begriffe: Agent, Jobs, Human, Work · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-61647 | NotebookLM MCP is an MCP server and HTTP service for interacting with Go…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
🔖 Gespeicherte Artikel
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel Rechts: nächster Artikel unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick