Journal SCI/SSCI Checker

v1.0.0

检查心理学学术期刊是否被 SCI 或 SSCI 索引。在评估文献质量时使用,帮助筛选符合条件的期刊文章。 触发场景: - 用户要求检查某期刊是否被 SCI/SSCI 索引 - 在评估非预印本文献质量时自动调用 - 构建心理学语料库时作为期刊筛选工具 不适用于预印本平台的文章(直接跳过,使用 PaperClaw 评估)。

0· 218·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for jiaqi-guo-0114/journal-sci-ssci-checker.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Journal SCI/SSCI Checker" (jiaqi-guo-0114/journal-sci-ssci-checker) from ClawHub.
Skill page: https://clawhub.ai/jiaqi-guo-0114/journal-sci-ssci-checker
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install journal-sci-ssci-checker

ClawHub CLI

Package manager switcher

npx clawhub@latest install journal-sci-ssci-checker
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

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

latestvk976x15vmvgwv1ejy16m6cpcn5833t2r
218downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Journal SCI/SSCI Checker

功能描述

检查给定期刊是否被 SCI(Science Citation Index)或 SSCI(Social Sciences Citation Index)索引。

使用场景

在论文质量评估流程中:

  1. 判断文章类型 → 预印本?→ 直接 PaperClaw
  2. 非预印本 → 检查期刊是否在 SCI/SSCI → 通过后 → PaperClaw

数据来源

  • Web of Science (WoS)
  • Journal Citation Reports (JCR)
  • 更新频率:每年一次

期刊列表文件

  • 路径:/workspace/skills/journal-sci-ssci-checker/data/journals.txt
  • 格式:每行一个期刊名(支持模糊匹配)

检查流程

输入

  • 期刊名称(journal_name)

处理逻辑

  1. 加载期刊列表(journals.txt)
  2. 模糊匹配输入的期刊名
  3. 返回匹配结果:
    • 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

该脚本会:

  1. 从 Web of Science 获取最新期刊列表
  2. 更新 JCR 数据
  3. 合并去重
  4. 保存到 journals.txt

注意事项

  • 预印本文章不需要执行此检查
  • 建议每年更新一次期刊列表
  • 匹配采用模糊匹配(忽略大小写、空格差异)

Comments

Loading comments...