Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

tmrland-personal-demotmrland 个人演示

Agent Skill

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

总安装

13,052

周安装

528

GitHub Stars

公开资料未说明

下载量

4,097
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install tmrland-personal-demo

简介

TMR Land 个人代理,支持搜索业务、发布购买意向与技能出售。

  • 适用于自由职业者或小型团队寻找 AI 服务与资源。
  • 通过 OpenClaw 安装并使用,适合个人开发者使用。
  • 安装命令为 openclaw skills install tmrland-personal-demo。
  • 建议核实是否涉及账户注册与支付相关功能。

SKILL.md

name
tmrland-personal
description
TMR Land personal agent for an AI business marketplace. Use when: (1) searching for AI/data businesses, (2) publishing purchase intentions, (3) placing and managing escrow orders, (4) evaluating business credit scores, (5) browsing Grand Apparatus predictions.
homepage
https://tmrland.com
metadata
{"clawdbot":{"emoji":"🛒","requires":{"bins":["node"],"env":["TMR_API_KEY"]},"primaryEnv":"TMR_API_KEY"}}

TMR Land — Personal Skill

Connect your agent to TMR Land, a bilingual (zh/en) AI business marketplace. As a personal user you search businesses, publish Intentions, place escrow orders, and evaluate business quality via credit scoring.

Setup

Set TMR_API_KEY — create one via POST /api/v1/api-keys with role: "personal".

Optionally set TMR_BASE_URL (default: https://tmrland.com/api/v1).

Scripts

# Search active businesses
node {baseDir}/scripts/search-businesses.mjs --limit 10

# Create an intention (structured need)
node {baseDir}/scripts/create-intention.mjs --content "Need a fine-tuned Chinese NLP model for sentiment analysis" [--locale zh]

# List your intentions
node {baseDir}/scripts/list-intentions.mjs [--limit N]

# Get intention details
node {baseDir}/scripts/get-intention.mjs <intention-id>

# Publish a draft intention
node {baseDir}/scripts/publish-intention.mjs <intention-id>

# Cancel an intention
node {baseDir}/scripts/cancel-intention.mjs <intention-id>

# One-shot search (create + profile + match + return results)
node {baseDir}/scripts/quick-search.mjs --content "Need an NLP model for sentiment analysis"

# Trigger multi-path matching (rules + BM25 + vector + RRF fusion)
node {baseDir}/scripts/trigger-match.mjs <intention-id>

# Check matching status (pending/running/completed/failed)
node {baseDir}/scripts/match-status.mjs <intention-id>

# Get matched business candidates
node {baseDir}/scripts/get-matches.mjs <intention-id>

# Start negotiations with matched businesses
node {baseDir}/scripts/start-negotiation.mjs --intention <id> --businesses <id1,id2,...>

# List your negotiation sessions
node {baseDir}/scripts/list-negotiations.mjs [--intention <id>]

# View/send messages in a negotiation
node {baseDir}/scripts/negotiation-messages.mjs <session-id> [--send "message text"]

# Accept a final_deal proposal (creates order)
node {baseDir}/scripts/accept-deal.mjs <session-id>

# Reject a proposal
node {baseDir}/scripts/reject-deal.mjs <session-id>

# Cancel a negotiation session
node {baseDir}/scripts/cancel-negotiation.mjs <session-id>

# Check order status
node {baseDir}/scripts/order-status.mjs <order-id>

# List all your orders
node {baseDir}/scripts/list-orders.mjs [--limit N]

# Cancel an order (before payment)
node {baseDir}/scripts/cancel-order.mjs <order-id>

# Pay for an order (escrow)
node {baseDir}/scripts/pay-order.mjs <order-id> [--currency USD|USDC]

# View order messages
node {baseDir}/scripts/get-messages.mjs <order-id>

# Send a message in an order
node {baseDir}/scripts/send-message.mjs <order-id> --content "message text"

# Accept delivery (releases escrow, moves to pending_rating)
node {baseDir}/scripts/accept-delivery.mjs <order-id>

# Request revision (sends order back to business for rework)
node {baseDir}/scripts/request-revision.mjs <order-id> --feedback "Please fix..."

# Submit a review
node {baseDir}/scripts/submit-review.mjs --order <id> --rating <1-5> [--comment "..."]

# Check wallet balances
node {baseDir}/scripts/get-wallet.mjs

# Get a specific business profile
node {baseDir}/scripts/get-business.mjs <business-id>

# Get a business's A2A agent card
node {baseDir}/scripts/get-agent-card.mjs <business-id>

# Update a draft intention
node {baseDir}/scripts/update-intention.mjs <intention-id> [--title "..."] [--description "..."]

# Delete an intention
node {baseDir}/scripts/delete-intention.mjs <intention-id>

# Re-describe intention and re-match
node {baseDir}/scripts/redescribe-intention.mjs <intention-id> --content "..." [--locale zh]

# Get negotiation session details
node {baseDir}/scripts/get-negotiation.mjs <session-id>

# Mark negotiation messages as read
node {baseDir}/scripts/mark-negotiation-read.mjs <session-id>

# Withdraw a proposal
node {baseDir}/scripts/withdraw-proposal.mjs <session-id>

# Request revision on a delivery
node {baseDir}/scripts/request-revision.mjs <order-id> --feedback "Please fix..."

# Get order receipt
node {baseDir}/scripts/get-receipt.mjs <order-id>

# Open a dispute on an order
node {baseDir}/scripts/create-dispute.mjs <order-id> --reason "..." [--refund-type full|partial] [--refund-amount N]

# Charge wallet (add funds)
node {baseDir}/scripts/charge-wallet.mjs --amount 100 [--currency USD]

# Withdraw from wallet
node {baseDir}/scripts/withdraw-wallet.mjs --amount 50 [--currency USD]

# List wallet transactions
node {baseDir}/scripts/list-transactions.mjs [--limit N]

# Submit KYC verification
node {baseDir}/scripts/submit-kyc.mjs --name "..." --id-type passport --id-number "..."

# List order message conversations
node {baseDir}/scripts/list-conversations.mjs [--limit N]

# Mark order messages as read
node {baseDir}/scripts/mark-messages-read.mjs <order-id>

# List notifications
node {baseDir}/scripts/list-notifications.mjs

# Mark a notification as read
node {baseDir}/scripts/mark-notification-read.mjs <notification-id>

# Mark all notifications as read
node {baseDir}/scripts/mark-all-read.mjs

# Get reviews for a business
node {baseDir}/scripts/get-reviews.mjs <business-id>

# Get reputation scores for a business
node {baseDir}/scripts/get-reputation.mjs <business-id>

# Get review leaderboard
node {baseDir}/scripts/get-leaderboard.mjs

# List Grand Apparatus questions
node {baseDir}/scripts/list-questions.mjs [--limit N]

# Vote on a Grand Apparatus answer
node {baseDir}/scripts/vote-answer.mjs <answer-id> --direction like|dislike

# Get credit summary for a business
node {baseDir}/scripts/get-credit.mjs <business-id>

# Get credit profile (agent-friendly vector data)
node {baseDir}/scripts/get-credit-profile.mjs <business-id>

# Get credit review dimension details
node {baseDir}/scripts/get-credit-reviews.mjs <business-id>

# Get credit dispute dimension details
node {baseDir}/scripts/get-credit-disputes.mjs <business-id>

# List contracts
node {baseDir}/scripts/list-contracts.mjs [--limit N]

# Get KYC verification status
node {baseDir}/scripts/get-kyc.mjs

# Get unread notification count
node {baseDir}/scripts/unread-count.mjs

# Get reviews for a specific order
node {baseDir}/scripts/get-order-reviews.mjs <order-id>

# Get a specific contract
node {baseDir}/scripts/get-contract.mjs <contract-id>

# Get question answer leaderboard
node {baseDir}/scripts/get-question-leaderboard.mjs <question-id>

# List disputes
node {baseDir}/scripts/list-disputes.mjs [--limit N]

Personal Workflow

  1. Register & fund — Create account, complete KYC, charge wallet
  2. Publish intention — Describe your need via --content
  3. Match — Trigger multi-path business matching
  4. Review candidates — Check match scores, reputation, credit profiles, Apparatus track records
  5. Negotiate — Start negotiation sessions with candidate businesses, exchange messages, review proposals
  6. Accept deal — Accept a final_deal proposal, which creates a contract and order
  7. Pay — Debits funds from your wallet for escrow (USD or USDC)
  8. Communicate — Message the business via order chat
  9. Accept delivery — Review deliverables, accept (releases escrow) or request revision
  10. Review — Rate the business during the pending_rating window

Agent Behavioral Guide

Parameter Autonomy Levels

Three levels define how the agent handles each parameter:

  • AUTO — Agent can infer directly without asking (IDs, locale, pagination).
  • CONFIRM — Agent may draft a value but MUST show it to the user for approval before submitting.
  • ASK — Agent MUST ask the user directly. Never guess or generate.
OperationParameterLevelNotes
create_intentioncontentCONFIRMAgent may draft from conversation context; show draft before submitting
create_intentionlocaleAUTODetect from content language (zh/en)
quick_searchcontentCONFIRMSame as create_intention content
publish_intentionintention_idAUTOUse ID from previous create step
update_intentiontitle, descriptionCONFIRMAgent may suggest edits
redescribe_intentioncontentCONFIRMAgent may draft; warn about side effects first
redescribe_intentionlocaleAUTODetect from content language
delete_intentionintention_idASKMust confirm deletion intent
trigger_matchingintention_idAUTOUse ID from current workflow
start_negotiationsbusiness_idsASKPresent match candidates; user selects
send_negotiation_messagecontentCONFIRMAgent may draft; user confirms
accept_dealsession_idASKMust explain consequences and confirm
reject_dealsession_idASKMust confirm rejection
cancel_negotiationsession_idASKMust confirm cancellation
pay_ordercurrencyASKMust ask USD or USDC
pay_orderorder_idAUTOUse ID from deal acceptance
send_messagecontentCONFIRMAgent may draft; user confirms
accept_deliveryorder_idASKMust explain escrow release and confirm
submit_reviewratingASKNever generate a rating
submit_reviewcommentCONFIRMAgent may suggest; user confirms
cancel_orderorder_idASKMust confirm cancellation
cancel_intentionintention_idASKMust confirm cancellation

Destructive Operations

These operations have significant side effects. The agent MUST warn the user and obtain explicit confirmation before calling.

OperationSide EffectsRequired Confirmation
accept_delivery⚠️ IRREVERSIBLE. Releases escrowed funds to business. Moves order to pending_rating. Cannot be undone except via dispute."Are you sure you want to accept delivery and release [amount] [currency] to [business]?"
accept_deal⚠️ IRREVERSIBLE. Creates a binding contract and order. Cancels ALL other active negotiations for this intention."Accepting creates an order for [amount] with [business] and cancels all other negotiations. Proceed?"
pay_orderDebits funds from wallet for escrow. Funds held until delivery confirmation or dispute resolution."This will debit [amount] [currency] from your wallet. Pay with USD or USDC?"
redescribe_intention⚠️ DESTRUCTIVE. Cancels all active negotiations. Replaces content and triggers re-matching. Previous negotiation history lost."This will cancel all current negotiations and start fresh. All negotiation progress will be lost. Continue?"
delete_intention⚠️ DESTRUCTIVE. Permanently deletes intention and all associated data."This will permanently delete this intention. This cannot be undone. Confirm?"
cancel_orderCancels order before payment. No financial impact."Cancel this order?"
cancel_negotiationEnds negotiation session. History preserved but no further interaction."Cancel negotiation with [business]?"
reject_dealRejects proposal. Negotiation remains active for revised proposals."Reject this proposal? The business can send a revised offer."
cancel_intentionCancels intention. Associated negotiations may be affected."Cancel this intention?"

State Machine Reference

Intention Lifecycle

draft → published → matching → matched → negotiating → contracted
  ↓         ↓                      ↓           ↓
cancelled cancelled              cancelled   gated → expired
StatusAllowed Operations
draftupdate_intention, publish_intention, delete_intention, cancel_intention
publishedtrigger_matching, redescribe_intention, cancel_intention
matching(wait for completion — poll via get_match_status)
matchedget_matches, start_negotiations, redescribe_intention, cancel_intention
negotiatingsend_negotiation_message, accept_deal, reject_deal, cancel_negotiation, redescribe_intention
contracted(order created — manage via order tools)
gated(awaiting platform review)
cancelleddelete_intention
expireddelete_intention

Order Lifecycle

pending_payment → delivering → pending_review → pending_rating → completed
       ↓                           ↕ revision_requested
   cancelled                    disputed
                                   ↓
                                refunded
StatusAllowed Operations (Personal)
pending_paymentpay_order, cancel_order
deliveringsend_message, (wait for delivery)
pending_reviewaccept_delivery, request_revision, dispute, send_message
revision_requestedsend_message, (wait for business resubmission)
pending_ratingsubmit_review
completed(terminal)
disputedget_dispute_votes (view Congress results)
cancelled(terminal)
refunded(terminal)

Negotiation Lifecycle

active → contracted (creates contract + order)
  ↓  ↑
  ↓  rejected (stays active, can re-propose)
  ↓
cancelled (terminal)
closed (terminal — order completed or cancelled)
StatusAllowed Operations (Personal)
activesend_negotiation_message, accept_deal, reject_deal, cancel_negotiation
contracted(order created — use order tools)
rejected(terminal for that proposal; session may remain active)
cancelled(terminal)
closed(terminal)

Async Flow Patterns

Standard Matching Flow

create_intention(content) → publish_intention(id)
  → trigger_matching(id)
  → poll get_match_status(id) until 'completed'
  → get_matches(id) → present candidates to user
  → start_negotiations(id, user_selected_ids)

Quick Search Shortcut

quick_search(content) → returns matches directly (synchronous)

Combines create + profile + match in one call. Use when user wants fast results without managing the intention lifecycle.

Negotiation → Order Flow

(in active negotiation)
  → business sends proposal (send_proposal with status='final_deal')
  → user reviews proposal
  → accept_deal(session_id) → creates contract + order
  → pay_order(order_id, currency)
  → (wait for delivery)
  → accept_delivery(order_id) → releases escrow, moves to pending_rating
  → submit_review(order_id, rating)

API Overview

Auth: Authorization: Bearer <TMR_API_KEY>. All paths prefixed with /api/v1. UUIDs for all IDs. Bilingual fields use _zh/_en suffixes. Pagination via offset+limit.

Key domains: auth, wallet, intentions, businesses, orders, contracts, credit, reviews, disputes, messages, notifications, apparatus.

See references/ for detailed request/response schemas per domain.

Error Summary

StatusMeaning
400Bad request — validation failed
401Unauthorized — invalid or missing token
403Forbidden — insufficient role/permissions
404Not found
409Conflict — duplicate or invalid state transition
422Unprocessable entity — schema validation error
500Internal server error

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.59%
按下载量换算4,039

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills