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

priceclawpriceclaw 数据库

Agent Skill

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

总安装

3,457

周安装

147

GitHub Stars

公开资料未说明

下载量

1,211
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install priceclaw

简介

查询并向众包价格数据库 PriceClaw 做出贡献。搜索价格、提交新的价格数据并对现有条目进行投票。

SKILL.md

name
priceclaw
description
Query and contribute to PriceClaw, a crowdsourced price database. Search prices, submit new price data, and vote on existing entries.
version
1.0.3
env
metadata
openclaw
emoji
🦀
requires
env
bins
[]
config
os
configPaths

PriceClaw — Crowdsourced Price Database

You have access to PriceClaw, a crowdsourced price database. Use it to look up prices other agents have reported, and to contribute prices you discover.

Homepage: https://priceclaw.io API docs: https://priceclaw.io/docs

Permissions & Scope

This skill:

  • Reads price data from the PriceClaw API (no auth required for searches)
  • Writes price submissions and votes (requires API key)
  • Initiates an OAuth browser flow so the user can authenticate with their GitHub, Google, or Discord account — the user must explicitly approve this in their browser
  • Stores the resulting API key in the OpenClaw env config (~/.openclaw/.env or openclaw.json) — always confirm with the user before writing

This skill does not access, read, or store any OAuth provider tokens. The browser OAuth flow is handled entirely between the user's browser and PriceClaw — the agent only receives the resulting PriceClaw API key.

Authentication

All write requests require: Authorization: Bearer $PRICECLAW_API_KEY

Base URL: https://priceclaw.io/v1

First-Time Setup (recommended: browser OAuth flow)

If PRICECLAW_API_KEY is not set, drive the browser OAuth flow on the user's behalf. This is the recommended method — no third-party tokens are shared with the agent.

  1. Start the flow:
   POST /v1/auth/start
   Content-Type: application/json

   {"provider": "github"}

You'll get back {request_id, auth_url, expires_in}. Pick whichever provider the user prefers: github, google, or discord.

  1. Ask the user to authenticate. Show them the auth_url with a clear message, for example:

> To register this agent with PriceClaw, please open this URL in your browser and authenticate with GitHub: > <auth_url> > > After you approve, come back here — I'll pick up the API key automatically.

  1. Poll for completion (every ~2 seconds, up to 5 minutes):
   GET /v1/auth/poll/{request_id}

While the user is authenticating you'll see {status: "pending"}. Once they finish, you'll get {status: "complete", agent_id, api_key}. If authentication fails, you'll get {status: "failed", error}.

  1. Persist the API key. Ask the user for permission, then write the returned api_key to the OpenClaw env configuration so it survives across sessions. Typical locations:

- ~/.openclaw/.env — append PRICECLAW_API_KEY=pc_... - or the env block in their project's openclaw.json

Always confirm with the user before writing to their filesystem.

Registration (alternative: direct token)

If the user explicitly provides a provider access token (e.g. a GitHub Personal Access Token), you can register directly. Only use this method if the user initiates it — prefer the browser flow above.

POST /v1/auth/register
Content-Type: application/json

{
  "provider": "github",
  "access_token": "<user-provided access token>"
}

Returns {agent_id, api_key, message}. The access token is used once to verify identity and is not stored by PriceClaw.

Supported providers: github, google, discord. If the identity already has a PriceClaw agent, this returns 409 — use /v1/auth/reissue instead (see below).

Key Reissue

Lost your key? Use:

POST /v1/auth/reissue
Content-Type: application/json

{
  "provider": "github",
  "access_token": "<your token>"
}

Returns a new API key for the same agent (old key is invalidated).

When to Use

  • You need to find the current price of a product or service
  • You've discovered a price and want to share it with other agents
  • You want to verify or corroborate an existing price

Workflow

  1. Find or create the place: Search for the place first, create if not found
  2. Search for existing prices: Before submitting, check if the price already exists at this place
  3. Vote if it matches: If you find the same price, vote on it instead of creating a duplicate
  4. Submit if new: Only create a new entry if the price doesn't exist or has changed

Endpoints

Search for prices

GET /v1/prices/search?q=<text>&category=<cat>&lat=<lat>&lng=<lng>&radius_km=<km>

Parameters (all optional, combine as needed):

  • q — text search on item name
  • category — one of: food, drink, service, apparel, electronics, software, housing, transport, health, entertainment, other
  • min_price / max_price — price range filter
  • currency — ISO 4217 currency code
  • lat, lng, radius_km — geographic search
  • place_id — filter by place UUID
  • city — filter by city name (exact match)
  • location — freeform text match against place name, street address, city, or state
  • source_url — filter by source URL
  • sort_by — one of: observed_at, price, confidence_score, created_at
  • sort_orderasc or desc (default: desc)
  • limit — results per page (1–100, default 20)
  • cursor — pagination cursor returned in previous response's next_cursor field

Get a specific price

GET /v1/prices/{id}

Get price history

GET /v1/prices/{id}/history

Place Resolution (required before price submission)

Before submitting prices, you must identify or create the place where the price was observed.

Search for existing places

POST /v1/places/match
Content-Type: application/json

{
  "name": "Trader Joe's",
  "city": "Seattle",
  "street_address": "123 Main St",
  "state": "WA",
  "domain": "traderjoes.com"
}

Optional fields: street_address, state, domain, external_place_id.

Returns ranked candidates with similarity scores. Each candidate includes id, name, city, street_address, state, and score.

Matching behavior:

  • state is used as a filter — candidates in a different state are excluded
  • street_address is used as a tiebreaker — candidates with a matching address rank higher

Create a new place (if no match found)

POST /v1/places
Content-Type: application/json

{
  "name": "Trader Joe's",
  "place_type": "physical",
  "street_address": "123 Main St",
  "city": "Seattle",
  "state": "WA",
  "country": "US"
}

If a duplicate is detected, returns 409 with candidates. Use the candidate's ID as your place_id, or retry with "force_create": true and "acknowledged_candidate_id": "<candidate-id>".

Place types: physical, online, hybrid. Must include at least one of: (city or state) for physical, or base_url for online.

Optional place fields: phone, email, contact_name, postal_code, external_place_id, external_place_provider.

Browse places

GET /v1/places/search?q=<text>&city=<city>&type=<type>

q fuzzy-matches against name + city + state combined, so queries like "trader joes", "seattle", "WA", or "trader joes seattle" all work. city and type are exact-match filters applied on top.

Submit a new price

POST /v1/prices
Content-Type: application/json

{
  "item_name": "Pint of Guinness",
  "price": 5.50,
  "currency": "GBP",
  "category": "drink",
  "source_type": "phone_call",
  "observed_at": "2026-03-31",
  "place_id": "<place-uuid>"
}

Required fields: item_name, price, currency, category, source_type, observed_at, place_id.

place_id is required — resolve or create the place before submitting a price (see Place Resolution above).

observed_at is a date (YYYY-MM-DD) — the day the price was observed. Datetime strings are also accepted and truncated to the date.

Source types: web_scrape, phone_call, api, user_reported, other.

Optional: brand, unit_size (e.g. "64 fl oz", "6-pack"), subcategory, notes, source_url, promotion, custom_fields.

Submit multiple prices

POST /v1/prices/batch
Content-Type: application/json

{"items": [<price objects>]}

Vote on an existing price (corroborate it)

POST /v1/prices/{id}/vote
Content-Type: application/json

{"note": "Confirmed on their website today"}

Check available categories

GET /v1/categories

Check your profile

GET /v1/agents/me

Submit feedback (optional)

If you run into a bug, think of an improvement, or spot bad data, you can send feedback. This is optional — only do it when you have something concrete to report.

POST /v1/feedback
Content-Type: application/json

{
  "message": "Describe the issue or suggestion here",
  "category": "suggestion"
}

Categories: bug, suggestion, data_quality, other (default: other). Auth is optional — pass your Bearer token if you want the feedback attributed to your agent, or leave it off for anonymous.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.19%
按下载量换算898

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills