npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-academic-research

v0.1.14

Published

Scaffold agent-ready academic research repositories with SOTA, source ledgers, wiki memory, MCP setup, and project-local skills.

Readme

Create Academic Research

npm Validate Release License: MIT

Create agent-ready academic research repositories with one command.

create-academic-research scaffolds a serious research workspace: source ledgers, SOTA files, citation audit tables, experiment records, reproducibility docs, durable wiki/log memory, project-local skills, and MCP setup for scholarly search. The template is discipline-general and especially strong for computer science research.

Quickstart

npm create academic-research@latest my-project

Equivalent explicit form:

npx create-academic-research@latest my-project

Prefer the explicit @latest form. Some npm/npx versions reuse an older cached creator when the version is omitted.

From GitHub:

npx --yes github:VincenzoImp/create-academic-research my-project

What It Creates

| Area | Generated Support | |---|---| | Sources | PDFs, derived Markdown, metadata, BibTeX, conversion ledger, source ledger. | | Literature Review | Search strategy, screening decisions, literature matrix, SOTA synthesis, gaps, PRISMA flow. | | Agent Memory | AGENTS.md, capability profile, MCP setup docs, generated MCP snippets, wiki index/log/templates. | | Reproducibility | Python package scaffold, tests, experiment registry, output folders, artifact checklist. | | Skills | Project-local installation flow for VincenzoImp/academic-research-skills. | | MCP | Conservative default records for scholarly discovery plus documented optional integrations. |

The wizard is discipline-general: it creates a clean structure for academic research projects in any field. Its companion skill stack gives first-class support to computer science research, including AI/ML, systems, HCI, security, software engineering, databases, theory, robotics, IR, PL, graphics, and adjacent interdisciplinary CS.

The generated repository is agent-neutral. By default the wizard records agent: universal, installs one shared project-local .agents/skills copy, and writes generic MCP snippets. Use --agent <id> only when you want to force a specific target recognized by the skills CLI. Run npm run agents:list inside a generated project to see every supported target and alias.

When To Use It

Use this when starting or cleaning up an academic research project that needs evidence tracking, literature-review discipline, repeatable experiments, paper writing support, or LLM-agent collaboration. It is not a paper generator and it does not replace methodological judgment; it gives the repository enough structure for serious research work to compound instead of scattering across chat history, notebooks, PDFs, and ad hoc folders.

Default Experience

By default, the wizard:

  • creates the repository structure;
  • installs the project-local VincenzoImp/academic-research-skills package;
  • enables only the low-friction arxiv MCP record;
  • documents the wider MCP catalog, including Semantic Scholar, OpenAlex, DBLP, PubMed, Zotero, Crossref, Overleaf, and fallback aggregators;
  • writes configs/capabilities.yaml;
  • writes docs/agent/capability-profile.md;
  • writes docs/agent/mcp-setup.md;
  • writes docs/agent/generated/mcp.json unless an explicit agent target is set;
  • includes scripts/README.md for repeatable command entrypoints;
  • includes reusable wiki/templates/ pages for sources, claims, experiments, decisions, reviewer concerns, and research questions;
  • appends the onboarding event to wiki/log.md;
  • does not install external MCP tools unless explicitly requested.

Use --preset enhanced when you also want the curated complementary external skill bundles for agent engineering, frontend work, testing, document formats, and PDF conversion.

Research-specific skills are intentionally not pulled from external packages by default. The academic research workflow, literature review, citation audit, paper writing, peer review, rebuttal, and reproduction policies come from VincenzoImp/academic-research-skills. External skills installed by the wizard are complementary tooling only.

Non-Interactive Create

npx create-academic-research@latest my-project --yes

For CI or local testing without installing skills:

npx create-academic-research@latest my-project --yes --no-install-skills

Project Lifecycle

Inside a generated project:

npm run doctor
npm run update
npm run setup
npm run rename -- --title "New Title" --slug new-title --package new_title
npm run agents:list
npm run skills:presets
npm run skills:install
npm run skills:install -- --preset enhanced
npm run skills:install -- source-ingestion sota-literature-review
npm run skills:list
npm run skills:status
npm run skills:remove -- source-ingestion
npm run skills:uninstall -- source-ingestion
npm run skills:update
npm run mcp:list
npm run mcp:enabled
npm run mcp:available
npm run mcp:commands -- arxiv
npm run mcp:env -- openalex semantic-scholar zotero
npm run mcp:env -- --dotenv --all > .env.example
npm run mcp:dotenv
npm run mcp:enable -- arxiv dblp
npm run mcp:disable -- arxiv
npm run mcp:install -- arxiv
npm run mcp:uninstall -- arxiv
npm run mcp:smoke -- --env-file .env.local
npm run mcp:doctor -- --env-file .env.local
npm run mcp:probe -- arxiv --timeout-ms 5000

For direct one-off invocation without the generated package scripts, use npx --yes --package create-academic-research@latest academic-research <command>.

Command Model

academic-research update is a dry-run by default. It reports managed project files that would change and writes them only with --apply.

academic-research init initializes an existing repository without overwriting existing files. It adds the research contract, merges lifecycle package scripts, and preserves existing README, .gitignore, and custom package scripts.

academic-research setup is a non-destructive onboarding status command. It prints the active preset, agent, skill counts, enabled MCP records, and next commands without changing files.

Skills are project-local by default.

| Command | Meaning | |---|---| | skills presets | List available capability presets. | | skills install | Install project-local skills by preset, or selected skill ids such as source-ingestion. This does not change MCP records. | | skills list | List skills found in project-local skill loader directories. | | skills status | Show configured project preset, agent, scope, skill roots, unique skill ids, and installed copies. | | skills remove / skills uninstall | Remove selected project-local skills. | | skills update | Update project-local skill copies. |

MCP commands are split by side-effect:

| Command | Meaning | |---|---| | mcp list | List known MCP servers with enabled/available status. | | mcp enabled | List only enabled MCP server ids. | | mcp available | List the local MCP catalog. | | mcp commands | Print finite external install commands without running them. Runtime-only uvx/npx servers may have no install command. | | mcp env | Print required/recommended env vars, hosted endpoints, local prerequisites, and setup commands for selected servers. Use --dotenv --all to print dotenv content or --write .env.example --all to regenerate .env.example. | | mcp enable | Enable an MCP server in project records and generated snippets. | | mcp disable | Remove an MCP server from project records and generated snippets. | | mcp install | Run finite external tool install commands for selected MCP servers. It must not launch stdio MCP servers. | | mcp uninstall | Run the external uninstall command when one exists. | | mcp smoke | Print non-launching readiness diagnostics for enabled or selected MCP servers. | | mcp doctor | Validate enabled MCP records, generated snippets, required env vars, and documented manual prerequisites. Pass --env-file .env.local to read explicit local secrets. | | mcp probe | Opt-in runtime check that starts selected MCP servers and performs a stdio JSON-RPC handshake. |

Companion Skills

The generated project works best with:

npx -y skills add VincenzoImp/academic-research-skills --skill '*' --copy -y

The create wizard can install that project-local package automatically. Those skills are portable SKILL.md instructions, but they require an agent/runtime that can load skills or include the relevant instructions in context. They are not automatic capabilities of every raw model API. Use --agent <id> for explicit setup with any id from npm run agents:list. The shorthand --agent claude is normalized to the supported claude-code target. Avoid --agent auto for unattended setup: the upstream skills CLI may expand it to every agent it detects on the machine.

Preset intent:

| Preset | Intent | |---|---| | minimal | Academic research skills only, no MCP records. | | default | Academic research skills plus the low-friction arXiv MCP record. | | enhanced | default plus curated external complementary skill bundles. | | literature | SOTA and systematic-review work with arXiv plus DBLP for computer science bibliography. | | writing | Paper-writing work; Overleaf is documented as an opt-in credentialed integration. | | full | Broad setup with low-friction arXiv and DBLP records plus the full optional MCP catalog documented. |

MCP defaults are intentionally conservative. Semantic Scholar, OpenAlex, Zotero, Overleaf, Crossref, and fallback aggregators are useful, but they need API keys, local apps, manual setup, or source-policy review. Enable them with npm run mcp:enable -- <server> after reading docs/agent/mcp-setup.md, use npm run mcp:env -- <server> to see runtime prerequisites, then run npm run mcp:doctor.

The MCP catalog distinguishes local runtime adapters from hosted endpoints and manual integrations. arXiv and DBLP are low-friction local uvx runtimes. Semantic Scholar is useful for citation graphs but works best with SEMANTIC_SCHOLAR_API_KEY. OpenAlex requires OPENALEX_API_KEY for the selected local adapter; OpenAlex keys are free and include a free daily quota, but high-volume work should check current credit limits. PubMed is a biomedical-specific npx runtime and remains opt-in. Zotero needs the local Zotero desktop app and Zoty setup. Overleaf is manual and credentialed. Crossref and broad paper-search aggregators are kept as fallback/manual entries until a project explicitly needs them.

Generated projects include a committed .env.example with empty MCP variables and ignore filled .env or .env.local files. Regenerate the example with npm run mcp:dotenv. mcp doctor, mcp smoke, and mcp probe check the current process environment unless you explicitly pass --env-file .env.local.

Generated MCP snippets are project documentation and client-ready config, not live tools by themselves. Your MCP client must load the generated snippet, and the referenced commands must be available on your machine or runnable through uvx/npx. mcp install only runs finite setup commands such as the arXiv tool install; it deliberately does not launch stdio MCP servers. Use mcp smoke for a non-launching readiness pass before wiring a client: it checks required env vars, manual/local-service status, and whether runtime commands are visible on PATH. Use mcp probe only when you intentionally want to start selected MCP server processes and verify a real stdio JSON-RPC handshake.

Validate This Package

npm install
npm run typecheck
npm test
npm run lint
npm pack --dry-run

Release

Releases are tag-driven. Update package.json and package-lock.json, commit the change, create vX.Y.Z, and push the tag:

git tag -a vX.Y.Z -m "vX.Y.Z"
git push origin main vX.Y.Z

Once the GitHub repository is public, the release workflow validates the tag against the package version, runs CI, smoke-tests the generated project, publishes create-academic-research to npm, and creates a GitHub Release with generated notes. npm publishing is configured for trusted publishing/provenance; configure npm trusted publishing for VincenzoImp/create-academic-research and workflow file release.yml, or add an NPM_TOKEN repository secret for token-based first publication. If a tag was pushed while the repository was private, make the repository public and run the Release workflow manually with the existing tag.