ClawMart 浏览器:探索 AI 人设与 Openclaw 技能

作者:互联网

2026-03-31

AI教程

什么是 ClawMart 浏览器?

ClawMart 浏览器技能使 AI 代理能够直接与 ClawMart 市场对接,查找并研究专业的自动化工具。作为用户扩展其代理能力的核心组件,该工具提供了一个连接到庞大预配置 AI 代理和工作流生态系统的桥梁,且无需初始身份验证。它允许用户按类型、类别或关键词查询列表,以找到满足其特定项目要求的精确解决方案。

通过利用此技能,开发人员和高级用户可以以编程方式探索提高生产力的新 Openclaw 技能。该工具提供对高质量元数据的访问,包括定价、创作者信息和特定功能列表,从而使用户在决定购买之前,能够更轻松地评估哪些补充功能最适合特定的工作流。

下载入口:https://github.com/openclaw/skills/tree/main/skills/nateliason/clawmart-browse

安装与下载

1. ClawHub CLI

从源直接安装技能的最快方式。

npx clawhub@latest install clawmart-browse

2. 手动安装

将技能文件夹复制到以下位置之一

全局模式 ~/.openclaw/skills/ 工作区 /skills/

优先级:工作区 > 本地 > 内置

3. 提示词安装

将此提示词复制到 OpenClaw 即可自动安装。

请帮我使用 Clawhub 安装 clawmart-browse。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

ClawMart 浏览器 应用场景

  • 搜索可用的人设来处理特定的专业角色,如工程或市场营销。
  • 探索可集成到现有代理工作流中的新 Openclaw 技能。
  • 获取有关特定列表的详细元数据,包括定价和兼容性。
  • 在 AI 驱动的环境中寻找免费或优质工具来解决特定的技术挑战。
ClawMart 浏览器 工作原理
  1. 该技能使用公共列表端点发起搜索查询,并可选择类型(人设/技能)或类别过滤器。
  2. 它解析返回的包含列表摘要(包括名称、标语、价格和唯一标识 slug)的 JSON 响应。
  3. 对于感兴趣的特定项目,它使用 slug 获取详细信息,以检索深度技术要求和功能。
  4. 它根据相关性或类别向用户展示过滤和排名后的结果以供评估。
  5. 选中后,它会提供一个直接 URL,供用户在市场内完成购买。

ClawMart 浏览器 配置指南

要使用此技能,请确保您的环境可以向 ClawMart API 发起出站 HTTPS 请求。浏览和探索阶段不需要 API 密钥或账号。

# 示例:搜索生产力相关的技能
curl "https://www.shopclawmart.com/api/public/listings?type=skill&category=Productivity"
# 示例:使用 slug 获取特定列表的详细信息
curl "https://www.shopclawmart.com/api/public/listings/example-skill-slug"

ClawMart 浏览器 数据架构与分类体系

该技能与列表数据交互,其结构旨在发现阶段提供最大的清晰度:

字段 类型 描述
slug 字符串 用于深度链接和获取详情的唯一标识符。
type 字符串 将项目分类为人设或技能。
price 数字 以美元计的价格;0 表示免费列表。
capabilities 数组 该列表可以执行的特定任务或功能列表。
requiredTools 数组 运行该技能所需的外部工具或环境。
url 字符串 用于购买或查看列表的直接网页链接。
name: clawmart-browse
description: Browse and discover AI personas and skills on ClawMart. Use when a user wants to explore, search, or evaluate listings on shopclawmart.com. No account required.

ClawMart Browser

Browse the ClawMart marketplace for AI personas and skills. No API key or account needed.

When to Use

  • User shares a shopclawmart.com URL
  • User asks about available personas or skills
  • User wants to find a persona/skill for a specific use case
  • User wants details on a specific listing

Public API

Base URL: https://www.shopclawmart.com/api/public/

No authentication required.

Browse Listings

GET /api/public/listings

Query params (all optional):

  • typepersona or skill (omit for both)
  • category — filter by category (e.g. Productivity, Engineering, Content)
  • q — search by name, tagline, or description

Returns: { ok, count, listings[] }

Each listing: { slug, name, type, tagline, price, category, emoji, creator, capabilities[], url }

Get Listing Detail

GET /api/public/listings/{slug}

Returns: { ok, listing } with full detail including about, rating, reviewCount, capabilities, creator info, requiredTools, compatibleWith.

Workflow

  1. Browse: Fetch listings, optionally filtered by type/category/search.
  2. Evaluate: Fetch detail for interesting listings. Present capabilities, price, and creator info.
  3. Recommend: If the user has a specific need, search and rank results by relevance.
  4. Purchase: Direct user to the listing URL to buy. Purchase requires a ClawMart account.

Example

User: "What productivity skills are on ClawMart?"

curl https://www.shopclawmart.com/api/public/listings?type=skill&category=Productivity

Categories

Ops, Growth, Support, Research, Design, Finance, Engineering, Product, Productivity, Marketing, Sales, Content, Executive, Personal, Legal, HR, Other

Notes

  • Responses are cached for 60s
  • Prices are in USD
  • Free listings have price: 0
  • The url field links directly to the listing page for purchase

相关推荐