← 返回 Skills 市场
dataify-server

Dataify Google Maps Reviews

作者 dataify-server · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
18
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install dataify-google-maps-reviews
功能描述
Collect Google Maps review/comment information through Dataify Scraper API. Use when the user asks to gather, scrape, crawl, fetch, extract, or collect Googl...
使用说明 (SKILL.md)

Dataify Google Maps Reviews

Use this skill to create Google Maps review/comment collection tasks through Dataify's builder endpoint.

Required Workflow

  1. Use the google_comment_by-url spider when the user wants to collect Google Maps review information, comment information, or reviews/comments from a Google Maps URL.
  2. Check the local Python runtime before calling scripts. Prefer python; use python3 if that is the available Python command. Require Python 3 or newer. Do not use version-specific commands such as py -3.10.
  3. Tell the user which parameters are required and what the defaults are. Ask whether any values should be changed.
  4. Ask whether the user wants to collect multiple parameter sets. If yes, collect multiple spider_parameters objects for the same spider ID. If the user already supplied multiple Google Maps URLs or multiple parameter objects, treat that as a multiple-set request.
  5. Before every real API call, show a Markdown confirmation table with the exact parameters that will be submitted. The table must use these columns: Parameter, Current value, Default value, Required, Description.
  6. If any dropdown fields are added in the future, show all available dropdown values in Markdown tables with exactly these columns: Label, Value. This tool currently has no dropdown fields.
  7. Ask the user whether any value should be changed. Do not call the API until the user explicitly confirms the table.
  8. Check for the Dataify API token only after parameter confirmation. Prefer a token explicitly provided by the user, then DATAIFY_API_TOKEN from the environment.
  9. If no token is available, tell the user: Missing Dataify API token. Provide a token, or log in/register at https://dataify.com/login. If you already have one, open https://dataify.com/dashboard/ and copy the API TOKEN from the top-right area.
  10. If the user provides a token and DATAIFY_API_TOKEN is not already saved locally, ask whether to save it as DATAIFY_API_TOKEN. Save it only after explicit consent and never echo the token back.
  11. After the API call, report the collection task ID and status. Look for common response fields such as task_id, taskId, taskIdList, tasks_id, TasksID, id, status, data.task_id, data.id, or data.status. Then remind the user to view task details in the official dashboard: https://dataify.com/dashboard/

Parameter Preview

Use the preview helper whenever possible:

python scripts/preview_params.py --url "https://www.google.com/maps/place/Waterfront+Botanical+Gardens/@38.2630366,-85.7288454,15z/data=!4m8!3m7!1s0x8869731e16a7bdbd:0x2f5d238fefed7ca1!8m2!3d38.2632837!4d-85.7239738!9m1!1b1!16s%2Fg%2F11c709xzzx?hl=en&entry=ttu" --days-limit 20

For multiple parameter sets, pass the exact JSON array:

python scripts/preview_params.py --parameters-json '[{"url":"https://www.google.com/maps/place/Waterfront+Botanical+Gardens/@38.2630366,-85.7288454,15z/data=!4m8!3m7!1s0x8869731e16a7bdbd:0x2f5d238fefed7ca1!8m2!3d38.2632837!4d-85.7239738!9m1!1b1!16s%2Fg%2F11c709xzzx?hl=en&entry=ttu","days_limit":"20"},{"url":"https://www.google.com/maps/place/example","days_limit":"30"}]'

API Call

Use the call helper after confirmation and token handling:

python scripts/google_maps_reviews.py --url "https://www.google.com/maps/place/Waterfront+Botanical+Gardens/@38.2630366,-85.7288454,15z/data=!4m8!3m7!1s0x8869731e16a7bdbd:0x2f5d238fefed7ca1!8m2!3d38.2632837!4d-85.7239738!9m1!1b1!16s%2Fg%2F11c709xzzx?hl=en&entry=ttu" --days-limit 20
python scripts/google_maps_reviews.py --parameters-json '[{"url":"https://www.google.com/maps/place/Waterfront+Botanical+Gardens/@38.2630366,-85.7288454,15z/data=!4m8!3m7!1s0x8869731e16a7bdbd:0x2f5d238fefed7ca1!8m2!3d38.2632837!4d-85.7239738!9m1!1b1!16s%2Fg%2F11c709xzzx?hl=en&entry=ttu","days_limit":"20"},{"url":"https://www.google.com/maps/place/example","days_limit":"30"}]'

If the token was provided in the conversation instead of the environment, pass it with --token and do not expose it in user-facing output:

python scripts/google_maps_reviews.py --token "USER_TOKEN" --url "https://www.google.com/maps/place/Waterfront+Botanical+Gardens/@38.2630366,-85.7288454,15z/data=!4m8!3m7!1s0x8869731e16a7bdbd:0x2f5d238fefed7ca1!8m2!3d38.2632837!4d-85.7239738!9m1!1b1!16s%2Fg%2F11c709xzzx?hl=en&entry=ttu" --days-limit 20

Tool

Mode Spider ID Required parameters Default spider_parameters
url google_comment_by-url url, days_limit [{"url":"https://www.google.com/maps/place/Waterfront+Botanical+Gardens/@38.2630366,-85.7288454,15z/data=!4m8!3m7!1s0x8869731e16a7bdbd:0x2f5d238fefed7ca1!8m2!3d38.2632837!4d-85.7239738!9m1!1b1!16s%2Fg%2F11c709xzzx?hl=en&entry=ttu","days_limit":"20"}]

Every request also accepts file_name. If omitted, use {{TasksID}}.

Fixed Request Fields

Always submit to https://scraperapi.dataify.com/builder?platform=1 with:

Field Value
spider_name google.com
spider_id google_comment_by-url
spider_parameters JSON array of one or more parameter objects
spider_errors true
file_name User value, otherwise {{TasksID}}

Send parameters as form data. Keep spider_parameters as a JSON string inside the form body.

安全使用建议
Before installing, confirm you intend to connect this skill to Dataify, provide only a Dataify-specific token with the minimum needed access, and be aware that prompts or inputs sent through the skill may be transmitted to Dataify. The publisher should improve metadata by declaring the environment variable and Dataify network endpoint explicitly.
能力评估
Purpose & Capability
The reported behavior, reading DATAIFY_API_TOKEN and calling a third-party Dataify API, fits an API-integration skill and is not by itself purpose-mismatched or deceptive.
Instruction Scope
The skill should more clearly state when it sends user-supplied data to Dataify and should avoid triggering unless the user is intentionally using the Dataify workflow.
Install Mechanism
SkillSpector reports no corresponding declared permissions for environment access or network egress, which is a transparency issue but not enough on its own to require Review.
Credentials
Use of a locally stored DATAIFY_API_TOKEN is proportionate for authenticated Dataify access, but users should treat it as a secret and avoid exposing it in prompts, logs, or shared files.
Persistence & Privilege
No evidence was provided of persistence, privilege escalation, background execution, broad local indexing, destructive actions, or unrelated credential handling.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install dataify-google-maps-reviews
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /dataify-google-maps-reviews 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the dataify-google-maps-reviews skill. - Enables collection of Google Maps review/comment information via the Dataify Scraper API. - Supports tasks using the `google_comment_by-url` spider with required parameters (`url`, `days_limit`). - Guides users through parameter configuration, confirmation, and API token handling. - Provides clear workflows for both single and multiple URL/parameter sets. - After task submission, reports task ID and status, and reminds users to view details in the Dataify dashboard.
元数据
Slug dataify-google-maps-reviews
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Dataify Google Maps Reviews 是什么?

Collect Google Maps review/comment information through Dataify Scraper API. Use when the user asks to gather, scrape, crawl, fetch, extract, or collect Googl... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 18 次。

如何安装 Dataify Google Maps Reviews?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install dataify-google-maps-reviews」即可一键安装,无需额外配置。

Dataify Google Maps Reviews 是免费的吗?

是的,Dataify Google Maps Reviews 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Dataify Google Maps Reviews 支持哪些平台?

Dataify Google Maps Reviews 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Dataify Google Maps Reviews?

由 dataify-server(@dataify-server)开发并维护,当前版本 v1.0.0。

💬 留言讨论