WOS Literature To Feishu
Before executing, read references/playbook.md.
Core Rules
- Trigger this skill whenever the user mentions
wos,WOS,WoS, orWeb of Science. - Before touching WoS or Feishu, ask the preflight questions from the playbook in one batch. If the required inputs are still missing, stop and wait for the user instead of searching immediately.
- Prefer the Shenzhen University library route first:
https://www.lib.szu.edu.cn/er?key=web+of+science - Prefer
Web of Science - SSCIwhen the user does not specify another database. - Browser automation for WoS is not fixed to one tool. If the user explicitly says they are using
playwright-cli, use theplaywright-cliskill for browser steps and do not silently switch toopencli-browser. Only use another browser automation path when the user agrees or the requested path is unavailable. - Prefer local
lark-clifor Feishu Base writeback. Do not default to browser-based Feishu data entry. - If login reaches Shenzhen University unified auth and asks for SMS code, verification code, captcha, or other second-step authentication, stop and wait for the user to complete it before continuing.
- Default SZU username may be prefilled as
2410032057for this user's local workflow, but keep the password runtime-only and do not persist it into the skill. - Do not store passwords, verification codes, or other credentials inside the skill, repo, or local files. If the user shares credentials in the current chat, treat them as runtime-only and do not persist them into the skill.
- Do not silently switch to direct Clarivate login while the SZU route is available. Use direct Clarivate institution login only as a fallback.
- Do not write into the wrong Feishu subtable. Confirm the exact Base link and target table handling first.
- If the user has no clear screening rule, use the simple default:
高相关 + 高引用 + 近5年代表作 + 摘要完整 + 去重 + 子主题覆盖均衡
Execution Order
- Ask the preflight questions from the playbook.
- Lock the search scope, target count, and screening rule.
- Expand the user's Chinese topic into English core concepts, synonyms, adjacent concepts, and object terms before building final queries.
- Enter WoS through the SZU library route and wait at any verification step.
- Build query buckets and collect candidate papers.
- Deduplicate and screen down to the target count.
- Extract at least
标题 / 年份 / 作者 / Q几区 / 引用数 / 摘要 / 文章链接 / 抓取时间 / 主题标签 / 现在状态, and actively resolveQ几区whenever that field exists in the target schema. - Use local
lark-clito create or update the Feishu table fields and records. - Verify final table name, field structure, sample rows, and record count.
Important Defaults
- Database default:
WOS Core Collection -> SSCI - Document type default:
Article + Review - Language default:
English - Count default when the user says "先来一批":
50 - Base field default:
标题 / 年份 / 作者 / Q几区 / 引用数 / 摘要 / 文章链接 / 抓取时间 / 主题标签 / 现在状态 Q几区default semantics:JCR Quartile, and it should be checked by default when that field is present.
Journal Quartile Rule
SSCI几区 / JCR几区 / 中科院分区is journal-level metadata, not article-level metadata.- If the target table includes
Q几区, do not silently skip it during writeback. - Unless the user explicitly asks for
中科院分区, interpretQ几区asJCR Q1/Q2/Q3/Q4. - Before writing records, either fill
Q1/Q2/Q3/Q4or explicitly report that quartile verification is still pending. - Do not treat
Q几区as optional just because it requires an extra journal-level lookup step. - Abstract extraction is normally feasible from the WoS full record page and can be written into Feishu Base.
Default Field Types
标题:text/plain年份:number, integer作者:text/plainQ几区:select, single choice, optionsQ1/Q2/Q3/Q4; if the workflow often needs staged completion, add待查引用数:number, integer摘要:text/plain文章链接:text/url抓取时间:datetime主题标签:text/plain现在状态:select, single choice, options已读摘要/已读全文, blank allowed
Windows Notes
- On Windows PowerShell, if
lark-cliresolves tolark-cli.ps1and is blocked by execution policy, explicitly calllark-cli.cmd. - If the user chooses
playwright-cli, preferplaywright-cli snapshotfor page inspection, and use a persistent profile or the user's existing session strategy only after confirming it with the user. - When using
--json @filein PowerShell, quote the value, for example:--json "@.\\feishu\\record_payloads\\001.json"