Back to home@bigstyle777

dsh-tool-arxiv

arXiv preprint search tool for DeepSeek Harness agents — abstracts only, token-bounded

Stars
0
Language
TypeScript
Created
Aug 19, 2026
Updated
Aug 19, 2026
GitHub repo

Introduction

dsh-tool-arxiv

An arXiv preprint search tool for DeepSeek Harness — scaffolded with dshp.

Adds an arxiv_search tool to your agent: search by topic or arXiv ID and get structured results (title, authors, arxiv_id, abstract, abs_url, pdf_url, submit_date). Abstracts only — PDF bodies are never fetched, keeping token usage bounded.

Install

dsh plugin --profile my add dsh-tool-arxiv
dsh --profile my --dump-config   # see the layer land
dsh --profile my                 # boot

Tool signature

ParameterRequiredDescription
queryyesKeywords (any language) or a bare arXiv ID such as 2608.16889
categorynoarXiv category filter, e.g. cs.AI; omit for all fields
max_resultsnoNumber of papers, default 5, capped at 20
sort_bynosubmittedDate (default) or relevance

Results carry the standing caveat: arXiv preprints are not peer-reviewed.

Configuration

Optional cordis.yml overrides:

- id: tool-arxiv
  config:
    timeoutMs: 15000

Library use

The core is dependency-light and exported for reuse:

import { searchArxiv, buildApiUrl, renderPapers } from 'dsh-tool-arxiv'
const papers = await searchArxiv({ query: 'LLM agent', category: 'cs.AI', maxResults: 5 })

Develop

pnpm install && pnpm build
npx dshp verify          # boot-free composition check
npx dshp dev             # live dev overlay (needs dsh)

License

MIT