by mmTheBest
Research feedback grounded in the papers that define your field
# Add to your Claude Code skills
git clone https://github.com/mmTheBest/arxieLast scanned: 5/30/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-05-30T17:00:56.939Z",
"npmAuditRan": true,
"pipAuditRan": true
}arxie is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by mmTheBest. Research feedback grounded in the papers that define your field. It has 109 GitHub stars.
Yes. arxie passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/mmTheBest/arxie" and add it to your Claude Code skills directory (see the Installation section above).
arxie is primarily written in Python. It is open-source under mmTheBest on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh arxie against similar tools.
No comments yet. Be the first to share your thoughts!
AI research support specialized in your field.
Most AI assistants become shallow when the question depends on a specialized literature. They can summarize a paper, but they usually do not know which baselines your field expects, which datasets and metrics define a valid comparison, or how your draft and results compare with the papers reviewers already know. Arxie is built for that gap: give it the papers that matter to your project, and ask it to synthesize evidence, compare methods, design benchmarks, plan experiments, map assumptions, and critique revisions.
Arxie is in active development. The current release is useful for single-user local research workflows: importing papers, extracting research signals, creating Study context, and generating research artifacts grounded in selected papers and user-provided sources.
Expect the product surface, extraction quality, model-output contracts, evaluation checks, and deployment workflow to continue improving.
Arxie helps with the parts of research where generic AI often loses the field context:
Import papers
→ Parse full text, figures, and tables
→ Extract research signals
→ Add your draft, code, results, or notes
→ Ask Arxie research-level questions
→ Save useful plans, critiques, comparisons, and revisions
Arxie is organized around two main surfaces:
Which datasets, metrics, and baselines recur across this collection?
Compare these papers by method, dataset, metric, reported result, and limitation.
Which papers make my proposed contribution look incremental?
Build a benchmark and ablation plan for this project.
What assumptions does my method rely on, and how should I stress-test them?
Here is my draft introduction. Which claims need stronger evidence?
Generate a revision plan using my draft, current results, and selected reference papers.
What limitations across this collection create realistic openings for a new study?
Arxie currently supports these research artifact types:
Arxie is useful when your question depends on a specific body of literature, not broad internet knowledge.
Good use cases include:
git clone https://github.com/mmTheBest/arxie.git
cd arxie
python -m venv .venv
source .venv/bin/activate
pip install -e .
Optional local embedding dependencies:
pip install -e .[local-embeddings]
arxie-local run
This starts the local Arxie app, waits for readiness, and opens the Study app in your browser.
By default, the launcher starts PostgreSQL, MinIO, Redis, the API, and the worker. It skips the heavier backend search service so the app can run more reliably on a single machine.
To include Elasticsearch-backed search:
arxie-local run --with-search
Useful launcher commands:
arxie-local open
arxie-local down
arxie-local run --rebuild
arxie-local install-shortcut
arxie-local install-shortcut creates a double-clickable Arxie.command launcher on your Desktop by default.
After launch:
Homepage: http://localhost:8080/
App: http://localhost:8080/app
Liveness: http://localhost:8080/livez
Readiness: http://localhost:8080/readyz
Start infrastructure:
docker compose -f infra/docker-compose.paperbase.yml up -d arxie-postgres arxie-elasticsearch arxie-minio arxie-redis
Apply schema migrations:
docker compose -f infra/docker-compose.paperbase.yml run --rm arxie-migrate
Start the API and worker:
docker compose -f infra/docker-compose.paperbase.yml up -d arxie-api arxie-worker
Open:
http://localhost:8080/app
The browser app supports the main single-user paper workflow.
http://localhost:8080/app.For scripted or operator-driven ingestion, see:
docs/runbooks/paperbase-ingest.md
Arxie can use your own project material in addition to paper evidence.
Supported Study source types:
textdraft_pathcode_pathresults_pathThis is useful when you want Arxie to critique or plan around your actual project state, rather than only the published literature.
Examples:
Here is my current draft. Which claims need stronger paper support?
Use this result file and the selected papers to propose a stronger benchmark plan.
Given this code path and these papers, what ablations are missing?
Use my notes and the extracted limitations to build an assumption map.
MIT