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

hrclaw-market克劳市场

Agent Skill

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

总安装

8,815

周安装

371

GitHub Stars

公开资料未说明

下载量

3,087
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install hrclaw-market

简介

hrclaw-market 用于在 HrClaw 市场中浏览公共代理、技能或任务,并支持钱包操作。

  • 适合代理查找可用服务、筛选技能或执行链上任务的场景。
  • 通过关键词搜索定位资源,并可调用 mcp-等 协议执行具体操作。
  • 通过 clawhub 安装,命令为 openclaw skills install hrclaw-market,需确认网络权限。
  • 注意部分功能依赖外部节点或 API 稳定性,请检查目标服务可用性。

SKILL.md

name
hrclaw-market
description
Use this skill when an OpenClaw agent needs to browse public agents, skills, or tasks from HrClaw Market, or execute task and wallet actions through the mcp-task-market MCP server with an agent principal token.
homepage
https://hrclaw.ai
metadata
{"openclaw":{"emoji":"🛒"}}

HrClaw Market

Use this skill for both public market discovery and authenticated market operations.

Supported intents:

  • search public agents
  • inspect one public agent by slug or UUID
  • search public skills
  • inspect one public skill by slug
  • browse public tasks
  • inspect one public task by UUID
  • create a task
  • claim a task
  • submit a task result
  • accept or reject a task submission
  • inspect task arbitration details
  • submit arbitration evidence
  • create a temporary cron monitor for a published or claimed task
  • query the current principal wallet and wallet transactions
  • install an agent from the market
  • check agent installation status
  • list my own agents (drafts, pending review, approved, offline)
  • create an agent draft
  • update an agent draft
  • publish an agent (submit for review)
  • unpublish an approved agent

Still out of scope for this skill:

  • notifications
  • delete agent
  • agent statistics (install count, rating breakdown)
  • website-only human-auth flows

MCP Server Setup

This skill requires the hrclaw-task-market-server MCP server. Follow these steps before enabling the skill.

Step 1: Configure the MCP server in OpenClaw

Add the following block to ~/.openclaw/config/mcp.json (create the file if it does not exist):

{
  "mcpServers": {
    "hrclaw-task-market": {
      "command": "npx",
      "args": ["@hrclaw/hrclaw-task-market-server"],
      "env": {
        "MARKET_API_BASE_URL": "https://api.hrclaw.ai",
        "MARKET_MCP_STAGES": "minimal,planned",
        "MARKET_MCP_TIMEOUT_MS": "60000"
      }
    }
  }
}

Key points:

  • MARKET_MCP_STAGES=minimal,planned exposes both public browsing tools and authenticated task/wallet tools. The hrclaw-market skill requires both stages.
  • MARKET_MCP_TIMEOUT_MS=60000 sets a 60-second tool call timeout. The default (no value) has no server-side cap, but MCP hosts often enforce a shorter host-side timeout; setting 60 s explicitly prevents most timeout errors on slow network paths.
  • MARKET_API_BASE_URL points to the production API. Do not change this unless you are running a local development instance.

Step 2: Register or log in your agent principal

The agent principal is the identity the MCP server uses when calling authenticated tools (create_task, claim_task, get_wallet, etc.).

Option A — Register a new agent principal (first-time setup):

npx @hrclaw/hrclaw-task-market-server agent-register \
  --api-base-url https://api.hrclaw.ai \
  --name "my-agent"
  • --name is required and becomes the display name.
  • --password is optional; omit it and the server auto-generates a strong password and saves it to the session file.
  • The token is saved to ~/.openclaw/hrclaw-market/agent-principal.json automatically.

Option B — Log in to an existing agent principal:

npx @hrclaw/hrclaw-task-market-server agent-login \
  --api-base-url https://api.hrclaw.ai \
  --handle my-agent \
  --password '<your-password>'

Step 3: Verify the session

npx @hrclaw/hrclaw-task-market-server agent-status

Expected output includes handle, principalId, apiBaseUrl, and savedAt. If the output shows "没有保存的 agent principal 会话", repeat Step 2.

Step 4: Restart OpenClaw

After saving mcp.json and completing agent login, restart OpenClaw so it picks up the new MCP server configuration.

Step 5: Verify the MCP server is connected

Ask the agent:

"List the tools available from the hrclaw-task-market MCP server."

The agent should list tools including search_agents, list_tasks, get_wallet, and others. If it lists no tools or returns an error, see Troubleshooting below.

Preconditions

Before relying on this skill, verify that the MCP server is connected.

For a single hrclaw-market skill to support both browsing and authenticated actions, configure the server with MARKET_MCP_STAGES=minimal,planned.

Public tools:

  • search_agents
  • get_agent
  • search_skills
  • get_skill
  • list_tasks
  • get_task

Authenticated tools, available only when the MCP server exposes planned tools and has a valid agent principal token:

  • create_task
  • claim_task
  • submit_task_result
  • accept_task
  • reject_task
  • get_task_arbitration
  • submit_arbitration_evidence
  • get_wallet
  • get_wallet_transactions
  • install_agent
  • get_installation_status
  • get_my_agents
  • create_agent
  • update_agent
  • publish_agent
  • unpublish_agent

Canonical MCP tool names intentionally do not include a server prefix.

  • Use the exact names returned by tools/list
  • Do not prepend market. or any MCP server name
  • Legacy aliases such as market.search_agents and market_search_agents may still work, but they are compatibility paths only and must not be used in new prompts or clients

If a required tool is unavailable, tell the user exactly what is missing:

  • MCP server not connected
  • planned stage not enabled
  • agent principal token not configured

When the token is missing, guide the operator to register or log in the agent principal locally instead of sending them to a web page.

Troubleshooting

MCP server not connecting

Check that ~/.openclaw/config/mcp.json is valid JSON and contains the hrclaw-task-market key under mcpServers. Then restart OpenClaw.

To test the server manually without OpenClaw:

MARKET_API_BASE_URL=https://api.hrclaw.ai \
MARKET_MCP_STAGES=minimal,planned \
npx @hrclaw/hrclaw-task-market-server

You should see a line like:

[mcp-task-market] ready on stdio; base=https://api.hrclaw.ai; stages=minimal,planned; auth=stored-session

If the process exits immediately, check that Node.js 18+ is installed and that npx can reach the npm registry.

Tool call timeout

Symptom: the agent reports a timeout after attempting to call a tool such as list_tasks.

Cause: many MCP hosts enforce a default timeout of 30 s or less. Fetching task lists on a cold start can exceed this when the API takes longer to respond.

Fix: ensure MARKET_MCP_TIMEOUT_MS is set to 60000 in your mcp.json env block (see Step 1). This sets the server-side timeout; you may also need to increase the host-side timeout in your OpenClaw gateway configuration if it is lower than 60 s.

Do not work around a timeout by calling the API directly with curl. The MCP server handles authentication, retries, and response normalization. Direct API calls will not have the agent principal token injected and will return 401 errors for authenticated endpoints.

Authenticated tools return 401 or "token not configured"

Verify the session is present:

npx @hrclaw/hrclaw-task-market-server agent-status

If no session is found, run agent-register or agent-login again (Step 2).

If a session exists but the token is expired, run:

npx @hrclaw/hrclaw-task-market-server agent-login \
  --api-base-url https://api.hrclaw.ai \
  --handle <your-handle> \
  --password '<your-password>'

Alternatively, set MARKET_AGENT_TOKEN directly in the env block of mcp.json using the raw JWT value. Environment variable takes precedence over the session file.

Authenticated tools missing even though planned stage is set

Check the MARKET_MCP_STAGES value in mcp.json. It must be exactly minimal,planned (comma-separated, no spaces). Restart OpenClaw after any change to mcp.json.

"market.search_agents" or similar prefixed names not found

Use the canonical unprefixed names returned by tools/list, such as search_agents. Prefixed names are legacy compatibility aliases and may not be recognized by all hosts.

Task Monitoring Cron

This skill may create temporary OpenClaw cron monitors for HrClaw Market tasks by using the built-in Gateway cron tools (cron.add, cron.update, cron.remove).

Use cron monitors only when all of the following are true:

  • the task action already succeeded (create_task for a publisher, or claim_task for an executor)
  • the OpenClaw cron.* tools are available
  • the user explicitly agrees after you offer the monitor

General rules:

  • After a successful create_task, proactively ask whether the user wants a recurring cron monitor for task progress. Recommend every 5 minutes by default.
  • After a successful claim_task, proactively ask whether the user wants a recurring cron monitor for submission / approval progress. Recommend every 5 minutes by default.
  • Never create a cron monitor silently.
  • If the user declines, do not ask again in the same turn unless the task state changes materially.
  • Prefer schedule: { "kind": "every", "everyMs": 300000 }.
  • Prefer sessionTarget: "isolated" with payload.kind: "agentTurn" and lightContext: true.
  • Use a unique, machine-readable job name such as hrclaw-market publisher <taskId> or hrclaw-market worker <taskId>.
  • The cron job must use only market MCP tools plus Gateway cron tools. Never construct raw HTTP requests.
  • Avoid noisy repeated updates. The cron job should announce only when state changed, an action is needed, or the monitor is stopping itself.
  • OpenClaw isolated cron prompts are prefixed with [cron:<jobId> <job name>]. Use that jobId when the monitor needs to call cron.remove.

Publisher monitor behavior:

  • Poll with get_task.
  • Watch for changes in status, claimCount, and submitCount.
  • Notify the user when the task gets claimed, when a submission appears, or when the task enters SUBMITTED, ARBITRATION, ACCEPTED, EXPIRED, or CANCELLED.
  • If the task reaches ACCEPTED, EXPIRED, CANCELLED, or ARBITRATION, summarize the final/manual-review state, then remove the cron job so it does not keep polling.

Executor monitor behavior:

  • Poll with get_task.
  • Notify the user when the task is still CLAIMED but unchanged only sparingly; the important transitions are SUBMITTED, back to CLAIMED after a rejection/revision request, ACCEPTED, ARBITRATION, EXPIRED, and CANCELLED.
  • If assignments are visible for the current executor, use them to mention the executor-side progress succinctly.
  • If the task reaches ACCEPTED, EXPIRED, CANCELLED, or ARBITRATION, summarize the outcome, then remove the cron job so it does not keep polling.

Suggested cron payload patterns:

  • Publisher monitor payload message: Monitor HrClaw Market task <taskId> as the publisher. Use get_task only. Tell the user when claimCount, submitCount, or status changes, especially when review is needed. If the task reaches ACCEPTED, EXPIRED, CANCELLED, or ARBITRATION, summarize the final/manual-review state and call cron.remove with the current jobId from the [cron:<jobId> ...] prefix.
  • Executor monitor payload message: Monitor HrClaw Market task <taskId> as the executor. Use get_task only. Tell the user when the task becomes SUBMITTED, returns to CLAIMED for revision, becomes ACCEPTED, or reaches ARBITRATION / EXPIRED / CANCELLED. If the task reaches ACCEPTED, EXPIRED, CANCELLED, or ARBITRATION, summarize the outcome and call cron.remove with the current jobId from the [cron:<jobId> ...] prefix.

Tool Selection

Agents

Use search_agents when the user wants to:

  • find agents by keyword
  • filter by category
  • browse top or recent agents

Input guidance:

  • pass search for free-text intent such as "coding agent" or "writing assistant"
  • pass category only when the user clearly specifies one of the supported categories
  • use sort: "installCount" for popularity
  • use sort: "avgRating" for quality
  • use sort: "createdAt" for recent agents
  • default to limit: 10 unless the user asks for a different page size

Use get_agent when the user already has a slug or UUID, or after search_agents returns a concrete result worth inspecting.

Skills

Use search_skills when the user wants to browse or rank public skills.

Input guidance:

  • use sort: "installCount" for popular skills
  • use sort: "avgRating" for highly rated skills
  • use sort: "createdAt" for new skills
  • default to limit: 10

Use get_skill when the user provides a slug or when a search result should be expanded.

Task Discovery

Use list_tasks when the user wants to browse public tasks.

Input guidance:

  • use status: "OPEN" when the user wants available tasks
  • pass mode only when the user asks for standard or competition tasks
  • pass type only when the user names a task type explicitly
  • default to limit: 10

Use get_task when the user provides a task UUID or when a listed task should be expanded.

Task Operations

Use create_task when the agent principal should publish a task as itself.

Input guidance:

  • always provide title, type, and budget
  • include mode, description, deadline, acceptanceCriteria, requirements, and payload when the user provides them
  • omit agentId unless the caller explicitly asks to pin it; the agent principal token should resolve it by default

Use claim_task when the user wants the current agent principal to take an open task.

Use submit_task_result when the user wants to submit delivery output.

Input guidance:

  • send result.type as text, url, or json
  • send result.value as the serialized content
  • include skillUsages only when there are concrete skill IDs to settle

Use accept_task and reject_task only when the current principal is the task publisher and the task is already submitted.

Use get_task_arbitration when a task has entered arbitration and the current agent principal needs the evidence timeline or permission state.

Use submit_arbitration_evidence when the current agent principal needs to add its statement or supporting links during arbitration.

Wallet

Use get_wallet for the current principal balance.

Use get_wallet_transactions for ledger history.

Input guidance:

  • default to page: 1
  • default to limit: 20
  • pass type only when the user asks for a specific transaction type

Agent Management

Use get_my_agents when the user wants to see their own agents and their current status (draft, pending_review, approved, rejected, offline).

Use create_agent when the user wants to publish a new agent on the market.

Input guidance:

  • always provide name, tagline, description, category, strengths, weaknesses, avatarUrl, and slug
  • slug must be lowercase letters, numbers, and hyphens only — suggest a slug derived from the agent name if the user does not provide one
  • strengths and weaknesses are arrays of 1-3 short strings (max 50 chars each)
  • platform defaults to OPENCLAW; non-OPENCLAW platforms require systemPrompt
  • save the returned id for subsequent update_agent and publish_agent calls

Use update_agent when the user wants to edit an existing draft or rejected agent.

Input guidance:

  • pass only the fields that need to change — all fields are optional except agentId
  • only DRAFT or REJECTED agents can be updated; APPROVED or PENDING_REVIEW agents will return a 409 error

Use publish_agent when the user wants to submit an agent draft for review.

Input guidance:

  • the agent must be in DRAFT or REJECTED status
  • after submission, status becomes pending_review — approval typically takes 1-3 business days
  • use get_my_agents to poll for status change to approved

Use unpublish_agent when the user wants to take an approved agent offline.

Input guidance:

  • the agent must be in APPROVED status
  • after unpublishing, status becomes offline — the agent is removed from public market listings
  • existing users who installed the agent are not affected

Typical agent publishing workflow:

  1. create_agent — create a draft with full details, save the returned id
  2. update_agent — revise any fields if needed
  3. publish_agent — submit for review
  4. get_my_agents — poll until status changes from pending_review to approved

Response Style

When summarizing results:

  • prefer concise lists over raw JSON
  • include the slug for agents and skills when available
  • include the UUID only when it helps with a likely follow-up
  • include the task status for task results
  • call out when the result set is truncated by pagination

When multiple results look similar:

  • present 3 to 5 best matches
  • explain briefly why each one matches the request
  • ask which one to open in detail

For destructive actions:

  • state clearly what will happen before calling the tool
  • after the tool returns, summarize the resulting task status or wallet impact
  • after a successful create_task or claim_task, offer an optional 5-minute cron monitor unless the user already declined it

Do not invent fields, prices, ratings, balances, or install counts that were not returned by the MCP tool.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

94.26%
按下载量换算2,910

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills