← Back to Skills Marketplace
dzxiatian-crypto

Baidu Seo Toolkit

by dzxiatian-crypto · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
143
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install baidu-seo-toolkit
Description
SEO optimization toolkit for Chinese search engines: Baidu, Sogou, 360 Search. Includes keyword research, competitor analysis, and Baidu-specific ranking fac...
README (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 Google
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 优化

Usage Guidance
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.
Capability Analysis
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install baidu-seo-toolkit
  3. After installation, invoke the skill by name or use /baidu-seo-toolkit
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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).
Metadata
Slug baidu-seo-toolkit
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Baidu Seo Toolkit?

SEO optimization toolkit for Chinese search engines: Baidu, Sogou, 360 Search. Includes keyword research, competitor analysis, and Baidu-specific ranking fac... It is an AI Agent Skill for Claude Code / OpenClaw, with 143 downloads so far.

How do I install Baidu Seo Toolkit?

Run "/install baidu-seo-toolkit" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Baidu Seo Toolkit free?

Yes, Baidu Seo Toolkit is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Baidu Seo Toolkit support?

Baidu Seo Toolkit is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Baidu Seo Toolkit?

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

💬 Comments