with one click
ii-commons
Deterministic search across arXiv, PubMed/PMC, and US policy corpora with daily freshness cutoffs.
Deterministic search across arXiv, PubMed/PMC, and US policy corpora with daily freshness cutoffs.
| name | ii-commons |
| description | Deterministic search across arXiv, PubMed/PMC, and US policy corpora with daily freshness cutoffs. |
| category | research |
| risk | safe |
| source | community |
| source_repo | Intelligent-Internet/II-Commons-Skills |
| source_type | community |
| date_added | 2026-05-26 |
| author | Intelligent Internet |
| tags | ["research","arxiv","pubmed","pmc","policy","retrieval","cli","codex"] |
| tools | ["claude","cursor","gemini","codex","antigravity"] |
| license | Apache-2.0 |
| license_source | https://github.com/Intelligent-Internet/II-Commons-Skills/blob/main/LICENSE |
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/.
Run cutoff before freshness-sensitive searches:
npx @intelligentinternet/ii-commons cutoff
Report the relevant cutoff date before interpreting recent results.
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.
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.
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
--start and --end for time-bounded arXiv and PubMed searches.arXiv:<id>, PMID:<id>, PMCID:PMC<id>, and policy:<jurisdiction>:<id>.cutoff as the authoritative freshness boundary for each corpus.commons.ii.inc.https://commons.ii.inc/.II_COMMONS_API_KEY values.Audit deployed Vercel apps for cost and performance issues using metrics, project config, code scans, and version-aware recommendations.
Find and fix WCAG 2.2 accessibility issues. Two modes — report (sweep a codebase or page, produce a prioritized written report, no edits) and fix (audit→edit→verify loop on a target). Prefers direct-CDP live-DOM auditing; falls back to a browser-MCP composition or HTML-string audits.
Diff a live page's accessibility violations against a baseline — by default compares uncommitted changes (stash-based), or pass --branch [<name>] to diff against a branch. Reports only new violations introduced, violations fixed, and pre-existing count. Use `scan` for a full audit with no diffing.
Audit a live page for accessibility issues, locate each WCAG violation precisely, and return a selector-grounded fix worklist without editing.
Use when working with composition-patterns tasks or workflows
Use when working with debugging toolkit smart debug (Alias for debugging-toolkit-smart-debug)