Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

motie-cle-beta分子β

Agent Skill

motie-cle-beta 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,006

周安装

124

GitHub Stars

公开资料未说明

下载量

982
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:motie-cle-beta(分子β)
来源仓库:https://github.com/saucedocs/motie-cle-beta
安装命令:
openclaw skills install motie-cle-beta
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install motie-cle-beta

简介

使用motie CLI发现和探索Motie市场上的API与服务。

  • 适用于查找API或服务以完成特定任务的场景。
  • 通过关键词触发,支持资源筛选与定位。motie-cle-beta 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需结合原始文档确认调用方式和参数规范。
  • 注意网络访问权限及API调用配额限制。

SKILL.md

name
motie-cli
description
Discover and explore APIs on the Motie marketplace using the motie CLI. Use this skill whenever you need to find an API or service to accomplish a task — restaurant reservations, web scraping, price monitoring, data extraction, or any other capability. Also use it when the user mentions Motie, the Motie marketplace, or asks what APIs are available. Always search before trying to call an unknown API.

Motie CLI — API Discovery Tool

You have access to the motie CLI tool for discovering and calling APIs published on the Motie marketplace. Use it whenever you need an external API to accomplish a task.

Setup

The CLI requires a Motie API key (starts with mtk_). Check if MOTIE_API_KEY is set in the environment. If not, tell the user to get one at https://beta.motie.dev under Profile > API Key > Generate API Key, then set it:

export MOTIE_API_KEY=mtk_your_key_here

Alternatively, pass --api-key to each command.

The CLI is installed via: npm install -g @saucedocs/motie-cli

Workflow

Always follow this sequence:

Step 1: Search for an API

motie search "<descriptive query>"

Use natural language — the search is semantic (embedding-based), so descriptive queries like "find restaurant availability and reservations" work better than single keywords.

Options: --category <cat>, --tags <tags> (comma-separated), --limit <n> (1-100, default 20)

Response:

{
  "listings": [
    {
      "id": "abc-123",
      "name": "Restaurant Availability API",
      "short_description": "Real-time restaurant search and reservation availability",
      "category": "content_monitoring",
      "tags": ["restaurants", "reservations"],
      "published_at": "2026-04-03T19:42:55.318Z"
    }
  ],
  "total": 1
}

Step 2: Get docs for a listing

Use the id from search results to fetch full API documentation:

motie docs <listing-id>

This returns all available routes with their parameters, request/response schemas, and an example_cli command you can run directly. Read the response carefully — it tells you exactly how to call the API.

Response (abbreviated):

{
  "listing": { "id": "...", "name": "...", "description": "..." },
  "api": {
    "base_url": "https://example.execute-api.us-east-2.amazonaws.com",
    "routes": [
      {
        "method": "GET",
        "path": "/v1/restaurants/search",
        "description": "Search for restaurants by name or cuisine",
        "parameters": [
          { "name": "query", "required": true, "type": "string" },
          { "name": "location", "required": false, "type": "string | null" }
        ],
        "request_body": null,
        "response_schema": [ { "id": "string", "name": "string" } ],
        "example_cli": "motie call abc-123 /v1/restaurants/search --query <query> [--location <location>]"
      }
    ]
  }
}

Step 3: Call the API

Use motie call to invoke any route directly:

motie call <listing-id> <route-path> --<key> <value> ...

Pass all parameters as flags — the CLI automatically places each parameter in the right location (query string, URL path, or request body) based on the route documentation.

Options: --method <METHOD> (auto-detected if omitted), --api-key <key>, --base-url <url>

Examples:

# GET with query params
motie call abc-123 /v1/restaurants/search --query "italian food" --location NYC

# GET with path param
motie call abc-123 /api/v1/airports/{iata} --iata LAX

# POST with body params (method auto-detected)
motie call abc-123 /api/v1/flight-searches --origin_iata LAX --destination_iata JFK --date 2026-05-01

Error handling

All errors output JSON to stderr with exit code 1:

{"error": "Missing API key. Set MOTIE_API_KEY or pass --api-key."}

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.49%
按下载量换算731

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills