Files
simonandCursor 1e1111c90f Qortino AI QDN assembly, share-to-Quitter, categorized saves, File shim fixes
Safety snapshot of mobile work before merging upstream chat-v2:
- Qortino AI: QDN pack discovery/download (Q-Share ids), external app
  storage, install validation, teach/report Q-Mail, PDF thumbs+zoom
- Android share target "Quitter" with native ShareReceiver plugin
- Categorized device saves (Images/Videos/Audio/Documents/Apps/GO state)
- createNamedFile helper: cordova-plugin-file clobbers global File

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-08 12:47:44 +00:00

31 lines
1.0 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Qortino golden Q&A set
High-value offline questions + reference answers used to:
1. Expand the RAG knowledge pack (`docs/faq/*.md`)
2. Power exact/fuzzy answer matching (`src/qortinoAgent/goldenAnswers.json`)
3. Evaluate retrieval quality (`node tools/qortino-knowledge/eval-golden.mjs`)
## Format (JSONL)
Each line:
```json
{"id":"qortal-001","category":"qortal","q":"What is Qortal?","aliases":["explain qortal"],"a":"...","priority":1}
```
- `priority`: 1 = must-get-right, 2 = important, 3 = nice-to-have
- Answers: offline-safe, metric, concise (26 sentences or short steps). No “search the web”.
## Categories
`qortal` · `programming` · `survival` · `health` · `gardening` · `life-skills` · `philosophy` · `earth-changes`
## Rebuild
```bash
node tools/qortino-knowledge/import-golden.mjs
node tools/qortino-knowledge/build-pack.mjs --out tools/qortino-knowledge/dist/qortino-knowledge-v2.json --version v2
cp tools/qortino-knowledge/dist/qortino-knowledge-v2.json src/qortinoAgent/bundledKnowledge.json
```