スキル一覧に戻る
grahama1970

qra

by grahama1970

1🍴 0📅 2026年1月20日
GitHubで見るManusで実行

SKILL.md


name: qra description: > Extract Question-Reasoning-Answer pairs from text. Use --context for domain-focused extraction. Validates answers are grounded in source text. allowed-tools: Bash, Read triggers:

  • extract QRA
  • extract Q&A
  • extract knowledge
  • create Q&A pairs
  • knowledge extraction
  • generate questions from metadata: short-description: Extract grounded Q&A pairs from text

QRA Skill

Extract Question-Reasoning-Answer pairs from text and store in memory.

Happy Path

# Extract from text file
./run.sh --file document.md --scope research

# With domain focus (recommended)
./run.sh --file notes.txt --scope project --context "security expert"

# Preview before storing
./run.sh --file transcript.txt --dry-run

# From stdin
cat meeting_notes.txt | ./run.sh --scope meetings

Parameters

FlagDescription
--fileText or markdown file
--textRaw text content
--scopeMemory scope (default: research)
--contextDomain focus, e.g. "ML researcher"
--dry-runPreview without storing
--jsonJSON output

What It Does

  1. Split text into logical sections
  2. Extract Q&A pairs via LLM (parallel batch)
  3. Validate answers are grounded in source
  4. Store to memory via memory-agent learn

When to Use

  • Text content (not PDFs - use distill for PDFs)
  • Meeting transcripts
  • Code documentation
  • Notes and summaries
  • Any plain text you want to remember

Examples

# Meeting transcript
./run.sh --file meeting.txt --scope team --context "project manager"

# Code documentation
./run.sh --file README.md --scope code --context "Python developer"

# From clipboard/pipe
pbpaste | ./run.sh --scope notes --dry-run

Environment Variables (Optional Tuning)

VariableDefaultDescription
QRA_CONCURRENCY6Parallel LLM requests
QRA_GROUNDING_THRESH0.6Grounding similarity threshold
QRA_NO_GROUNDING-Set to 1 to skip validation

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です