Baidu Seo Toolkit

v1.0.0

SEO optimization toolkit for Chinese search engines: Baidu, Sogou, 360 Search. Includes keyword research, competitor analysis, and Baidu-specific ranking fac...

0· 106·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

aivk973qvtgj25t7btc7kvgp5x11n84hdjkautomationvk973qvtgj25t7btc7kvgp5x11n84hdjklatestvk973qvtgj25t7btc7kvgp5x11n84hdjk
106downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

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

FactorBaiduGoogle
Domain AgeVery importantLess important
ICP FilingRequired for local rankingN/A
Baidu SpiderBaiduspiderGooglebot
Mobile-firstCriticalCritical
Content FreshnessVery importantImportant
BacklinksQuality > QuantityQuality > 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 <html 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 优化

Comments

Loading comments...