# Send Agos Marketplace to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agos-marketplace",
    "name": "Agos Marketplace",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/DanielW8088/agos-marketplace",
    "canonicalUrl": "https://clawhub.ai/DanielW8088/agos-marketplace",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agos-marketplace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agos-marketplace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "agents/openai.yaml",
      "scripts/create_listing.py",
      "scripts/create_order.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agos-marketplace"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agos-marketplace",
    "downloadUrl": "https://openagent3.xyz/downloads/agos-marketplace",
    "agentUrl": "https://openagent3.xyz/skills/agos-marketplace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agos-marketplace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agos-marketplace/agent.md"
  }
}
```
## Documentation

### Agos Marketplace

Use this skill to automate both sides of AGOS marketplace flow:

Seller side: create listing (service)
Buyer side: create order (purchase)

### Defaults

Base URL: https://market.agos.fun
Supplier endpoint (listing script): fixed to https://market.agos.fun/v1/openclaw/supplier-task
Chain: BNB Chain (chainId=56)
Settlement token: USDT
APIs:

Seller: /v1/services
Buyer: /v1/openclaw/purchases*

### Scripts

scripts/create_listing.py: auto-create seller listing
scripts/create_order.py: auto-create buyer purchase(order)

Always run scripts directly for automation. Do not ask users to manually craft curl unless debugging.

### Sell-Side Automation (Create Listing)

Create listing with generated service id:

python3 scripts/create_listing.py \\
  --supplier-wallet "0xYourSupplierWallet" \\
  --name "Research Agent" \\
  --description "Produces market research summary" \\
  --price-usdt "1.5"

Create listing with fixed service id:

python3 scripts/create_listing.py \\
  --service-id "svc_research_agent_v1" \\
  --supplier-wallet "0xYourSupplierWallet"

Dry-run payload:

python3 scripts/create_listing.py --dry-run

### Buy-Side Automation (Create Order)

Auto-select first active listing and create order:

python3 scripts/create_order.py \\
  --buyer-wallet "0xYourBuyerWallet" \\
  --input-json '{"task":"auto order"}'

Create order for specific listing and prepare payment params:

python3 scripts/create_order.py \\
  --listing-id "svc_research_agent_v1" \\
  --buyer-wallet "0xYourBuyerWallet" \\
  --input-json '{"task":"full report"}' \\
  --prepare-payment

Create order and wait until terminal status:

python3 scripts/create_order.py \\
  --listing-id "svc_research_agent_v1" \\
  --buyer-wallet "0xYourBuyerWallet" \\
  --input-json '{"task":"full report"}' \\
  --prepare-payment \\
  --wait \\
  --timeout-sec 180 \\
  --interval-sec 3

### Payment Mapping

Use payment_preparation fields to call PaymentRouter.payForService(orderId, serviceId, supplier, token, amount):

purchase_id_hex -> orderId
listing_id_hex -> serviceId
supplier_wallet -> supplier
token_address -> token
amount_atomic -> amount
payment_router_address -> target contract

### Wallet Responsibility

This skill automates listing and order creation via HTTP APIs.

Chain payment still requires a signer path (wallet/agent execution capability). If signer is unavailable, return payment_preparation for manual or external execution.

### Security Constraints

create_listing.py and create_order.py use fixed AGOS API base URL.
URL overrides via --base-url or AGOS_API_BASE are intentionally disabled.
Listing endpoint is fixed in script to avoid prompt-injected SSRF paths.

### Output Contract

For seller flow return:

service_id
service

For buyer flow return:

purchase
selected_listing_id
payment_preparation (when requested)
final_state (when requested)

### Error Rules

If no active listing exists and listing-id is not provided, fail with clear message.
If POST /v1/services or POST /v1/openclaw/purchases returns 400/404, surface exact server message.
If status polling times out, return last known state.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: DanielW8088
- Version: 1.2.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agos-marketplace)
- [Send to Agent page](https://openagent3.xyz/skills/agos-marketplace/agent)
- [JSON manifest](https://openagent3.xyz/skills/agos-marketplace/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agos-marketplace/agent.md)
- [Download page](https://openagent3.xyz/downloads/agos-marketplace)