Skip to main content

doc-to-qra

Convert a document (PDF, URL, text) into Q&A pairs stored in memory.

跳到安装

来源信息

仓库
grahama1970/fetcher
最近来源活动
2026年1月20日 12:53
检测到的 SKILL.md 语言
英语
星标
2
分支
0

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
3 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
doc-to-qra
description
Convert a document (PDF, URL, text) into Q&A pairs stored in memory.
allowed-tools
Bash, Read
triggers
["convert to QRA","document to QRA","pdf to QRA","create QRA from","extract QRA from document","turn this into Q&A","make Q&A from this","remember this document","learn from this pdf"]
metadata
{"short-description":"Document to Q&A pairs in memory"}
# doc-to-qra Convert a document into Question-Reasoning-Answer pairs stored in memory. ## Usage ```bash ./run.sh <document> <scope> [context] [--dry-run] ``` ## Examples ```bash # 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 | Argument | Required | Description | |----------|----------|-------------| | document | Yes | PDF file, URL, or text file | | scope | Yes | Memory scope to store QRAs | | context | No | Domain focus (e.g. "security expert") | | --dry-run | No | Preview without storing | No other flags. Defaults handle everything.
在 GitHub 查看