A Claude Code plugin for the Verbatim platform — specialized document collections with verbatim, citation-grounded answers. Defaults to the ACL Anthology collection (90,000+ NLP/CL papers).
Also includes a general-purpose Verbatim Transform — give it any question + context documents and get a verbatim, cited answer
First add the marketplace:
claude plugin marketplace add https://github.com/KRLabsOrg/verbatim-skillThen install:
claude plugin install verbatimOr test locally without installing:
claude --plugin-dir /path/to/verbatim-skill- Go to verbatim.krlabs.eu and sign up
- Navigate to API Keys and create a new key
- Set the environment variable:
export VERBATIM_API_KEY=vb_your_key_here| Command | Description |
|---|---|
/verbatim:search |
Search collection papers, ask research questions, browse authors/venues |
/verbatim:transform |
Verbatim transform any question + context into a cited answer |
Collection search & research questions:
/verbatim:search papers about transformer efficiency from 2023/verbatim:search what does the research say about attention mechanisms?
Verbatim Transform (collection-agnostic):
/verbatim:transform what are the main findings?(with context provided)
Or just ask Claude naturally — it will use the API endpoints from the skill.
Verbatim is organized into collections. The launch collection is the ACL Anthology; more collections may be added. Every action endpoint accepts an optional collection_ids parameter:
- Omit it → defaults to
["anthology"] - Single collection:
?collection_ids=anthology(GET) or{"collection_ids": ["anthology"]}(POST) - Multiple:
?collection_ids=anthology&collection_ids=biorxivor{"collection_ids": ["anthology", "biorxiv"]}
| Action | Endpoint | Quota |
|---|---|---|
| List collections | GET /api/v1/collections |
Free |
| Verbatim Transform (any context) | POST /api/v1/transform/verbatim |
Counts |
| Ask a research question (RAG) | POST /api/v1/query |
Counts |
| Search papers | GET /api/v1/papers/search |
Free |
| Get paper metadata | GET /api/v1/papers/{id} |
Free |
| Get full paper content | GET /api/v1/papers/{id}/content |
Free |
| Get BibTeX citation | GET /api/v1/papers/{id}/bibtex |
Free |
| Browse authors/venues/years | GET /api/v1/facets |
Free |
- Verbatim platform — The service
- API Documentation — Full API docs
- KR Labs — Built by KR Labs
- Claude Code Plugins — Plugin documentation
Apache 2.0