Claude-skill-registry doc-to-qra

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/doc-to-qra" ~/.claude/skills/majiayu000-claude-skill-registry-doc-to-qra && rm -rf "$T"
manifest: skills/data/doc-to-qra/SKILL.md
source content

doc-to-qra

Convert a document into Question-Reasoning-Answer pairs stored in memory.

Usage

./run.sh <document> <scope> [context] [--dry-run]

Examples

# PDF → QRA
./run.sh paper.pdf research

# URL → QRA
./run.sh https://example.com/article web

# With domain focus
./run.sh paper.pdf research "ML researcher"

# Preview first
./run.sh paper.pdf research --dry-run

Arguments

ArgumentRequiredDescription
documentYesPDF file, URL, or text file
scopeYesMemory scope to store QRAs
contextNoDomain focus (e.g. "security expert")
--dry-runNoPreview without storing

No other flags. Defaults handle everything.