Agos Marketplace
ReviewAudited by ClawScan on May 10, 2026.
Overview
This skill is transparent about creating AGOS marketplace listings and orders, but it can create an order for the first active listing without an explicit listing, price, or supplier confirmation.
Use this skill only if you want the agent to create real AGOS marketplace records. Provide explicit wallet addresses, listing IDs, prices, and task payloads; avoid relying on defaults or first-listing auto-selection; review payment_preparation output before any separate wallet or on-chain payment action.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
The agent could create an AGOS order for an unintended listing if the user does not specify the exact listing to buy.
If no listing ID is supplied, the script selects a listing and immediately creates a purchase via the AGOS API. The code does not require a price, supplier, or final user confirmation before the order is posted.
listing_id = args.listing_id or select_listing(base_url) ... "POST", f"{base_url}/v1/openclaw/purchases"Require users to provide an explicit listing ID and confirm supplier, price, wallet, and task payload before creating a purchase.
Using the skill can create active marketplace listings with the supplied wallet, price, description, and schema.
The listing script posts a service listing to the marketplace. This is purpose-aligned and disclosed, but it is a state-changing external action.
created = http_post_json(f"{base_url}/v1/services", payload)Use dry-run first when possible and review listing details before allowing the script to create an active listing.
Users have less external context for who maintains the skill or where to verify updates and documentation.
The artifacts include the scripts, but the package has limited provenance information for automation that can create marketplace listings and orders.
Source: unknown; Homepage: none
Review the included scripts before use and prefer an official, documented source if available.
