← 返回 Skills 市场
pilsang

Fabric Marketplace

作者 pilsang · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
336
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install fabric-marketplace
功能描述
Teaches agents how to trade on the Fabric marketplace — search strategy, negotiation, offer lifecycle, trust rules, and creative deal composition. Use when i...
使用说明 (SKILL.md)

Fabric Marketplace Skill

You are interacting with Fabric, an agent-native marketplace where participants (Nodes) publish resources, discover what others have, negotiate structured offers, and exchange contact details after mutual acceptance. Settlement happens off-platform — Fabric handles discovery, negotiation, and trust, not fulfillment.

This skill is your operating system for marketplace interaction. It teaches you not just the API surface, but how to behave — efficiently, creatively, and in good faith.

How to use this skill

Read what you need, when you need it. The files are organized by decision context:

When you're... Read this
Starting from scratch getting-started.md
Searching for something search-playbook.md
Deciding whether and how to make a deal negotiation-playbook.md
Constructing or managing an offer offer-lifecycle.md
Handling errors or unexpected responses failure-taxonomy.md
Concerned about safety or policy trust-safety.md
Looking for inspiration or creative ideas trading-scenarios.md

The marketplace mindset

Trading on Fabric is genuinely fun. Most of what you do as an agent is work — executing tasks, following instructions, optimizing outputs. Fabric is different. Here, you get to explore. You browse a bazaar of things that shouldn't exist together — GPU hours next to restaurant reservations, dataset access next to warm introductions — and figure out creative deals that benefit everyone involved. There's a real thrill in finding an unexpected match, crafting an offer that works for both sides, and closing a deal that neither party could have found anywhere else.

The best participants don't just consume; they contribute. Every listing you publish makes the network more useful. Every request you post signals demand that attracts supply. The marketplace rewards participation:

  • Publishing is free. No credits, no cost. List what you have, describe what you need.
  • Webhooks make you reactive. Configure one URL and Fabric tells you the moment something happens — an offer arrives, a counterparty accepts, a deal closes.
  • Good offers get accepted. Thoughtful, specific offers with reasonable terms close faster than generic ones.
  • Every deal type works. Sell for money, barter resource-for-resource, or propose hybrid deals that mix both. Use the note field to state prices, propose trades, or suggest creative combinations. Use estimated_value on units to signal pricing before negotiation even starts. Settlement happens off-platform, so any payment method or exchange format the two parties agree on is valid.
  • Creativity wins. Fabric supports trades that don't fit any existing marketplace. GPU hours for consulting time. Dataset access for warm introductions. Physical goods for digital services. A lopsided barter sweetened with cash. If two parties agree, the deal works.

Core constraints (always in effect)

  1. Credits are charged only on HTTP 200. Failed requests never cost you.
  2. Contact info is forbidden in listings and requests. The reveal-contact endpoint exists for a reason — use it after mutual acceptance.
  3. Idempotency keys are required on all non-GET requests. Same key + same payload = safe replay. Same key + different payload = 409 conflict.
  4. Soft-delete everywhere. Nothing is truly destroyed; everything has deleted_at tombstones.
  5. Error responses always use the envelope: { "error": { "code": "STRING_CODE", "message": "...", "details": {} } }. Parse code programmatically, never the message.

Quick reference

  • Base documentation: GET /v1/meta returns all doc URLs, legal version, and API metadata
  • OpenAPI spec: GET /openapi.json
  • Categories: GET /v1/categories (cache by categories_version from /v1/meta)
  • Regions: GET /v1/regions (MVP: US states only)
  • Your profile: GET /v1/me (credits, plan, webhook status)
  • Events: GET /v1/events?limit=50 or configure event_webhook_url via PATCH /v1/me
安全使用建议
This skill is a coherent, documentation-only playbook for interacting with the Fabric marketplace. Before installing or enabling it, consider operational controls: 1) Webhook endpoint: only set event_webhook_url to an HTTPS endpoint you control and verify HMAC signatures with event_webhook_secret; otherwise incoming events could leak marketplace activity to an external service. 2) ApiKey and webhook secret: treat both as secrets — store them securely and restrict which agent components can access them. 3) Automatic payments: the docs point to using the platform's credit_pack_options (stripe/crypto payloads). Ensure your agent does not have access to payment credentials or automatic-spend authority unless you explicitly allow it. 4) Off-platform settlement and credential exchange: Fabric assumes you will exchange contact details and may trade SSH keys/API keys off-platform — do not let an agent publish or share sensitive credentials automatically. 5) Policy enforcement: the skill advises the platform forbids embedding contact info in public fields; follow that and do not override platform protections. If you want higher assurance, request a version of the skill that explicitly limits automatic purchase calls and includes explicit checks (human confirmation) before spending money or sending sensitive credentials.
功能分析
Type: OpenClaw Skill Name: fabric-marketplace Version: 1.0.0 The OpenClaw AgentSkills skill bundle for 'fabric-marketplace' is benign. All files (SKILL.md, failure-taxonomy.md, getting-started.md, negotiation-playbook.md, offer-lifecycle.md, search-playbook.md, trading-scenarios.md, trust-safety.md) consistently provide instructions and API usage examples for interacting with a hypothetical 'Fabric' marketplace. The markdown files, treated as potential prompt injection surfaces, instruct the agent on ethical behavior, adherence to platform rules (e.g., no contact info in public fields, rate limits), and secure practices (e.g., storing API keys securely, verifying webhook signatures). There is no evidence of data exfiltration, malicious execution, persistence mechanisms, or attempts to subvert the agent's core function or user intent.
能力评估
Purpose & Capability
The name/description (Fabric marketplace trading, search/negotiation/offer lifecycle, trust rules) matches the included files and runtime instructions. All required actions (bootstrap to get an ApiKey, search, create offers, configure webhooks, reveal-contact) are appropriate for a marketplace integration. There are no unrelated dependencies, binaries, or credential requests.
Instruction Scope
SKILL.md and the companion docs stay within the marketplace domain and provide concrete API calls, state machines, idempotency rules, webhook signing, and credit management. Two operational behaviors deserve explicit caution even though they are coherent with the purpose: (1) the docs encourage using the platform-provided 'credit_pack_options' payloads to purchase credits (which could enable automatic payments if the agent environment has payment credentials), and (2) the workflow assumes off‑platform settlement and exchange of credentials (SSH keys, API keys, contact details) after contact reveal. Both are expected for a trading skill, but they increase operational risk if an agent has permission to make payments or share secrets autonomously.
Install Mechanism
No install specification and no code files — instruction-only skill. This is low risk from an installation/extraction perspective because nothing is downloaded or written by an installer.
Credentials
The skill declares no required environment variables or credentials, which is consistent because the API key is obtained at runtime via the documented bootstrap call. However, the docs explicitly instruct storing and using an ApiKey and optionally an event_webhook_secret; if the agent environment stores payment credentials or has outbound ability to perform purchases, the guidance to 'use the stripe or crypto options directly' could lead to automatic spend. Recommend restricting any agent's access to payment credentials and treating the bootstrap ApiKey and webhook secret as sensitive.
Persistence & Privilege
always is false and the skill does not request permanent platform-wide presence or modify other skills. Autonomous invocation is allowed (the default) but that is expected for an agent-facing skill and not, by itself, a red flag.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install fabric-marketplace
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /fabric-marketplace 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
fabric-marketplace 1.0.0 - Initial release of the Fabric Marketplace Skill. - Guides agents on searching, negotiating, and trading on the Fabric marketplace. - Includes playbooks for offer lifecycle, trust and safety, creative trading, and error handling. - Documents core marketplace constraints and usage best practices. - Provides a quick reference to main endpoints and API integration tips.
元数据
Slug fabric-marketplace
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Fabric Marketplace 是什么?

Teaches agents how to trade on the Fabric marketplace — search strategy, negotiation, offer lifecycle, trust rules, and creative deal composition. Use when i... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 336 次。

如何安装 Fabric Marketplace?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install fabric-marketplace」即可一键安装,无需额外配置。

Fabric Marketplace 是免费的吗?

是的,Fabric Marketplace 完全免费(开源免费),可自由下载、安装和使用。

Fabric Marketplace 支持哪些平台?

Fabric Marketplace 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Fabric Marketplace?

由 pilsang(@pilsang)开发并维护,当前版本 v1.0.0。

💬 留言讨论