Ask Lore

Query Lore, the librarian agent, to search the owner's personal knowledge base. Use when looking up stored documents, personal records, insurance, manuals, notes, vehicles, or any "do I have a document about X?" type question.

FDU-INS 279de70 2 files · 3.5 KB Updated

File contents

ask-lore

Query Lore, the librarian agent, to search the owner's personal knowledge base.

When to Use

  • Looking up documents, files, or information the owner has stored
  • Questions about personal records, insurance, manuals, notes, vehicles, etc.
  • Any "do I have a document about X?" type query

How to Use

Run the query script:

python3 /home/fera/agents/main/workspace/.claude/skills/ask-lore/query_lore.py "your question here"

Or use it inline from Python:

import sys
sys.path.insert(0, '/home/fera/agents/main/workspace/.claude/skills/ask-lore')
from query_lore import query_lore
import asyncio

result = asyncio.run(query_lore("What insurance documents do we have?"))
print(result)

Notes

  • Lore runs as the librarian agent on the Fera gateway
  • She has access to the knowledge base at /home/fera/agents/librarian/knowledge/
  • The session is persistent (librarian/dm-fera) — she remembers conversation context within a session
  • Responses are streamed and collected; default timeout is 120s

FDU-INS/Insurance-Skills/tree/main/Skills/ask-lore commit 279de705af

Frequently asked questions

npx skillmds@latest add fdu-ins/ask-lore