Knowledge base¶
The knowledge base skill teaches the agent how to search and read TeskaLabs reference material without calling a live LogMan.io instance.
| Skill name | lmio-knowledge |
| Library path | /AI/Skills/lmio-knowledge/SKILL.md |
| Share | lmio-kb → mounted at /workspace/lmio-kb |
| Extra tool | share_search (activated with the skill) |
What it is for¶
Use this skill when the question is about product truth or shipped content:
- “How does X work in LogMan.io?”
- Configuration, architecture, and deployment topics from product documentation
- OpenAPI / API schema lookup before writing a live call
- “Is there already a correlation rule / parser / dashboard for Y?” against the Common Library snapshot
- Cross-checking behaviour against official reference material
The share is read-only for the agent.
Do not write into /workspace/lmio-kb.
What it is not for¶
| Need | Use instead |
|---|---|
| Live HTTP calls to an instance | lmio-rest-api |
| Query log/event data | lmio-query |
| Author or publish detection rules | lmio-detection-engineer |
| Tenant-specific memory / gotchas | facts |
| Personal research notes | llm-wiki |
How recall works¶
Activate the skill with library_read on /AI/Skills/lmio-knowledge/SKILL.md (that mounts lmio-kb).
Then prefer the lightest path that answers the question:
| When | How |
|---|---|
| Orient / find a path | read_file → /workspace/lmio-kb/index.zon (ZON catalogue of indexed content) |
| Unknown path, semantic or keyword search | share_search on share lmio-kb, then read_file the hit paths |
| Known file path | read_file or grep under /workspace/lmio-kb |
Useful share_search globs¶
| Glob | Content |
|---|---|
docs/**/*.md |
Product documentation |
docs/api/reference/openapi/* |
OpenAPI specs |
lmio-common-library/Correlations/**/*.yaml |
Correlation rules |
lmio-common-library/Parsers/** |
Parser pipelines |
lmio-common-library/Dashboards/** |
Dashboards |
lmio-common-library/** |
Any Common Library content |
Example — semantic search in documentation:
share_search
share: lmio-kb
similar: correlation rules
glob: docs/**/*.md
topk: 10
If the share is not indexed (missing .zvec), fall back to grep under /workspace/lmio-kb.
Do not invent documentation content.
Why this matters¶
lmio-kb keeps heavy reference material out of the system prompt and off the live cluster until needed.
The agent cites Library / knowledge-base paths, which matches how LogMan.io operators already reason about content.