← 返回 Skills 市场
openlark

Jinritoutiao Keyword Collector

作者 OpenLark · GitHub ↗ · v1.0.2 · MIT-0
cross-platform ✓ 安全检测通过
179
总下载
0
收藏
0
当前安装
3
版本数
在 OpenClaw 中安装
/install jinritoutiao-keyword-collector
功能描述
Automatically accesses the Jinri Toutiao homepage via browser automation, inputs keywords into the search bar, and collects related keyword suggestions from...
使用说明 (SKILL.md)

Jinri Toutiao Keyword Collector

Feature Overview

This skill uses browser automation to access Jinri Toutiao (www.toutiao.com), simulates user behavior of entering keywords in the search box, and automatically collects the relevant keyword suggestions displayed in the search dropdown.

Trigger Conditions

Trigger this skill when the user mentions any of the following keywords:

  • 今日头条关键词
  • 收集头条关键词
  • 头条搜索建议
  • 头条热门词
  • 头条 SEO
  • 头条话题
  • Jinri Toutiao keywords
  • Collect Toutiao keywords
  • Toutiao search suggestions
  • Toutiao trending keywords
  • Toutiao SEO
  • Toutiao topics

Use Cases

  • SEO keyword research and optimization
  • Content creation inspiration gathering
  • Trending topic discovery
  • Competitor keyword analysis
  • Market research and trend analysis

Operation Workflow

1. Launch Browser

Use the browser tool to launch the browser:

action: start
profile: openclaw

2. Access Jinri Toutiao Homepage

Navigate to Jinri Toutiao:

action: navigate
targetUrl: https://www.toutiao.com

Wait for the page to fully load.

3. Get Page Snapshot

Use snapshot to get the page element structure and locate the search box:

action: snapshot
refs: aria

Search for the search box element in the snapshot results (typically an input element containing keywords like "search").

4. Input Keywords

Use the act tool to input keywords into the search box:

action: act
ref: \x3Cref value of the search box>
kind: type
text: \x3Cuser-provided keyword>
slowly: true

Set slowly: true to ensure the page can properly trigger the auto-suggest functionality.

5. Wait for Suggestion Dropdown

After input is complete, wait 1-2 seconds for the auto-suggest dropdown to load:

action: act
kind: wait
timeMs: 2000

6. Get Dropdown Snapshot

Take another page snapshot, this time capturing the keyword list in the auto-suggest dropdown:

action: snapshot
refs: aria

7. Extract Keywords

Extract all keyword text from the snapshot results within the suggestion dropdown. The dropdown typically contains multiple option, li, or div elements, each containing a suggested keyword.

8. Output Format

Keyword: [Input Keyword]
Search Suggestions:
1. Suggestion 1
2. Suggestion 2
3. Suggestion 3
...

9. Cleanup (Optional)

If the user has no further requests, close the browser:

action: close

Important Notes

  1. Network Latency: Jinri Toutiao page loading may take time; ensure sufficient waiting time before operations
  2. Element Locating: Using refs: aria provides more stable element references
  3. Input Speed: Setting slowly: true ensures the page can properly trigger auto-suggest
  4. Anti-scraping Mechanisms: Avoid frequent requests in a short period; it is recommended to wait 5-10 seconds between multiple collections
  5. Session Persistence: For multiple collections, keep the browser session open to improve efficiency

Batch Collection for Multiple Keywords

To collect suggestions for multiple keywords:

  1. Keep the browser session open
  2. Repeat steps 4-7 for each keyword
  3. Use act with kind: type to clear the search box before entering a new keyword
  4. Compile all results into a summary report

Troubleshooting

Search Box Not Found

  • Check if the page has fully loaded
  • Try refreshing the page and retrying
  • Use a more detailed snapshot (add the depth parameter)

Suggestion Dropdown Does Not Appear

  • Ensure input speed is slow enough (slowly: true)
  • Increase wait time (timeMs: 3000 or longer)
  • Check if the network connection is normal

Keyword List is Empty

  • Verify the input keyword is valid
  • Try testing with common keywords
  • Check if Jinri Toutiao has updated its page structure

Reference Resources

  • Browser Automation Best Practices: See references/browser-automation-best-practices.md
  • Jinri Toutiao Page Structure Description: See references/toutiao-structure.md
安全使用建议
This skill appears to do what it says: automate a browser to gather Toutiao search suggestions. Before installing or using it, consider: (1) legal and terms-of-service issues — scraping some sites may violate their terms; (2) rate limits and etiquette — avoid high-frequency queries and follow the skill's own advice to slow inputs and add delays; (3) privacy — the skill will read content from the public site but may capture dynamic content you didn't expect; (4) operational safety — because it automates a real browser session, watch for unexpected popups, login prompts, or CAPTCHAs; stop if the site requests authentication. If you need higher assurance, ask the publisher for provenance (who maintains the skill) or request a version that logs/warns before collecting data for each keyword.
功能分析
Type: OpenClaw Skill Name: jinritoutiao-keyword-collector Version: 1.0.2 The skill is a standard browser automation tool designed to collect search suggestions from Jinri Toutiao (toutiao.com) for SEO and research purposes. It uses legitimate browser actions (navigate, type, snapshot) and includes detailed documentation in SKILL.md and references/toutiao-structure.md to assist the agent in navigating the site's DOM. No evidence of data exfiltration, malicious execution, or prompt injection was found.
能力评估
Purpose & Capability
Name/description: browser-automation scraping of Jinri Toutiao search suggestions. Declared requirements: none. SKILL.md uses only the platform 'browser', 'snapshot', and 'act' actions to navigate, type, and read the suggestion dropdown — these are exactly what's needed to implement the described capability.
Instruction Scope
Instructions stay within the stated purpose (navigate to toutiao.com, type keywords, wait, snapshot, extract suggestions). They do not reference unrelated files, environment variables, or external endpoints. Note: the skill performs web scraping of a third-party site — the instructions recommend avoiding anti-scraping behavior but do not enforce rate-limiting or legal/ToS checks; the operator should consider site terms and privacy implications.
Install Mechanism
Instruction-only skill with no install spec and no code files. This is low-risk from an installation perspective because nothing is downloaded or written to disk by the skill itself.
Credentials
No environment variables, credentials, or config paths are requested. The skill's functionality (browser automation against a public website) does not require additional secrets, so requested access is proportionate.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request permanent presence or modify other skills or system configs. Autonomous invocation is allowed by platform default but not combined with other concerning privileges here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install jinritoutiao-keyword-collector
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /jinritoutiao-keyword-collector 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.2
No functional changes; streamlined documentation and improved clarity. - Updated wording to use "Jinri Toutiao" throughout for consistency. - Improved formatting and conciseness in usage instructions. - Clarified trigger keywords and output format. - Enhanced language for important notes and troubleshooting. - No changes were made to the skill’s behavior or code.
v1.0.1
No functional or code changes in this version. - No file changes detected in version 1.0.1. - No new features, bug fixes, or updates were applied. - Documentation may have been revised, but functionality remains the same.
v1.0.0
Initial release of 今日头条关键词收集工具. - 收集今日头条搜索下拉框中的关键词建议,支持 SEO 研究、内容创作等场景 - 基于浏览器自动化,模拟人工输入关键词并提取相关建议词 - 支持多关键词批量收集与汇总 - 提供详细操作流程、注意事项与故障排查建议
元数据
Slug jinritoutiao-keyword-collector
版本 1.0.2
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 3
常见问题

Jinritoutiao Keyword Collector 是什么?

Automatically accesses the Jinri Toutiao homepage via browser automation, inputs keywords into the search bar, and collects related keyword suggestions from... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 179 次。

如何安装 Jinritoutiao Keyword Collector?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install jinritoutiao-keyword-collector」即可一键安装,无需额外配置。

Jinritoutiao Keyword Collector 是免费的吗?

是的,Jinritoutiao Keyword Collector 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Jinritoutiao Keyword Collector 支持哪些平台?

Jinritoutiao Keyword Collector 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Jinritoutiao Keyword Collector?

由 OpenLark(@openlark)开发并维护,当前版本 v1.0.2。

💬 留言讨论