From verbatim
Turn any question + context documents into a verbatim answer with exact citations. Collection-agnostic — works with any text you supply.
How this command is triggered — by the user, by Claude, or both
Slash command
/verbatim:transformThe summary Claude sees in its command listing — used to decide when to auto-load this command
Turn any question + context documents into a verbatim answer with exact citations. Collection-agnostic — works with any text you supply. Requires `VERBATIM_API_KEY` environment variable. Get one at https://verbatim.krlabs.eu/api-keys ## Usage Use this curl command to send a question with context documents: Each context item has: - `content` (required): the text to cite from - `title` (optional): document title - `source` (optional): URL or reference - `metadata` (optional): any additional metadata The response includes a verbatim answer where every claim is backed by a direct quote f...
Turn any question + context documents into a verbatim answer with exact citations. Collection-agnostic — works with any text you supply.
Requires VERBATIM_API_KEY environment variable. Get one at https://verbatim.krlabs.eu/api-keys
Use this curl command to send a question with context documents:
curl -s -X POST "https://verbatim.krlabs.eu/api/v1/transform/verbatim" \
-H "Authorization: Bearer $VERBATIM_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"question": "$ARGUMENTS",
"context": [
{
"content": "PASTE_DOCUMENT_TEXT_HERE",
"title": "Document Title",
"source": "optional-url-or-reference"
}
]
}'
Each context item has:
content (required): the text to cite fromtitle (optional): document titlesource (optional): URL or referencemetadata (optional): any additional metadataThe response includes a verbatim answer where every claim is backed by a direct quote from the provided context. Parse with | jq '.answer'.
This counts towards the monthly quota (50 free, 1000 pro).
npx claudepluginhub krlabsorg/verbatim-skill --plugin verbatim/transformTransforms data files between CSV, JSON, Parquet, Excel formats or applies flatten, schema, filter, columns ops. Outputs converted file + metrics report.