用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kennyzir/7deer_skills --skill google-trends-to-pages命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
使用 SignalLayer.io 的真实 OpenClaw API 创建、查询和分页管理外链 Campaign。适用于用户要求配置 SignalLayer API Key、查询积分、创建外链任务、查看任务状态或列出 Campaign;客户端未指定数量时默认 200,但服务端 linkCount 始终必填。
专用于构建高流量 Roblox 游戏工具站的 SEO 架构与工程化方法论。从给定游戏词到最终上线部署的完整流程,包含每日自动关键词挖掘→页面构建→部署管道。
AI 热点雷达 - 在新 AI 工具/关键词爆火前发现它们,抢注域名、建站套利。 触发条件: - 用户说「跑雷达」、「热点扫描」、「X 雷达」 - cron 每 12 小时自动触发(9:00, 21:00) 核心目标: 在 AI 关键词/工具首次病毒传播 → 大众认知的 24-72h 窗口内发现, 抢注域名 + 建工具站 + 吃搜索流量红利。 典型案例:Nano Banana、Ghibli AI、OpenClaw、Hermes
正在显示 SKILL.md
基于 SOC 职业分类
| name | google-trends-to-pages |
| description | 从 Google Trends 关键词自动生成高流量 SEO 页面的完整工作流。包含搜索意图分类、页面模板选择、内容结构生成和 Schema 注入。 |
| keywords | google trends, seo, keyword research, page generation, search intent, content automation |
这个 skill 帮助你从 Google Trends 数据自动生成高质量的 SEO 页面,是快速捕获流量的核心工具。
当你发现一个搜索量暴涨的关键词(如 "yba codes" +400%),这个 skill 能在 5 分钟内生成一个完整的、SEO 优化的页面,而不是花费数小时手动编写。
interface TrendKeyword {
query: string; // "how to get fuga in jujutsu infinite"
searchVolume: number; // 相对搜索量 (0-100)
growthRate: string; // "+90%"
category: string; // "Gaming"
relatedQueries: string[]; // 相关搜索词
}
使用 resources/intent_classifier.py 将关键词分类为:
根据意图自动选择模板:
Transactional → resources/templates/codes_page.tsx
Informational → resources/templates/guide_page.tsx
Navigational → resources/templates/hub_page.tsx
Commercial → resources/templates/comparison_page.tsx
自动生成页面的:
根据页面类型自动注入:
# 输入
Keyword: "yba codes"
Growth: +400%
Intent: Transactional
# AI 自动生成
- /yba/page.tsx (完整的代码页面)
- 包含 Active/Expired 代码分区
- 一键复制按钮
- FAQPage Schema
- 多语言支持 (codigos, коды)
# 输入
Keyword: "how to get fuga in jujutsu infinite"
Growth: +90%
Intent: Informational
# AI 自动生成
- /handbook/how-to-get-fuga/page.tsx
- 5 步骤详细指南
- HowTo Schema
- YouTube 视频嵌入位置
- Reddit 讨论链接
- 相关内部链接 (Domain Expansion, Maximum Scroll)
resources/intent_classifier.py使用 NLP 模型分类搜索意图:
def classify_intent(keyword: str) -> str:
"""
基于关键词特征判断搜索意图
规则:
- 包含 "codes", "free", "redeem" → Transactional
- 包含 "how to", "guide", "tutorial" → Informational
- 包含 "best", "top", "vs" → Commercial
- 包含 "wiki", "list", "all" → Navigational
"""
# 实现逻辑...
resources/page_templates/包含 4 种核心模板:
codes_page.tsx - 代码页模板
guide_page.tsx - 指南页模板
hub_page.tsx - 聚合页模板
comparison_page.tsx - 对比页模板
resources/keyword_analyzer.ts分析关键词的 SEO 机会:
interface KeywordAnalysis {
difficulty: 'Easy' | 'Medium' | 'Hard';
opportunity: number; // 0-100 分
priority: 'P0' | 'P1' | 'P2';
estimatedTraffic: number;
competitorCount: number;
suggestedWordCount: number;
}
# 从 Google Trends 导出 CSV
# 使用 intent_classifier.py 批量分类
# 按优先级排序 (搜索量 × 增长率)
# 自动生成前 10 个页面
生成的页面必须包含:
// 1. 运行意图分类
python resources/intent_classifier.py --input trends.csv --output classified.json
// 2. 生成页面
npm run generate-pages -- --input classified.json --priority P0
// 3. 验证生成的页面
npm run build
npm run lint
# .github/workflows/trend-pages.yml
name: Generate Trend Pages
on:
schedule:
- cron: '0 0 * * 1' # 每周一运行
jobs:
generate:
runs-on: ubuntu-latest
steps:
- name: Fetch Google Trends
- name: Classify Intent
- name: Generate Pages
- name: Create PR
准备好开始使用了吗? 从 Google Trends 导出你的关键词列表,让 AI 帮你生成第一批高流量页面!