← 返回 Skills 市场
Journal SCI/SSCI Checker
作者
Jiaqi-Guo-0114
· GitHub ↗
· v1.0.0
· MIT-0
223
总下载
0
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install journal-sci-ssci-checker
功能描述
检查心理学学术期刊是否被 SCI 或 SSCI 索引。在评估文献质量时使用,帮助筛选符合条件的期刊文章。 触发场景: - 用户要求检查某期刊是否被 SCI/SSCI 索引 - 在评估非预印本文献质量时自动调用 - 构建心理学语料库时作为期刊筛选工具 不适用于预印本平台的文章(直接跳过,使用 PaperClaw 评估)。
使用说明 (SKILL.md)
Journal SCI/SSCI Checker
功能描述
检查给定期刊是否被 SCI(Science Citation Index)或 SSCI(Social Sciences Citation Index)索引。
使用场景
在论文质量评估流程中:
- 判断文章类型 → 预印本?→ 直接 PaperClaw
- 非预印本 → 检查期刊是否在 SCI/SSCI → 通过后 → PaperClaw
数据来源
- Web of Science (WoS)
- Journal Citation Reports (JCR)
- 更新频率:每年一次
期刊列表文件
- 路径:
/workspace/skills/journal-sci-ssci-checker/data/journals.txt - 格式:每行一个期刊名(支持模糊匹配)
检查流程
输入
- 期刊名称(journal_name)
处理逻辑
- 加载期刊列表(journals.txt)
- 模糊匹配输入的期刊名
- 返回匹配结果:
SCI- 被 SCI 索引SSCI- 被 SSCI 索引BOTH- 同时被 SCI 和 SSCI 索引NOT_FOUND- 不在列表中
输出
{
"journal_name": "输入的期刊名",
"matched_name": "匹配到的期刊名",
"indexed_in": ["SCI", "SSCI"],
"result": "PASS" | "FAIL"
}
示例
输入:
Journal of Personality and Social Psychology
输出:
{
"journal_name": "Journal of Personality and Social Psychology",
"matched_name": "Journal of Personality and Social Psychology",
"indexed_in": ["SCI", "SSCI"],
"result": "PASS"
}
更新期刊列表
运行更新脚本:
python3 /workspace/skills/journal-sci-ssci-checker/scripts/update_journals.py
该脚本会:
- 从 Web of Science 获取最新期刊列表
- 更新 JCR 数据
- 合并去重
- 保存到 journals.txt
注意事项
- 预印本文章不需要执行此检查
- 建议每年更新一次期刊列表
- 匹配采用模糊匹配(忽略大小写、空格差异)
安全使用建议
This skill appears coherent and low-risk: it performs local journal-list lookups and requires no credentials. Notes before installing or running: (1) journals.txt is static and may become stale — the provided update script is a placeholder and will not fetch data from Web of Science as-is; updating from WoS/JCR would require valid Clarivate access (and you should review any network-scraping code for credential handling before running). (2) Because the authoritative sources (WoS/JCR) are paywalled, verify the provenance and accuracy of the bundled journals.txt if you rely on this for formal evaluations. (3) If you later modify the update script to perform web requests or scraping, audit those changes to ensure they don't leak data or require unintended credentials.
功能分析
Type: OpenClaw Skill
Name: journal-sci-ssci-checker
Version: 1.0.0
The skill bundle is a legitimate tool designed to check if academic journals are indexed in SCI or SSCI databases. It consists of a journal list (data/journals.txt), a placeholder update script (scripts/update_journals.py), and clear instructions for the AI agent (SKILL.md). No evidence of malicious intent, data exfiltration, or harmful prompt injection was found; the opaque 'ReservedCode' fields in the markdown header appear to be digital signatures for content provenance rather than executable payloads.
能力评估
Purpose & Capability
Name/description state it checks whether journals are SCI/SSCI-indexed and the skill contains a local data file (data/journals.txt) and matching logic described in SKILL.md — exactly what is needed for this purpose. Nothing required by the skill (no binaries, no env vars) is out of scope.
Instruction Scope
SKILL.md describes loading the local journals.txt, doing fuzzy matching, and returning an indexed/NOT_FOUND result. It does not instruct the agent to read unrelated files, access system credentials, or post data to external endpoints. The only external references are comments describing intended data sources (Web of Science / JCR), which are not invoked by the current code.
Install Mechanism
No install spec is provided (instruction-only plus local files). There are no downloads or external package installs. This minimizes risk and matches the described functionality.
Credentials
The skill requests no environment variables, credentials, or config paths. That is proportionate for a local lookup tool. The update script mentions external APIs in comments but does not use credentials or network calls in its current placeholder form.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request persistent system-wide privileges or modify other skills. Autonomous invocation is allowed by platform default but is not combined with any broad privileges here.
如何使用
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install journal-sci-ssci-checker - 安装完成后,直接呼叫该 Skill 的名称或使用
/journal-sci-ssci-checker触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
常见问题
Journal SCI/SSCI Checker 是什么?
检查心理学学术期刊是否被 SCI 或 SSCI 索引。在评估文献质量时使用,帮助筛选符合条件的期刊文章。 触发场景: - 用户要求检查某期刊是否被 SCI/SSCI 索引 - 在评估非预印本文献质量时自动调用 - 构建心理学语料库时作为期刊筛选工具 不适用于预印本平台的文章(直接跳过,使用 PaperClaw 评估)。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 223 次。
如何安装 Journal SCI/SSCI Checker?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install journal-sci-ssci-checker」即可一键安装,无需额外配置。
Journal SCI/SSCI Checker 是免费的吗?
是的,Journal SCI/SSCI Checker 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Journal SCI/SSCI Checker 支持哪些平台?
Journal SCI/SSCI Checker 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Journal SCI/SSCI Checker?
由 Jiaqi-Guo-0114(@jiaqi-guo-0114)开发并维护,当前版本 v1.0.0。
推荐 Skills