← Back to Skills Marketplace
griffithkk3-del

Ai Intelligence Site

by griffithkk3-del · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
227
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install ai-intelligence-site
Description
AI 情报中心网站自动化管理。创建、更新、部署 AI 竞品分析网站到 GitHub Pages。 支持 5 个子站:全球站、中文站、Skills站、资讯站、模型站。 每日自动更新:删除旧数据 → Serper 搜索发现网站 → 获取真实流量 → 推送 GitHub。 触发词:AI情报中心、竞品分析网站、AI聚合网...
README (SKILL.md)

AI 情报中心网站管理

自动化管理 AI 竞品分析网站,部署到 GitHub Pages。

网站结构

competitor-site/
├── index.html          # 全球站(AI 聚合网站)
├── data.json           # 全球站数据
├── cn/                 # 中文站
├── skills/             # Skills & MCP 站
├── news/               # AI 资讯站
├── models/             # AI 模型站
└── daily_update.py     # 每日更新脚本

核心功能

1. 每日全量更新

执行脚本:

python3 scripts/daily_update.py

更新流程:

  1. 删除旧数据,从零开始
  2. 通过 Serper 搜索发现新网站
  3. 获取每个网站的真实流量数据
  4. 无数据则跳过(不使用模拟)
  5. 重新计算层级(T1/T2/T3)和趋势
  6. 推送到 GitHub

2. 数据源配置

每个站点有独立的搜索关键词和已知网站列表:

站点 搜索关键词示例
全球 AI tools directory, AI aggregator
中文 中国AI工具导航, AI工具集
Skills MCP server marketplace, Claude skills
资讯 AI news website, AI newsletter
模型 LLM API provider, AI model platform

3. 数据结构

{
  "lastUpdated": "ISO时间戳",
  "competitors": [
    {
      "id": "唯一标识",
      "name": "网站名称",
      "domain": "域名",
      "monthlyVisits": 1000000,
      "tier": "T1/T2/T3",
      "trafficTrend": [历史流量数组]
    }
  ],
  "insights": [{"title": "", "content": "", "color": ""}]
}

4. 层级划分

  • T1: 月访问 ≥ 100万
  • T2: 月访问 10万-100万
  • T3: 月访问 \x3C 10万

环境变量

  • SERPER_API_KEY: Serper 搜索 API Key(必需)

部署

  1. 创建 GitHub 仓库并启用 Pages
  2. 配置 Git remote
  3. 运行 daily_update.py 初始化数据
  4. 设置定时任务每日更新
Usage Guidance
This skill implements search + traffic scraping + git push as advertised, but take these precautions before installing or running it: - Do not rely on the hardcoded SERPER_API_KEY. Set SERPER_API_KEY in your environment to your own key and do not use the embedded default. Treat the embedded key as potentially leaked and avoid sending sensitive queries through it. - Review the repo/work directory: the script runs 'git add .', 'git commit', and 'git push' from its working directory. Make sure you run it inside a dedicated repository or directory so you don't accidentally stage/push unrelated or sensitive files. - Verify the Git remote and credentials (it will push to whatever remote is configured). Prefer creating a dedicated empty repo for outputs. - Because the registry metadata doesn't declare the required env var declared in SKILL.md, confirm with the skill author or inspect the code for additional hidden behavior before granting runtime access. - If you don't trust the embedded key, remove it and supply your own, and consider rotating any keys that may have been exposed.
Capability Analysis
Type: OpenClaw Skill Name: ai-intelligence-site Version: 1.0.0 The skill bundle contains a hardcoded 'SERPER_API_KEY' within 'scripts/daily_update.py', which is a significant security flaw and potential credential leak. Furthermore, the script performs automated Git operations, including 'git add .' and 'git push', which poses a risk of accidental data exfiltration if sensitive files are present in the working directory. While these actions align with the stated goal of managing a GitHub Pages site, the combination of hardcoded credentials and broad file-system synchronization is high-risk.
Capability Assessment
Purpose & Capability
The code implements the advertised functionality (search via Serper, parse results, compute tiers, commit & push). However the registry metadata lists no required environment variables while SKILL.md and the script require a SERPER_API_KEY. The script also includes a hardcoded Serper API key default, which is unexpected and inconsistent with the stated requirement to provide your own key.
Instruction Scope
SKILL.md instructs running the provided daily_update.py and configuring a GitHub repo, which matches the script. The script performs network calls to Serper and runs git commands (git add ., commit, push). Running it will stage and push files from the script's working directory — if invoked in the wrong repository or path this could commit unintended files. The instructions do not warn about this risk.
Install Mechanism
This is an instruction-only skill with no install spec. No additional packages are installed by the skill itself, so there is no download/install risk from external URLs.
Credentials
Only one API credential (SERPER_API_KEY) is relevant and expected for the stated purpose, so requiring it is proportionate — but the registry metadata does not declare it and the script falls back to a hardcoded API key value. Embedding a default API key in code is suspicious (possible leaked key or developer convenience) and may cause unexpected API usage or credential exposure.
Persistence & Privilege
The skill does not request always:true and does not modify other skills or system-wide settings. It does run git to push data to a remote repo when executed, which is expected for a deployment workflow but requires the user to configure their Git remote appropriately.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-intelligence-site
  3. After installation, invoke the skill by name or use /ai-intelligence-site
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of AI 情报中心网站自动化管理 skill. - Automates creation, update, and deployment of AI intelligence and competitor analysis sub-sites (global, Chinese, skills, news, models) to GitHub Pages. - Performs daily data refresh: deletes old data, discovers sites via Serper, fetches real traffic, determines tiers, and pushes updates to GitHub. - Organizes data in structured JSON with tier and trend tracking. - Supports per-site search keywords and configuration for tailored data gathering. - Includes setup instructions for deployment and environment variable requirements.
Metadata
Slug ai-intelligence-site
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Ai Intelligence Site?

AI 情报中心网站自动化管理。创建、更新、部署 AI 竞品分析网站到 GitHub Pages。 支持 5 个子站:全球站、中文站、Skills站、资讯站、模型站。 每日自动更新:删除旧数据 → Serper 搜索发现网站 → 获取真实流量 → 推送 GitHub。 触发词:AI情报中心、竞品分析网站、AI聚合网... It is an AI Agent Skill for Claude Code / OpenClaw, with 227 downloads so far.

How do I install Ai Intelligence Site?

Run "/install ai-intelligence-site" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Ai Intelligence Site free?

Yes, Ai Intelligence Site is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Ai Intelligence Site support?

Ai Intelligence Site is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Ai Intelligence Site?

It is built and maintained by griffithkk3-del (@griffithkk3-del); the current version is v1.0.0.

💬 Comments