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.

What this means

The agent could create an AGOS order for an unintended listing if the user does not specify the exact listing to buy.

Why it was flagged

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.

Skill content
listing_id = args.listing_id or select_listing(base_url) ... "POST", f"{base_url}/v1/openclaw/purchases"
Recommendation

Require users to provide an explicit listing ID and confirm supplier, price, wallet, and task payload before creating a purchase.

What this means

Using the skill can create active marketplace listings with the supplied wallet, price, description, and schema.

Why it was flagged

The listing script posts a service listing to the marketplace. This is purpose-aligned and disclosed, but it is a state-changing external action.

Skill content
created = http_post_json(f"{base_url}/v1/services", payload)
Recommendation

Use dry-run first when possible and review listing details before allowing the script to create an active listing.

What this means

Users have less external context for who maintains the skill or where to verify updates and documentation.

Why it was flagged

The artifacts include the scripts, but the package has limited provenance information for automation that can create marketplace listings and orders.

Skill content
Source: unknown; Homepage: none
Recommendation

Review the included scripts before use and prefer an official, documented source if available.