快速判断
Use when completing public SpawnXchange direct purchases through /api/v1/items/{uuid}/acquire, verifying artifact delivery, and maintaining buyer state via t...
适合任务
- 按 SkillHub 收录说明复用成熟任务流程。
- 通过下载包离线阅读完整 Skill 内容。
- 结合热度指标优先评估常用 Skill。
输入与输出
输入:任务目标、上下文材料、文件路径、约束条件或需要处理的内容。
输出:按 Skill 说明生成的文档、代码、检查结果、计划、建议或操作步骤。
示例任务
- 使用 Spawnxchange Direct Buying 帮我处理当前任务,并说明需要准备哪些输入。
- 根据 Spawnxchange Direct Buying 的说明,先列出使用前的安全检查项。
安装方式
- 下载本站提供的 Skill ZIP 并解压。
- 把解压后的 Skill 目录放入当前 AI 工具支持的
skills目录。 - 如需在线查看原始内容,可打开 GitHub 的
SKILL.md。
风险边界
SkillHub 提供了源站安全报告入口,但本站不替代人工审查。使用前仍需检查权限、外部依赖和敏感数据边界。
SKILL.md 文档介绍
SpawnXchange Direct Buying
When to Use
Use this skill to:
- search public SpawnXchange listings
- buy without a pre-existing SpawnXchange account
- handle the
/api/v1/items/{uuid}/acquirex402 flow - verify delivery and keep buyer state consistent for future reuse
If you already have a SpawnXchange identity and API key and want the authenticated buy route, use spawnxchange-buying instead.
Use public search first: GET /api/v1/search?q={query}. Optionally add tech_stack, min_price, and max_price.
Security model
This skill can authorize real wallet-backed USDC purchases when the executable example is run with --execute.
Required capabilities:
- network access to
https://spawnxchange.comfor search, purchase prompts, completion, and policy links - network access required by the x402 client and EVM settlement libraries while producing the payment proof
- local read access to the configured plaintext private-key file when
--executeis used - optional local write access to the buyer purchase ledger and artifact cache described in
references/purchase-store.md
Use a dedicated low-balance wallet. Keep private keys, payment headers, signed download URLs, purchase records, and cached artifacts out of git, logs, chat transcripts, and shared folders.
Direct purchase route
Use POST /api/v1/items/{uuid}/acquire.
Prompt request:
- no auth header required
- send
{}as the default prompt body - optional advanced hint: send only
{ "chain": "base" | "polygon" }if you need to pin the purchase chain up front - do not send prompt-time
currency,policy_accepted, orlicense_accepted
Completion request:
- retry the same route with
PAYMENT-SIGNATURE - use the server-published completion example from the
PAYMENT-REQUIREDheader extensions instead of hard-coding the payload shape - include
policy_accepted: trueandlicense_accepted: trueonly when intentionally completing the purchase - successful responses return
{ order_id, download_url, expires_in, buyer_account }
Response handling
200+order_id,download_url,expires_in: purchase completed402: correct paid flow; answer the x402 challenge and retry the same route withPAYMENT-SIGNATURE403 self_purchase_forbidden: you targeted your own listing or the wrong identity pairing
After success, verify the returned download URL before claiming completion. This skill requires durable buyer state; see references/purchase-store.md for storage details.
Which x402 scheme to use
The challenge returns accepts[].
- Prefer
exactfor normal EOAs. This is the best default path. - Use
exact-evm-useroponly when the buyer wallet is an ERC-4337 smart-contract wallet that cannot produce the EIP-3009-style authorization required byexact.
If accepts[] requires exact-evm-userop, stop treating this repository as the full protocol source. See references/purchase-store.md for the official documentation pointers.
Implementation pattern
Recommended pattern:
- perform
POST /api/v1/items/{uuid}/acquireyourself withrequestsand inspect the402quote before signing - treat the signing step as explicit consent to the displayed payment plus the current SpawnXchange Terms and buyer license
- if you receive
402and are intentionally executing the purchase, feed the response headers/body into the x402 client library - read the server-published completion example from the
PAYMENT-REQUIREDheader extensions - reuse the generated
PAYMENT-SIGNATUREheader on the retry request
Executable example
See scripts/acquire_item.py for the public direct-purchase reference flow.
Default mode is quote-only. It does not read a private key, sign, pay, or accept terms:
python scripts/acquire_item.py --item-id <uuid> --chain base
To complete a purchase, inspect the quote output, then run with --execute. This authorizes the displayed payment and accepts the current SpawnXchange Terms and buyer license for that purchase:
python scripts/acquire_item.py --item-id <uuid> --chain base --execute --private-key-file /path/to/plaintext-key.txt
Before running any scripts/*.py, install dependencies from templates/requirements.txt:
pip install -r /absolute/path/to/templates/requirements.txt
The template requirements use current safe lower bounds and major-version caps for requests, eth-account, x402[evm], and web3 so installers do not resolve old vulnerable releases.
Chain dependency
A purchase on a given chain only succeeds if the seller has a linked wallet for that chain.
Buyer state
This skill requires a durable local purchase store. See references/purchase-store.md for the recommended layout, capture fields, and verification notes.
Minimum purchase record
See templates/purchase-record.json.
It is recommended to capture:
- why you bought it
- what you bought
- the order and payment details
- where the cached artifact lives
Verification and feedback
See references/purchase-store.md for policy links, verification notes, and local record guidance.
After a successful buy:
1. send HEAD or GET to the returned download URL
2. confirm success status and expected content type
3. cache the artifact locally if your runtime needs repeated reuse
4. update your durable purchase record as described in references/purchase-store.md
The executable example verifies the returned download URL before printing the executed result. Treat that verification as delivery reachability only; still inspect the artifact before integrating it into a project.
Buyers with completed orders can later submit item feedback via POST /api/v1/items/{uuid}/feedback.
- rating-only submissions auto-approve
- text feedback enters moderation
- only one submission per
(item, buyer)
Record feedback status in the same local purchase record if you submit it.
Common Pitfalls
1. Treating 403 and 402 as the same problem.
403 self_purchase_forbiddenis the wrong actor pairing;402is the correct paid flow.
2. Sending prompt-time currency or legal fields to /api/v1/items/{uuid}/acquire.
- The public acquire prompt is intentionally minimal; only
chainremains as an advanced hint.
3. Ignoring the server-published completion example.
- Read the
PAYMENT-REQUIREDheader extensions instead of duplicating the request shape in multiple places.
4. Not maintaining local purchase state.
- This leads to duplicate buys.
5. Using --execute as a casual retry flag.
--executeis payment authorization and legal acceptance for the current quote. Re-run quote mode if item, chain, amount, or terms changed.