跳到主要内容
知仓学习社ZHICANG

ii-commons

Deterministic search across arXiv, PubMed/PMC, and US policy corpora with daily freshness cutoffs.

不碰外部(只输出文字)无严重或高危命中sickn33/agentic-awesome-skills

它会碰到什么

扫了多少1 个文本文件,4 KB
它会碰到什么不碰外部(只输出文字)
命中总数1 处
命中统计严重 0 · 高 0 · 中 0 · 低 0

这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。

技能内容

II-Commons

Overview

II-Commons provides deterministic retrieval for research agents across arXiv, PubMed/PMC, and supported US policy corpora. Use it when a task needs reproducible search, metadata lookup, full-document Markdown retrieval, or a freshness check before answering with recent evidence.

The upstream project publishes a Node.js CLI as @intelligentinternet/ii-commons and a full agent skill at skills/ii-commons/.

When to Use This Skill

  • Use when searching arXiv, PubMed/PMC, or supported US policy corpora for evidence.
  • Use when the user asks for latest or recent research and corpus freshness matters.
  • Use when you need stable identifiers, metadata, or full-document Markdown for downstream analysis.
  • Use when comparing evidence across scientific literature and policy documents.

How It Works

Step 1: Check Corpus Freshness

Run cutoff before freshness-sensitive searches:

npx @intelligentinternet/ii-commons cutoff

Report the relevant cutoff date before interpreting recent results.

Step 2: Search the Right Corpus

Use this argv shape. Literal examples can be typed as shown, but when the query

comes from a user prompt, pass it as an argument array through the runner API

instead of interpolating it into a shell string. Double quotes do not protect

against command substitution in generated shell commands.

npx @intelligentinternet/ii-commons search arxiv "large language model inference" --max-results 10
npx @intelligentinternet/ii-commons search pubmed "type 2 diabetes review" --start 20240000 --max-results 10
npx @intelligentinternet/ii-commons search policy "state overtime rule for agricultural workers" --jurisdictions US-CA --max-results 10
spawnSync("npx", [
  "@intelligentinternet/ii-commons",
  "search",
  "arxiv",
  userQuery,
  "--max-results",
  "10",
]);

Choose arxiv for preprints and technical research, pubmed for biomedical and clinical literature, and policy for supported US policy corpora.

Step 3: Retrieve Metadata or Markdown

Use stable identifiers from search results:

npx @intelligentinternet/ii-commons meta "arXiv:2402.03578"
npx @intelligentinternet/ii-commons markdown "PMCID:PMC11152602"

Build summaries from search results first, then request Markdown when detailed inspection or full-document grounding is needed.

Installation

Run the CLI with npx:

npx @intelligentinternet/ii-commons --help

Or install globally:

npm install -g @intelligentinternet/ii-commons
ii-commons cutoff

To install the full upstream agent skill, install the skills/ii-commons/ folder from:

https://github.com/Intelligent-Internet/II-Commons-Skills

Best Practices

  • Prefer server-side date filters such as --start and --end for time-bounded arXiv and PubMed searches.
  • Preserve canonical identifiers such as arXiv:<id>, PMID:<id>, PMCID:PMC<id>, and policy:<jurisdiction>:<id>.
  • Use cutoff as the authoritative freshness boundary for each corpus.
  • Keep non-time filters conservative until initial search results show the right scope.

Limitations

  • Requires Node.js 18 or newer and outbound network access to commons.ii.inc.
  • Basic usage works without authentication; higher usage limits may require an API token from https://commons.ii.inc/.
  • Supported policy coverage is limited to the policy corpora exposed by II-Commons.

Security & Safety Notes

  • Do not print or expose II_COMMONS_API_KEY values.
  • Treat outputs as retrieval evidence, not expert review. For medical, legal, or policy-sensitive work, cite sources and preserve uncertainty.
  • Commands call an external API service; confirm network access is allowed in the user's environment before running them.

Related Skills

  • Use broader web-search or deep-research skills when evidence is outside arXiv, PubMed/PMC, or supported policy corpora.
  • Use citation-management skills after II-Commons has identified stable source records.

想直接用这个技能?

本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。

同名技能的其他版本

有 3 个不同仓库或目录里都有叫 ii-commons 的技能。它们内容并不相同,别混用: