Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

cnki-watch中国知网观察

Agent Skill

cnki-watch 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,146

周安装

537

GitHub Stars

公开资料未说明

下载量

4,210
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cnki-watch(中国知网观察)
来源仓库:https://github.com/yjli-new/cnki-watch
安装命令:
openclaw skills install cnki-watch
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install cnki-watch

简介

cnki-watch 按期刊或主题订阅 CNKI 新发表论文,定期推送元数据到主系统。

  • 适用于学者、实验室或企业知识库建设团队保持文献更新同步。
  • 支持 RSS 式订阅机制,可设定推送频率与关键词过滤条件。
  • 首次查询会返回近期已发表条目,后续仅增量更新。
  • 订阅数量过多可能影响性能,建议合理规划监控范围。

SKILL.md

name
cnki-watch
description
Query CNKI by journal name or research topic, and create journal or topic subscriptions that periodically push new CNKI paper metadata into the main OpenClaw chat. Use for one-off CNKI lookups and recurring CNKI monitoring.
metadata
{ "openclaw": { "emoji": "📚", "requires": { "bins": ["node", "openclaw"] } } }

CNKI Watch

Use this skill when the user wants CNKI results in either of these modes:

  • manual journal query: return papers from a named journal,
  • manual topic query: return CNKI papers related to a research topic,
  • journal subscription: periodically push new papers from a named journal,
  • topic subscription: periodically push new papers for a research topic.

When to use

  • The user gives a journal name and wants a one-off CNKI query.
  • The user gives a research topic and wants titles plus source metadata.
  • The user wants a recurring CNKI watch delivered back into OpenClaw.

Preconditions

  • The skill ships as a normal npm project with a root package.json and declared dependencies.
  • Preferred runtime is still the OpenClaw gateway container, but local development runs are supported on Windows/macOS/Linux with Node.js 22+.
  • On local runs, the script auto-installs missing JavaScript dependencies from package.json on first use. Browser discovery supports Playwright-managed Chromium plus common Chrome/Edge installs. No custom NODE_PATH is required.
  • Prefer CNKI_COOKIE. CNKI_USERNAME plus CNKI_PASSWORD is a fallback path for establishing a CNKI login session.
  • If CNKI shows captcha, slider verification, or another human-check page, stop and ask for a fresh CNKI_COOKIE or a manually refreshed session. Do not invent alternative scraping logic in the model.
  • Treat OpenClaw runtime behavior as authoritative. The docs define the public contract; do not optimize for quick_validate.py quirks at the expense of runtime compatibility.

Reference files:

  • references/config.md
  • references/schedule.md
  • references/commands.md

Canonical entrypoint

Always use the bundled script instead of ad hoc CNKI browsing:

node {baseDir}/scripts/cnki-watch.mjs <command> [flags]

For local development outside OpenClaw:

cd {baseDir}
npm install
node scripts/cnki-watch.mjs --help
npx cnki-watch query-topic --topic "人工智能" --json

Core commands

One-off journal lookup

node {baseDir}/scripts/cnki-watch.mjs query-journal --journal "计算机学报" --json

One-off topic lookup

node {baseDir}/scripts/cnki-watch.mjs query-topic --topic "大模型安全" --json

Create a journal subscription

node {baseDir}/scripts/cnki-watch.mjs subscribe-journal --journal "计算机学报" --schedule "daily@09:00" --json

Create a topic subscription

node {baseDir}/scripts/cnki-watch.mjs subscribe-topic --topic "大模型安全" --schedule "weekly@mon@09:00" --json

List and remove subscriptions

node {baseDir}/scripts/cnki-watch.mjs list-subscriptions --json
node {baseDir}/scripts/cnki-watch.mjs unsubscribe --id "<subscription-id>" --json
node {baseDir}/scripts/cnki-watch.mjs run-subscription --id "<subscription-id>" --json

Workflow

  1. Decide whether the user wants a manual query or a subscription.
  2. Preserve the journal name or topic text exactly unless the user explicitly asks to normalize it.
  3. Use query-journal for a journal lookup and query-topic for a topic lookup.
  4. Use subscribe-journal or subscribe-topic for recurring pushes. If the user does not supply a schedule, use the configured defaultSchedule.
  5. Respect skill config for browserProfile, timezone, defaultSchedule, maxManualResults, and maxPushResults.
  6. After creating, listing, running, or removing a subscription, report the subscription id, schedule, timezone, and status returned by the script.

Delivery rules

  • Subscription jobs run as isolated cron turns with no automatic announce delivery.
  • The script is responsible for posting new findings back to the main OpenClaw chat, typically through chat.inject.
  • Manual queries return metadata to the current turn and do not create subscription state.
  • Subscription runs should push only new items and stay silent when there is no delta.
  • Return metadata and CNKI links only. Do not promise PDFs, full text, or other copyrighted payloads.

Failure handling

  • If the script reports missing browser dependencies or an unusable runtime, fix the OpenClaw runtime and retry.
  • If CNKI blocks the session with captcha or another verification flow, stop and ask for a fresh CNKI_COOKIE or a manually refreshed CNKI session.
  • If a journal lookup returns weak matches, verify the exact journal name and tell the user that source filtering may need the precise CNKI source string.
  • If credentials are missing, ask the user to populate CNKI_COOKIE, or CNKI_USERNAME plus CNKI_PASSWORD, in the skill env config before retrying.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

74.31%
按下载量换算3,128

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills