← 返回 Skills 市场
snipercat69

Business Listing Aggregator

作者 snipercat69 · GitHub ↗ · v1.4.0 · MIT-0
cross-platform ✓ 安全检测通过
97
总下载
0
收藏
0
当前安装
4
版本数
在 OpenClaw 中安装
/install edgeiq-business-listing-aggregator
功能描述
Audits a business’s name, address, phone, and hours across Google Maps, Yelp, Facebook, BBB, and Apple Maps, reporting discrepancies in JSON or HTML.
使用说明 (SKILL.md)

Business Listing Aggregator — SKILL.md

Skill Name: Business Listing Aggregator
Version: 1.0.0
Category: Business Intelligence / Monitoring
Author: EdgeIQ Labs
Python: 3.8+


What It Does

Takes a business name + location and audits its presence across major platforms (Google Maps, Yelp, BBB, Facebook, Apple Maps). It detects and reports discrepancies in business name, address, phone number, and operating hours — producing a clean structured report in JSON or HTML format.

Designed for business owners, agency marketers, and reputation managers who need to catch listing drift before it damages SEO or drives away customers.


Tier Comparison

Feature Free Pro ($19/mo) Bundle ($39/mo)
Businesses monitored 1 10 Unlimited
Check frequency Monthly Weekly Daily
Platforms checked Google Maps, Yelp, Facebook Google Maps, Yelp, Facebook, BBB, Apple Maps All 5 platforms
Output formats Terminal text JSON + HTML JSON + HTML + PDF
Exportable report No Yes Yes
API access No Yes Yes
Priority support No No Yes

Features

  • Multi-platform citation check — Google Maps, Yelp, Facebook, BBB, Apple Maps
  • Field-level discrepancy detection — flags mismatches in name, address, phone, hours
  • Consensus determination — highlights which platform differs from the majority
  • Structured output — JSON (machine-readable) and HTML (human-readable) formats
  • Optional Google Places API — pass a key for enriched, structured data; falls back to web scraping when not provided
  • Confidence scoring — each check includes a confidence rating (High/Medium/Low)
  • Tier-based platform coverage — Free checks 3 platforms; Pro adds BBB + Apple Maps; Bundle covers all

Usage

Command Line

python skill.py --business "Joe's Pizza" --location "Brooklyn, NY"
python skill.py --business "Joe's Pizza" --location "Brooklyn, NY" --output json --outfile report.json
python skill.py --business "Joe's Pizza" --location "Brooklyn, NY" --output html --outfile report.html
python skill.py --business "Joe's Pizza" --location "Brooklyn, NY" --tier pro --verbose
python skill.py --help

Python API

from skill import BusinessListingAggregator

aggregator = BusinessListingAggregator(tier="pro", google_places_api_key=None)
report = aggregator.audit("Joe's Pizza", "Brooklyn, NY")
print(report)

Interactive

python skill.py --interactive

Output Example (JSON)

{
  "business_name": "Joe's Pizza",
  "location": "Brooklyn, NY",
  "audit_timestamp": "2026-04-23T11:15:00Z",
  "tier": "pro",
  "platforms_checked": ["google_maps", "yelp", "facebook", "bbb", "apple_maps"],
  "discrepancies": [
    {
      "field": "phone",
      "platforms": {
        "google_maps": "+1-718-555-1234",
        "yelp": "+1-718-555-9999",
        "facebook": "+1-718-555-1234"
      },
      "consensus": "+1-718-555-1234",
      "discrepant_platforms": ["yelp"],
      "severity": "high",
      "recommendation": "Update Yelp listing to match consensus"
    },
    {
      "field": "hours",
      "platforms": {
        "google_maps": "Mon-Sat 10am-10pm",
        "yelp": "Mon-Sat 11am-9pm",
        "facebook": "Mon-Sat 10am-10pm"
      },
      "consensus": "Mon-Sat 10am-10pm",
      "discrepant_platforms": ["yelp"],
      "severity": "medium",
      "recommendation": "Update Yelp hours to match consensus"
    }
  ],
  "summary": {
    "total_platforms": 5,
    "platforms_with_issues": 1,
    "overall_health": "good"
  }
}

Pricing

Lifetime License: $39 — your tool forever, all features included permanently. Optional Monthly: $7/mo — for those who prefer recurring billing (cancel anytime). 👉 Buy Lifetime — $39 👉 Subscribe Monthly — $7/mo 👉 Subscribe Monthly — $7/mo

Pro Upgrade (deprecated)

All features now included in Lifetime purchase.


Legal Notice

IMPORTANT: Only monitor businesses you own or have explicit written permission to audit. Scraping or automated access to third-party platforms may violate those platforms' Terms of Service. EdgeIQ Labs and the skill authors accept no liability for misuse. Comply with all applicable laws and platform policies.


Environment Variables

See .env.example for required and optional configuration.

GOOGLE_PLACES_API_KEY=   # Optional — enables structured Google Places data
TIER=free                 # free | pro | bundle
DEFAULT_LOCATION=         # Optional default location
LOG_LEVEL=INFO            # DEBUG | INFO | WARNING | ERROR

Dependencies

  • Python 3.8+
  • requests (optional — for Google Places API; falls back to stdlib urllib)
  • Standard library: json, re, time, sys, argparse, datetime, os, html

Install optional dependencies:

pip install requests

🔗 More from EdgeIQ Labs

edgeiqlabs.com — Security tools, OSINT utilities, and micro-SaaS products for developers and security professionals.

  • 🛠️ Subdomain Hunter — Passive subdomain enumeration via Certificate Transparency
  • 📸 Screenshot API — URL-to-screenshot API for developers
  • 🔔 uptime.check — URL uptime monitoring with alerts
  • 🛡️ headers.check — HTTP security headers analyzer

👉 Visit edgeiqlabs.com →

安全使用建议
This skill appears to be what it says: a multi-platform listing auditor that scrapes search pages and can optionally use Google Places for structured results. Before installing or running it, consider: 1) Legal/ToS: scraping may violate site Terms of Service — only audit businesses you own or have written permission to audit (the SKILL.md also warns this). 2) Reliability & blocking: the tool uses simple browser-like headers and basic rate delays; heavy or frequent use can get your IP blocked. Use a proper API key (Google Places) when possible. 3) Privacy: results can contain phone numbers and addresses (PII). Ensure you have the right to collect/store that data and protect any reports you write to disk. 4) Review & sandbox: although no exfiltration endpoints are present, review the full code (the truncated portion in the package) and run it in a restricted/sandboxed environment if you’re concerned. 5) Accuracy & maintenance: HTML scraping via regex is brittle; expect false negatives and maintain the PLATFORMS patterns as sites change. If you need automated, high-volume, or commercial audits, prefer official APIs and rate-limited architectures.
能力标签
cryptocan-make-purchasesrequires-sensitive-credentials
能力评估
Purpose & Capability
Name/description (audit business listings across Google/Yelp/Facebook/BBB/Apple) match the provided code and SKILL.md. The only credential mentioned is an optional GOOGLE_PLACES_API_KEY used to call Google Places — appropriate and proportional for the stated enrichment behavior. No unexpected services, binaries, or credentials are requested.
Instruction Scope
The SKILL.md and skill.py explicitly instruct the agent to fetch platform search pages and to fall back to web scraping when no Google key is provided. This behavior is consistent with the stated purpose but has legal/operational implications: scraping third-party sites may violate Terms of Service and can trigger blocking. The instructions also encourage editing the PLATFORMS dict, which expands scope if a user modifies it to target other sites.
Install Mechanism
No install spec; this is instruction+script only and relies on Python stdlib (requests optional). No external downloads or archive extraction are performed, so install risk is low.
Credentials
Only an OPTIONAL GOOGLE_PLACES_API_KEY and simple config (TIER, DEFAULT_LOCATION, LOG_LEVEL) are referenced in SKILL.md/.env.example. The code does not require unrelated secrets or multiple credential types.
Persistence & Privilege
Skill is user-invocable and not always-enabled. It does not request permanent platform-level privileges nor modify other skills' configuration. Autonomous invocation is allowed by platform default but is not combined here with any broad credential access.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install edgeiq-business-listing-aggregator
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /edgeiq-business-listing-aggregator 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.4.0
v1.4.0: URGENT FIX — corrected Stripe Payment Link URLs (no suffixes, correct live URLs)
v1.3.0
v1.3.0: CRITICAL FIX — replaced placeholder Stripe URLs with real working Payment Link checkout URLs
v1.2.0
v1.2.0: Dual pricing — Lifetime as primary purchase option with optional monthly. Updated Stripe checkout URLs.
v1.0.0
Initial release
元数据
Slug edgeiq-business-listing-aggregator
版本 1.4.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 4
常见问题

Business Listing Aggregator 是什么?

Audits a business’s name, address, phone, and hours across Google Maps, Yelp, Facebook, BBB, and Apple Maps, reporting discrepancies in JSON or HTML. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 97 次。

如何安装 Business Listing Aggregator?

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

Business Listing Aggregator 是免费的吗?

是的,Business Listing Aggregator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Business Listing Aggregator 支持哪些平台?

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

谁开发了 Business Listing Aggregator?

由 snipercat69(@snipercat69)开发并维护,当前版本 v1.4.0。

💬 留言讨论