← 返回 Skills 市场
Baidu Seo Toolkit
作者
dzxiatian-crypto
· GitHub ↗
· v1.0.0
· MIT-0
143
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install baidu-seo-toolkit
功能描述
SEO optimization toolkit for Chinese search engines: Baidu, Sogou, 360 Search. Includes keyword research, competitor analysis, and Baidu-specific ranking fac...
使用说明 (SKILL.md)
Baidu SEO Toolkit
SEO optimization toolkit for Chinese search engines. Optimizes for Baidu, Sogou, and 360 Search with platform-specific ranking factors.
Baidu vs Google Key Differences
| Factor | Baidu | |
|---|---|---|
| Domain Age | Very important | Less important |
| ICP Filing | Required for local ranking | N/A |
| Baidu Spider | Baiduspider |
Googlebot |
| Mobile-first | Critical | Critical |
| Content Freshness | Very important | Important |
| Backlinks | Quality > Quantity | Quality > Quantity |
Usage
Keyword Research
def baidu_keyword_research(keyword):
"""Research keywords for Baidu SEO"""
suggestions = []
# Baidu Index (index.baidu.com equivalent)
suggestions.append(get_baidu_index(keyword))
# Baidu auto-suggest
suggestions.append(get_baidu_suggest(keyword))
# Competitor keywords
competitors = get_top_ranking_pages(keyword, "baidu")
for page in competitors[:5]:
suggestions.extend(extract_keywords_from_page(page))
return deduplicate(suggestions)
Baidu-Specific Optimization
def optimize_for_baidu(page_content):
"""Apply Baidu-specific optimizations"""
checks = []
# 1. ICP filing notice (required for .cn domains)
if has_cn_domain():
checks.append("⚠️ Add ICP备案号 in footer")
# 2. Baidu Zhidao backlinks (Baidu's Q&A platform)
checks.append("💡 Create Baidu Zhidao answers with link")
# 3. Baidu Submit sitemap
checks.append("✅ Submit to Baidu Webmaster Tools")
# 4. Mobile optimization (critical for Baidu)
if not is_mobile_friendly():
checks.append("❌ Mobile optimization required for Baidu")
# 5. Chinese lang tag
if not has_zh_cn_tag():
checks.append("❌ Add \x3Chtml lang='zh-cmn-Hans'>")
return checks
Competitor Analysis
def analyze_baidu_competitors(target_keyword):
"""Analyze why competitors rank on Baidu"""
results = []
pages = get_top_10_baidu_results(target_keyword)
for page in pages:
analysis = {
"url": page.url,
"title_length": len(page.title), # Baidu: 28-30 chars optimal
"meta_description": len(page.meta), # Baidu: ~80 chars
"has_https": page.url.startswith("https"),
"has_schema": page.has_structured_data,
"domain_age": get_domain_age(page.domain),
"backlinks": estimate_backlinks(page.url),
"content_length": estimate_word_count(page),
}
results.append(analysis)
return results
Baidu Webmaster Tools
Submit sitemap: https://ziyuan.baidu.com/linksubmit
Tags
baidu seo chinese-seo search-engine keyword-research 优化
安全使用建议
This skill is instruction-only and internally consistent with Baidu SEO tasks. Before installing: (1) note that the SKILL.md is high-level pseudo-code—actual behavior depends on how your agent implements the helper functions and whether it will perform web requests or scraping; (2) it does not request credentials now, but some workflows (e.g., submitting sitemaps to Baidu Webmaster Tools) could prompt the agent to ask for account tokens later—do not provide sensitive credentials unless you trust the skill and the destination; (3) if you require stricter controls, review or sandbox the agent's web/network access and monitor any future versions for added env vars or install steps.
功能分析
Type: OpenClaw Skill
Name: baidu-seo-toolkit
Version: 1.0.0
The skill bundle contains documentation and pseudo-code for a Baidu SEO optimization toolkit. The content in SKILL.md is purely informational, describing standard SEO practices such as keyword research, competitor analysis, and technical checks (ICP filing, mobile optimization). There is no evidence of malicious intent, data exfiltration, or prompt injection.
能力评估
Purpose & Capability
Name/description (Baidu SEO, keyword research, competitor analysis) align with the content of SKILL.md; there are no unrelated environment variables, binaries, or install steps requested.
Instruction Scope
SKILL.md contains high-level pseudo-code that relies on unspecified helper functions (e.g., get_baidu_index, estimate_backlinks). This is expected for an instruction-only toolkit, but the instructions are abstract and assume the agent will perform web queries/scraping or call external APIs; no instructions ask the agent to read local files or exfiltrate unrelated data.
Install Mechanism
No install spec and no code files—lowest-risk model for persistence and disk writes.
Credentials
Skill declares no environment variables, credentials, or config paths. The checks and suggestions in the document (ICP filing, Baidu Webmaster Tools) are relevant to Baidu SEO and do not require unrelated secrets.
Persistence & Privilege
always is false and the skill does not request to modify agent/system config or require permanent presence.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install baidu-seo-toolkit - 安装完成后,直接呼叫该 Skill 的名称或使用
/baidu-seo-toolkit触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Baidu SEO Toolkit 1.0.0 – Initial release
- Provides SEO optimization tools tailored for Chinese search engines: Baidu, Sogou, and 360 Search.
- Includes modules for keyword research, competitor analysis, and Baidu-specific ranking factor checks.
- Offers Python code samples for practical use in keyword research and optimization.
- Documents Baidu vs Google ranking differences and best practices.
- Includes guidance for Baidu Webmaster Tools and compliance requirements (e.g., ICP filing).
元数据
常见问题
Baidu Seo Toolkit 是什么?
SEO optimization toolkit for Chinese search engines: Baidu, Sogou, 360 Search. Includes keyword research, competitor analysis, and Baidu-specific ranking fac... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 143 次。
如何安装 Baidu Seo Toolkit?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install baidu-seo-toolkit」即可一键安装,无需额外配置。
Baidu Seo Toolkit 是免费的吗?
是的,Baidu Seo Toolkit 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Baidu Seo Toolkit 支持哪些平台?
Baidu Seo Toolkit 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Baidu Seo Toolkit?
由 dzxiatian-crypto(@dzxiatian-crypto)开发并维护,当前版本 v1.0.0。
推荐 Skills