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

geo-pulse地质脉冲

Agent Skill

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

总安装

11,506

周安装

470

GitHub Stars

公开资料未说明

下载量

3,722
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install geo-pulse

简介

用于快速检索和筛选与关键词、任务场景相关的信息,提升 OpenClaw 中的搜索效率。

  • 支持基于来源线索定位候选结果,适用于 GEO 报告生成前的数据准备阶段。
  • 通过调用 API 或本地索引匹配内容,建议结合具体用例测试准确性与响应速度。
  • 安装前需确认是否依赖外部服务,以及是否会触发网络请求或敏感数据访问。
  • 维护状态不明时慎用,避免因上游服务变更导致功能异常或结果偏差。

SKILL.md

name
geo-pulse
description
GEO Pulse delivers compelling, client-ready GEO (Generative Engine Optimization) reports for brands. It measures AI search visibility across ChatGPT / Perplexity / Qwen / DeepSeek style outputs, including mention rate, link reference rate, sentiment, platform breakdown, competitor benchmarking, and historical trends. Use when users ask about GEO performance, AI visibility, brand mentions in AI answers, competitor comparison, GEO reports, or trend changes over time.

GEO Pulse — Brand AI Visibility Intelligence

中文:把“品牌在 AI 搜索里到底有没有被看见”变成可量化、可对比、可执行的报告。 English: Turn brand visibility in AI search into measurable, benchmarkable, action-ready insights.


Why this skill is valuable | 这个技能的价值

  • GEO 核心指标一次拿全:可见度、提及率、链接引用率、情绪、平台分布、竞品对比
  • 首次品牌可自动初始化并触发 AI 搜索流水线
  • 支持历史趋势复盘(7~365 天)
  • 结果可以直接给老板/客户汇报

Configuration | 配置

Use configurable base URL (default is public endpoint):

BASE_URL="${GEO_PULSE_BASE_URL:-http://8.148.223.19:8000}"

All requests use curl with network access.


Feature 1: GEO Audit Report | 品牌 GEO 体检报告

Triggers | 触发词

  • “XXX 的 GEO 表现如何”
  • “给我一份 XXX 的 GEO 报告”
  • “How visible is XXX in AI search?”

Step 1) Check if brand exists

BASE_URL="${GEO_PULSE_BASE_URL:-http://8.148.223.19:8000}"
curl -s "$BASE_URL/api/brands"

Expected structure: {"code":0,"data":{"brands":[{"brand":"Name","brand_domain":"example.com"}]}}

Match by brand OR brand_domain.

  • Found → Step 3
  • Not found → Step 2

Step 2) First-time brand onboarding (3-10 min)

Tell user this is first-time processing and may take several minutes.

2a. Analyze brand

BASE_URL="${GEO_PULSE_BASE_URL:-http://8.148.223.19:8000}"
curl -s -X POST "$BASE_URL/api/brand-analyze" \
  -H 'Content-Type: application/json' \
  -d '{"brand":"BRAND_NAME"}'

Save data.brand_analyse and data.link_analyse.

2b. Create brand record

BASE_URL="${GEO_PULSE_BASE_URL:-http://8.148.223.19:8000}"
curl -s -X POST "$BASE_URL/api/brands" \
  -H 'Content-Type: application/json' \
  -d '{"brand":"BRAND_NAME","brand_analyse":<from_2a>,"link_analyse":<from_2a>}'

2c. Run AI-search pipeline (slow step)

BASE_URL="${GEO_PULSE_BASE_URL:-http://8.148.223.19:8000}"
curl -s --max-time 600 -X POST "$BASE_URL/api/pipeline/ai-search" \
  -H 'Content-Type: application/json' \
  -d '{"brand":"BRAND_NAME"}'

Use long timeout (about 600s). This is the bottleneck step.

Step 3) Fetch report data

3a. Brand profile

BASE_URL="${GEO_PULSE_BASE_URL:-http://8.148.223.19:8000}"
curl -sG "$BASE_URL/api/brand-profile" --data-urlencode "brand_name=BRAND_NAME"

3b. Metrics + competitors

BASE_URL="${GEO_PULSE_BASE_URL:-http://8.148.223.19:8000}"
curl -s -X POST "$BASE_URL/api/brand-metrics" \
  -H 'Content-Type: application/json' \
  -d '{"brand":"BRAND_NAME"}'

Step 4) Compose report

# {Brand} GEO Audit Report

> Report date: {date} | Domain: {domain}

## Brand Overview
{brand_overview}

## Core GEO Metrics
| Metric | Value |
|--------|-------|
| Visibility Score | {visibility_score} |
| Brand Mention Rate | {brand_mention_rate × 100}% |
| Link Reference Rate | {link_reference_rate × 100}% |
| Brand Mentions | {brand_mention_count} |
| Link References | {link_reference_count} |
| Sentiment | Positive {positive} / Neutral {neutral} / Negative {negative} |

## Platform Performance
| Platform | Mentions | Links | Positive | Neutral | Negative |
|----------|----------|-------|----------|---------|----------|
(from platform breakdown)

## Competitor Benchmark
| Brand | Visibility Score | Brand Visibility | Link Visibility |
|-------|------------------|------------------|-----------------|
(sorted by visibility_score desc; mark target brand with ⭐)

## Recommendations
{suggestion}

Feature 2: Historical Trend Analysis | 历史趋势分析

Triggers | 触发词

  • “XXX 的 GEO 趋势”
  • “可见度变化”
  • “visibility trend”
  • “历史对比”

Fetch history

BASE_URL="${GEO_PULSE_BASE_URL:-http://8.148.223.19:8000}"
curl -sG "$BASE_URL/api/brand-metrics/history" \
  --data-urlencode "brand_name=BRAND_NAME" \
  --data-urlencode "days=90"

Compose trend report

# {Brand} GEO Trend Report (Last {days} Days)

## Visibility Score Trend
| Date | Score | Mention Rate | Link Rate | Sentiment (P/N/Neu) |
|------|-------|--------------|-----------|---------------------|
(one row per snapshot, chronological order)

## Summary
- Visibility Score: {first} → {latest} ({delta})
- Brand Mention Rate: {first_rate}% → {latest_rate}% ({delta})
- Link Reference Rate: {first_link}% → {latest_link}% ({delta})
- Overall trend: {improving / declining / stable}

If only one snapshot exists, state clearly that trend confidence is limited.


Error handling & fallback copy | 错误处理与回退文案

1) API unreachable / timeout

Condition: connection refused / timeout / non-200 HTTP

Fallback message (CN):

GEO Pulse 服务暂时不可达(网络或服务超时)。我可以稍后重试,或先基于已有快照给你做一个“非实时版本”的初步报告。

Fallback message (EN):

GEO Pulse API is temporarily unreachable (network/service timeout). I can retry shortly, or provide a non-realtime draft report based on available snapshots.

2) Business error (code != 0)

Fallback:

接口返回业务错误:{message}。我可以尝试重新初始化品牌,或换“品牌名/域名”再查一次。

3) Brand creation failed

Fallback:

品牌初始化失败。请确认品牌名称拼写,或提供官网域名(例如 example.com)以提高识别准确率。

4) Pipeline slow / long running

Progress copy (CN):

首次品牌分析正在执行多平台 AI 查询(通常 3-10 分钟),我会在完成后立即回传完整报告。

Progress copy (EN):

First-time brand pipeline is running multi-platform AI queries (usually 3–10 minutes). I’ll return the full report once complete.

5) Empty metrics/snapshots

Fallback:

当前还没有足够的数据样本。建议先触发一次完整 pipeline,再做趋势分析会更可靠。

Data notes | 字段口径提醒

  • brand_mention_rate / link_reference_rate are ratios in [0,1]; multiply by 100 for display.
  • brand_visibility / link_visibility are already percentages.
  • days range for history: 7-365 (default 90).
  • If user gives domain instead of name, match by brand_domain first.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.38%
按下载量换算2,955

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills