doc-to-lora-evaluator

doc-to-lora-evaluator is a skill for Codex from markoblogo/abvx-agent-skills. It costs 85 tokens per session (1,063 once invoked), scanned A, original, MIT.

A decision guide for testing Doc-to-LoRA, a research method that turns a document into model adapter data so the model can use it later without receiving the full document each time.

In plain words
What is it for?
Comparing Doc-to-LoRA with retrieval-augmented generation (RAG), long prompts, summaries, or regular fine-tuning. It helps plan a small test and compare answers from each approach.
Why use it?
It helps you decide whether this approach is suitable before spending time on training or a plugin. It also highlights risks such as outdated information, privacy, licensing, model compatibility, hallucinations, and graphics-memory needs.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Comparing Doc-to-LoRA with retrieval-augmented generation (RAG), long prompts, summaries, or regular fine-tuning. It helps plan a small test and compare answers from each approach.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/markoblogo/abvx-agent-skills/doc-to-lora-evaluator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add markoblogo/abvx-agent-skills --skill doc-to-lora-evaluator
Clone the repo
git clone --depth 1 https://github.com/markoblogo/abvx-agent-skills

Made for: Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for doc-to-lora-evaluator

README.md
[![agentmods](https://agentmods.dev/badge/skills/markoblogo/abvx-agent-skills/doc-to-lora-evaluator/github.svg)](https://agentmods.dev/skills/markoblogo/abvx-agent-skills/doc-to-lora-evaluator)
Your own site
<a href="https://agentmods.dev/skills/markoblogo/abvx-agent-skills/doc-to-lora-evaluator"><img src="https://agentmods.dev/badge/skills/markoblogo/abvx-agent-skills/doc-to-lora-evaluator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for doc-to-lora-evaluator

Your own site · 80×15
<a href="https://agentmods.dev/skills/markoblogo/abvx-agent-skills/doc-to-lora-evaluator"><img src="https://agentmods.dev/badge/skills/markoblogo/abvx-agent-skills/doc-to-lora-evaluator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,063 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00085 $0.01063
Opus 5 $0.00043 $0.00531
Sonnet 5 $0.00017 $0.00213
Haiku 4.5 $0.00009 $0.00106

Measured 12d ago against content hash b8eab4c1785a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

doc-to-lora-evaluator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/doc-to-lora-evaluator/SKILL.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Doc To LoRA Evaluator

Evaluate Doc-to-LoRA as an engineering option before treating it as a production memory layer.

Doc-to-LoRA is a research pattern where a hypernetwork generates a LoRA adapter from a document so later queries can use the internalized information without re-sending the original long context. This skill is a decision and proof-of-concept gate, not a promise that every local machine can run the full pipeline.

Use For

  • comparing Doc-to-LoRA against RAG, long-context prompting, summaries, fine-tuning, or ordinary LoRA training;
  • deciding whether a document set is a good fit for parametric memory;
  • planning a small local or GPU-backed proof of concept with the public SakanaAI implementation;
  • designing validation prompts that compare base-model, long-context, RAG, and internalized-adapter behavior;
  • identifying hallucination, staleness, licensing, privacy, model-compatibility, and VRAM risks before implementation.

Do Not Use For

  • ordinary document QA where RAG or direct context is simpler and cheap enough;
  • irreversible model updates or production deployment without evaluation;
  • private or licensed documents unless the user explicitly authorizes local processing and artifact storage;
  • claiming model memory improvements without side-by-side tests.

Decision Gate

Prefer Doc-to-LoRA only when most of these are true:

  • the same document or knowledge bundle will be queried repeatedly;
  • re-sending the full context is expensive, slow, or exceeds the target model context window;
  • the document is stable enough that adapter regeneration is acceptable;
  • answers need durable factual recall more than open-ended retrieval transparency;
  • the team can run the target model and generated adapters in a controlled environment;
  • evaluation can compare against direct-context or RAG baselines.

Prefer RAG, summaries, or long-context prompting when:

  • source provenance must be shown on every answer;
  • documents change frequently or require fine-grained deletes;
  • the task is one-off;
  • available hardware cannot run the target model plus Doc-to-LoRA stack;
  • user trust depends on visible retrieved passages.

Read the full file on GitHub · 113 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 113 lines · 85 tokens per session scan A b8eab4c1785a

Subscribe to this mod's changes

doc-to-lora-evaluator is a skill published in the GitHub repository markoblogo/abvx-agent-skills (16 stars, last pushed today), licensed MIT. It adds 85 tokens to every session and 1,063 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.