reorg. destillation of oghma kownledge packs out of iris-dev

This commit is contained in:
2026-04-16 04:20:18 +02:00
parent e5e426e65c
commit ccb66d5a7d
33 changed files with 56197 additions and 6 deletions

View File

@@ -41,6 +41,7 @@ ingest = [
[project.scripts]
oghma-proxy = "oghma_proxy.main:main"
oghma-ingest = "oghma_proxy.ingest:main"
oghma-export-packs = "oghma_proxy.export_packs:main"
[tool.ruff]
line-length = 100

View File

@@ -0,0 +1,263 @@
"""Oghma Pack Exporter — materializes ChromaDB collections into SkyrimNet .sknpack files.
One pack per source category. Lore + basic entries merge into the same pack and are
distinguished by the `importance` field (lore=0.75, basic=0.40) so the model naturally
prefers the deeper entry when token budget allows. Visual descriptions export to a
separate single pack.
Produces packs matching SkyrimNet beta format_version=1.
"""
from __future__ import annotations
import argparse
import json
import re
import sys
from collections import defaultdict
from datetime import datetime, timezone
from pathlib import Path
import chromadb
import structlog
from chromadb.config import Settings
logger = structlog.get_logger()
PACK_FORMAT_VERSION = 1
PACK_VERSION = "1.0.0"
PACK_AUTHOR = "nimmerverse/oghma-proxy"
# importance grading per collection
IMPORTANCE_LORE = 0.75
IMPORTANCE_BASIC = 0.40
IMPORTANCE_VISUAL = 0.50
# map ChromaDB category → SkyrimNet entry type
TYPE_BY_CATEGORY = {
"spells": "SKILL",
}
def category_to_type(category: str) -> str:
if category in TYPE_BY_CATEGORY:
return TYPE_BY_CATEGORY[category]
if category.startswith("locations_"):
return "LOCATION"
return "KNOWLEDGE"
def category_to_location(category: str) -> str:
"""For locations_whiterun → 'Whiterun'. Else empty."""
if not category.startswith("locations_"):
return ""
hold = category[len("locations_"):]
if hold == "other":
return ""
return hold.replace("_", " ").title()
def category_to_pack_name(category: str) -> str:
"""figures_gods → 'Oghma - Figures & Gods'."""
pretty = {
"figures_gods": "Figures & Gods",
"armor_weapons": "Armor & Weapons",
"groups_lore": "Groups & Books",
}
if category in pretty:
return f"Oghma - {pretty[category]}"
if category.startswith("locations_"):
hold = category[len("locations_"):]
if hold == "other":
return "Oghma - Locations - Other"
return f"Oghma - Locations - {hold.replace('_', ' ').title()}"
return f"Oghma - {category.replace('_', ' ').title()}"
def pack_filename(pack_name: str) -> str:
"""Filesystem-safe filename matching SkyrimNet export style."""
safe = re.sub(r"[^\w\-\s]", "", pack_name)
safe = re.sub(r"\s+", "_", safe.strip())
return f"{safe}.sknpack"
def build_entry(
content: str,
topic: str,
category: str,
importance: float,
tags: list[str],
) -> dict:
return {
"always_inject": False,
"condition_expr": "",
"content": content,
"display_name": topic,
"emotion": "",
"importance": importance,
"location": category_to_location(category),
"tags": tags,
"type": category_to_type(category),
}
def build_pack(pack_name: str, description: str, entries: list[dict]) -> dict:
return {
"skyrimnet_knowledge_pack": {
"author": PACK_AUTHOR,
"description": description,
"entries": entries,
"entry_count": len(entries),
"exported_at": datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ"),
"format_version": PACK_FORMAT_VERSION,
"name": pack_name,
"npc_groups": [],
"version": PACK_VERSION,
}
}
def fetch_all(collection) -> tuple[list[str], list[dict]]:
"""Return (documents, metadatas) for every entry in the collection."""
result = collection.get(include=["documents", "metadatas"])
return result["documents"], result["metadatas"]
def export_oghma_packs(
chromadb_host: str,
chromadb_port: int,
output_dir: Path,
dry_run: bool = False,
) -> dict:
output_dir.mkdir(parents=True, exist_ok=True)
client = chromadb.HttpClient(
host=chromadb_host,
port=chromadb_port,
settings=Settings(anonymized_telemetry=False),
)
# category → list[entry] — lore + basic merge by category
by_category: dict[str, list[dict]] = defaultdict(list)
for coll_name, importance in (
("oghma_lore", IMPORTANCE_LORE),
("oghma_basic", IMPORTANCE_BASIC),
):
collection = client.get_collection(coll_name)
docs, metas = fetch_all(collection)
logger.info("Fetched collection", collection=coll_name, count=len(docs))
for doc, meta in zip(docs, metas):
category = meta.get("category", "uncategorized")
topic = meta.get("topic", "")
raw_tags = (meta.get("tags") or "").strip()
tag_list = [t.strip() for t in raw_tags.split(",") if t.strip()] if raw_tags else []
by_category[category].append(
build_entry(
content=doc,
topic=topic,
category=category,
importance=importance,
tags=tag_list,
)
)
stats = {"packs": 0, "entries": 0, "files": []}
for category, entries in sorted(by_category.items()):
pack_name = category_to_pack_name(category)
description = (
f"Tamrielic lore from CHIM's Oghma Infinium — {category.replace('_', ' ')}. "
f"Merges educated and common-knowledge entries graded by importance."
)
pack = build_pack(pack_name, description, entries)
fname = pack_filename(pack_name)
path = output_dir / fname
if not dry_run:
path.write_text(json.dumps(pack, indent=2, ensure_ascii=False))
stats["packs"] += 1
stats["entries"] += len(entries)
stats["files"].append(str(path))
logger.info("Wrote pack", file=fname, entries=len(entries), category=category)
# Visual descriptions — separate single pack, different source schema
visual = client.get_collection("oghma_visual")
vdocs, vmetas = fetch_all(visual)
logger.info("Fetched collection", collection="oghma_visual", count=len(vdocs))
visual_entries = []
for doc, meta in zip(vdocs, vmetas):
visual_entries.append(
{
"always_inject": False,
"condition_expr": "",
"content": doc,
"display_name": meta.get("name", ""),
"emotion": "",
"importance": IMPORTANCE_VISUAL,
"location": "",
"tags": [],
"type": "KNOWLEDGE",
}
)
visual_pack = build_pack(
"Oghma - Visual Descriptions",
"Visual descriptions for NPC perception (Omnisight) from CHIM's Oghma Infinium.",
visual_entries,
)
vpath = output_dir / "Oghma_-_Visual_Descriptions.sknpack"
if not dry_run:
vpath.write_text(json.dumps(visual_pack, indent=2, ensure_ascii=False))
stats["packs"] += 1
stats["entries"] += len(visual_entries)
stats["files"].append(str(vpath))
logger.info("Wrote pack", file=vpath.name, entries=len(visual_entries), category="visual")
return stats
def main() -> None:
parser = argparse.ArgumentParser(
description="Export ChromaDB Oghma collections into SkyrimNet .sknpack files"
)
parser.add_argument("--host", default="iris-dev.eachpath.local")
parser.add_argument("--port", type=int, default=35000)
parser.add_argument(
"--output-dir",
default="/home/dafit/nimmerverse/nimmersky/sknpack",
)
parser.add_argument("--dry-run", action="store_true")
args = parser.parse_args()
structlog.configure(
processors=[
structlog.stdlib.add_log_level,
structlog.processors.TimeStamper(fmt="iso"),
structlog.dev.ConsoleRenderer(),
],
)
try:
stats = export_oghma_packs(
chromadb_host=args.host,
chromadb_port=args.port,
output_dir=Path(args.output_dir),
dry_run=args.dry_run,
)
logger.info(
"Export complete",
packs=stats["packs"],
entries=stats["entries"],
output_dir=args.output_dir,
)
except Exception as e:
logger.error("Export failed", error=str(e))
sys.exit(1)
if __name__ == "__main__":
main()

View File

@@ -113,7 +113,31 @@ Note: Reference this knowledge naturally when relevant to the conversation. Do n
position=self.position,
)
else:
logger.warning("Could not find injection point", position=self.position)
seen_headers: list[str] = []
system_msg_count = 0
system_content_chars = 0
for msg in modified_messages:
if msg.get("role") == "system":
system_msg_count += 1
content = msg.get("content", "")
system_content_chars += len(content)
for line in content.splitlines():
stripped = line.strip()
if stripped.startswith("## "):
seen_headers.append(stripped)
if len(seen_headers) >= 20:
break
if len(seen_headers) >= 20:
break
logger.warning(
"Could not find injection point",
position=self.position,
npc_name=npc_profile.name,
system_messages=system_msg_count,
system_content_chars=system_content_chars,
seen_headers=seen_headers,
)
result = InjectionResult(
npc_profile=npc_profile,

View File

@@ -246,10 +246,15 @@ async def chat_completions(request: Request):
async def stream_upstream(url: str, headers: dict, body: dict):
"""Stream response from upstream."""
async with http_client.stream("POST", url, json=body, headers=headers) as response:
async for chunk in response.aiter_bytes():
yield chunk
"""Stream response from upstream with error handling."""
try:
async with http_client.stream("POST", url, json=body, headers=headers) as response:
async for chunk in response.aiter_bytes():
yield chunk
except httpx.ReadError as e:
logger.error("Upstream stream dropped", error=str(e))
except httpx.HTTPError as e:
logger.error("Upstream stream error", error=str(e))
@app.post("/v1/completions")

View File

@@ -4,4 +4,4 @@ cd /home/dafit/nimmerverse/nimmersky/oghma-proxy
Endpoints:
- http://localhost:8100/health - Health check
- http://localhost:8100/debug/rag - See recent RAG operations
- http://localhost:8100/v1/chat/completions - The proxy endpoint (point SkyrimNet here)
- http://127.0.0.1:8100/v1/chat/completions - The proxy endpoint (point SkyrimNet here)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,36 @@
{
"skyrimnet_knowledge_pack": {
"author": "nimmerverse/oghma-proxy",
"description": "Tamrielic lore from CHIM's Oghma Infinium — dynamic. Merges educated and common-knowledge entries graded by importance.",
"entries": [
{
"always_inject": false,
"condition_expr": "",
"content": "The Dark Brotherhood Sanctuary is a location west of Falkreath, nestled south of the Roadside Ruins in Falkreath Hold. Hidden beneath the road, it serves as an active base for the Dark Brotherhood and features a single zone known as the Dark Brotherhood Sanctuary. It has recently been destroyed by the Imperials.",
"display_name": "dark_brotherhood_sanctuary",
"emotion": "",
"importance": 0.75,
"location": "",
"tags": [],
"type": "KNOWLEDGE"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Dark Brotherhood Sanctuary is a located somwhere in Falkreath, but you do not know where exactly.You have heard rumors that they have recently been destroyed.",
"display_name": "dark_brotherhood_sanctuary",
"emotion": "",
"importance": 0.4,
"location": "",
"tags": [],
"type": "KNOWLEDGE"
}
],
"entry_count": 2,
"exported_at": "2026-04-13T19:15:54Z",
"format_version": 1,
"name": "Oghma - Dynamic",
"npc_groups": [],
"version": "1.0.0"
}
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,850 @@
{
"skyrimnet_knowledge_pack": {
"author": "nimmerverse/oghma-proxy",
"description": "Tamrielic lore from CHIM's Oghma Infinium — locations hjaalmarch. Merges educated and common-knowledge entries graded by importance.",
"entries": [
{
"always_inject": false,
"condition_expr": "",
"content": "Hjaalmarch is a hold in northern Skyrim, with its capital in Morthal, located east of Solitude and south of the Pale. Despite its proximity to Skyrim's capital, Hjaalmarch is remote and isolated, dominated by a vast, fog-shrouded swamp in the north and bordered by snowy mountains in the south. The ancient ruins of Labyrinthian block potential trade routes to Whiterun Hold, adding to its seclusion. It is ruled by Jarl Idgrod Ravencrone.\n\nHjaalmarchs salt marshes, stretching from Fort Snowhawk in the west to Ustengrav in the east, are rich in flora, including deathbell, swamp fungal pods, and giant lichen, as well as rare blue mountain flowers around Morthal. The swamps are teeming with dangerous creatures like frostbite spiders, trolls, and even chaurus, while mudcrabs, fish, and dragonflies populate the waterways. The southern regions are snowy and mountainous, with bears, sabre cats, and deer roaming the rugged terrain. A single paved road connects Dragon Bridge in the west to Morthal.",
"display_name": "hjaalmarch",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Morthal is a small city in northern Skyrim and the capital of Hjaalmarch, located on the southern edge of the Drajkmyr marsh. Initially aligned with the Empire, Jarl Idgrod Ravencrones mystical and reclusive nature has led to perceptions of her as an ineffective ruler. She often speaks of sensing larger forces at play, which has distanced her from her citizens, many of whom worry about the war bringing outsiders and prefer their isolated way of life.\n\nThe city is a humble settlement with little economic or strategic value, supported only by a small lumber mill, an apothecary (Thaumaturgist's Hut), and an inn (Moorside Inn). Morthals surroundings are often shrouded in thick fog, with twisted trees and glowing torches creating a haunting atmosphere. The swampy lands are rich in deathbells, swamp fungal pods, and giant lichen, but are also dangerous at night, with creatures such as trolls and occasionally chaurus lurking nearby.",
"display_name": "morthal",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Stonehills is a small mining settlement located east of Morthal and west of Dimhollow Crypt in Hjaalmarch. It serves as the encampment for workers at Rockwallow Mine, which is owned by Thane Bryling of Solitude. The mine is managed by Sorli the Builder and her husband, Pactur, who live in a house near the mine with their son, Sirgar.",
"display_name": "stonehills",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hjaalmarch Imperial Camp is an Imperial military encampment located south of Ustengrav and northwest of Stonehills in Hjaalmarch. Commanded by Legate Taurinus Duilis.",
"display_name": "hjaalmarch_imperial_camp",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hjaalmarch Stormcloak Camp is a Stormcloak military encampment located east of Ustengrav and west of Mzinchaleft in Hjaalmarch. The camp serves as a base of operations for the Stormcloaks in their campaign to gain control of the region.\n\nThe camp is typically commanded by Arrald Frozen-Heart.",
"display_name": "hjaalmarch_stormcloak_camp",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Robber's Gorge is a small bandit camp and cave located west-southwest of Morthal and east-northeast of Broken Tower Redoubt in Hjaalmarch. The camp spans a road connecting Rorikstead to Dragon Bridge, with a bridge controlled by the bandits crossing the River Hjaal.",
"display_name": "robber's_gorge",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Talking Stone Camp is a giant camp located northeast of Rorikstead and south of Orotheim in Hjaalmarch. The camp is home to giants and their mammoths, with the typical features of a giant camp, including a large bonfire and scattered mammoth bones.",
"display_name": "talking_stone_camp",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Abandoned Shack is an isolated house located east-southeast of Solitude in Hjaalmarch. It is the location where Dark Brotherhood iniates are taken to see if have the heart to kill",
"display_name": "abandoned_shack",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Crabber's Shanty is a small, run-down shack located on the banks of the River Hjaal, southwest of Morthal. This modest dwelling is home to a lone fisherman who makes a simple living by the water.",
"display_name": "crabber's_shanty",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Meeko's Shack is a dwelling located on the edge of the Hjaalmarch marshlands, west-northwest of Morthal and Fort Snowhawk. It sits a short distance from the road connecting Morthal to Dragon Bridge. It is rumored that the owner of the house, a Nord who you do not know the name of, has not been heard from in weeks.",
"display_name": "meeko's_shack",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Fort Snowhawk is a medium-sized fort located west of Morthal and south of The Apprentice Stone in Hjaalmarch. It has been taken over by necromancers.",
"display_name": "fort_snowhawk",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthal and north of Rannveig's Fast in Whiterun Hold. The pass is home to a frost troll and provides a treacherous but convenient shortcut through the mountainous terrain.",
"display_name": "north_cold_rock_pass",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthal and north of Rannveig's Fast in Whiterun Hold. The pass is home to a frost troll and provides a treacherous but convenient shortcut through the mountainous terrain.\"",
"display_name": "south_cold_rock_pass",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthal and north of Rannveig's Fast in Whiterun Hold. The pass is home to a frost troll and provides a treacherous but convenient shortcut through the mountainous terrain.\"",
"display_name": "cold_rock_pass",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Dead Men's Respite is a medium-sized Nordic ruin located southwest of Morthal in Hjaalmarch. The ruin is inhabited by draugr. It is rummored that the a Verse from the Poetic Edda is hidden somehwere in the ruin.",
"display_name": "dead_men's_respite",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Folgunthur is a medium-sized Nordic ruin located southeast of Solitude and west of the Abandoned Shack in Hjaalmarch. The ruin is inhabited by draugr.",
"display_name": "folgunthur",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Kjenstag Ruins is a small outdoor Nordic ruin located east-northeast of Morthal and southwest of the Hjaalmarch Stormcloak Camp in Hjaalmarch. The ruin features a circular layout with an arched entrance on its northern side.\n\nInside, a short central wall and an empty stone table suggest the ruins once served a ceremonial purpose.",
"display_name": "kjenstag_ruins",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Labyrinthian is a vast and ancient Nordic ruin located southeast of Morthal, situated in a mountain pass that connects Hjaalmarch and Whiterun Hold. Once the great city of Bromjunaar, the capital of the Dragon Cult, Labyrinthian was built during the Merethic Era as a temple to the dragons who ruled Skyrim at the time. Over centuries, the city grew into a thriving hub of power for the cult, where the highest-ranking Dragon Priests convened to govern. Following the defeat of the Dragon Cult during the Dragon War, Bromjunaar fell into ruin, leaving behind the eerie remnants of its past, including the famed Labyrinth.",
"display_name": "labyrinthian",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Lost Valkygg is a small Nordic ruin located northeast of Labyrinthian and west of Skyborn Altar in Hjaalmarch. The ruin is inhabited by draugr.",
"display_name": "lost_valkygg",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Rannveig's Fast is a small Nordic ruin located east-northeast of Rorikstead and south of Cold Rock Pass in Whiterun Hold. The ruin is shrouded in mystery.",
"display_name": "rannveig's_fast",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Ustengrav is a medium-sized Nordic ruin located northeast of Morthal and south of High Gate Ruins in Hjaalmarch. It is inhabited by a variety of foes, including bandits, warlocks, and draugr. It is rumored that the Horn of Jurgen Windcaller is located here.",
"display_name": "ustengrav",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Mzinchaleft is a medium-sized Dwarven ruin located southwest of Dawnstar and north of Frostmere Crypt in Hjaalmarch.",
"display_name": "mzinchaleft",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Brood Cavern is a small cave located southwest of Morthal and southeast of Dead Men's Respite in Hjaalmarch. The cavern is inhabited by dagnerous animals.",
"display_name": "brood_cavern",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Movarth's Lair is a small cave located north-northeast of Morthal and southwest of Ustengrav in Hjaalmarch. The lair is home to vampires led by Movarth Piquine and consists of a single zone.\n\nA winding path connects the cave to Morthal, making it accessible for adventurers investigating the vampire menace in the region.",
"display_name": "movarth's_lair",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Orotheim is a small cave located northeast of Rorikstead and southeast of Robber's Gorge in Hjaalmarch. The cave serves as a hideout for bandits who are intent on poaching mammoths.\n\nA rough path runs northwest from the River Hjaal, winding around the mountain to the cave entrance. Adventurers should beware of the numerous bear traps scattered along the approach.",
"display_name": "orotheim",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Forebears' Holdout is a small cave located southeast of Dragon Bridge in Haafingar. To find the entrance, follow the road south-southeast from Dragon Bridge into the surrounding wilderness.",
"display_name": "forebears'_holdout",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Wreck of the Icerunner is a location east of Solitude, where an Imperial ship has run aground. The ship was originally transporting passengers and cargo between Skyrim and Cyrodiil, there are rumors that a noteable imperial scholar, who you do not know the name of, was looking for a rare unkown artifact in Skyrim.",
"display_name": "wreck_of_the_icerunner",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Eldersblood Peak is a mountaintop dragon lair located south of Morthal and north-northeast of Rannveig's Fast in Hjaalmarch. To reach Eldersblood Peak from the north, travelers should take the main road south of Morthal, then look for a dirt path on the left that winds past an unmarked hunter's camp and North Cold Rock Pass.",
"display_name": "eldersblood_peak",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Skyborn Altar is a mountaintop dragon lair located east-southeast of Morthal and south of Stonehills in Hjaalmarch. The path to the altar can be accessed from the south by traveling between Silent Moons Camp and Dustman's Cairn, with a dirt path marked by two stone bird heads flanking the base of stone steps leading up the mountain.",
"display_name": "skyborn_altar",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Apprentice Stone is one of the thirteen Standing Stones scattered across Skyrim, located on an island in the marsh, just north of Fort Snowhawk and west-northwest of Morthal in Hjaalmarch. When activated, the Apprentice Stone increases magicka regeneration by a large amount but also makes the user more susceptible to magicka damage by an equally large amount, making it a powerful but risky boon for magic users.\n\nThe stone is set in a typical Standing Stone arrangement on the northeast end of a small marsh archipelago, surrounded by common marsh plants, including deathbell plants and swamp fungal pods. A nirnroot can also be found on the shoreline southeast of the stone, adding a touch of rare flora to the mystical and dangerous environment of the area.",
"display_name": "the_apprentice_stone",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Lord Stone is one of the thirteen Standing Stones scattered across Skyrim, located east of Morthal and northeast of the Shrine of Mehrunes Dagon in Hjaalmarch. When activated, the Lord Stone grants a moderate boost to your armor rating and a decent amount of magic resistance, making it easier to reach the armor and magic resistance caps. While it offers less defense than the Atronach Stone, it has no associated penalty, making it a more balanced defensive option.\n\nThe stone itself is perched atop a stone base, flanked by the remains of large arches. To reach the Lord Stone, follow the path that leads past the Shrine of Mehrunes Dagon, which begins to the west of the Hall of the Vigilant. The route is marked by several piles of rocks, some with remnants of banners flapping in the wind. After passing Dimhollow Crypt, ascend a flight of stone steps leading up to the shrine, then turn northeast to find the Lord Stone atop a nearby hill.",
"display_name": "the_lord_stone",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Alva's House is a small residence located in Morthal, home to Alva and her husband, Hroggar. The house is situated along the jetty, just next to the Guardhouse.",
"display_name": "alva's_house",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Falion's House is the residence and shop of the town wizard, Falion, in Morthal. Located along the jetty, it sits behind the Thaumaturgist's Hut and is situated on the edge of the water, just a short distance from Alva's house. Falion lives there with his child apprentice, Agni.",
"display_name": "falion's_house",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Highmoon Hall is the residence of Idgrod Ravencrone, the Jarl of Hjaalmarch, located in the town of Morthal. This grand hall serves as the administrative center for the region, where Jarl Idgrod Ravencrone oversees the affairs of her hold.\n\nThe hall is also home to several key figures in Hjaalmarch's governance, including Aslfur, the steward, Legate Taurinus Duilis, the military advisor, and Gorm, the housecarl. Despite Jarl Idgrods reclusive nature and mystical tendencies, Highmoon Hall remains a focal point for the people of Morthal and the surrounding areas.",
"display_name": "highmoon_hall",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Jorgen and Lami's House is a modest, one-room cottage located on the outskirts of Morthal, across from the town's lumber mill. The house is home to Jorgen, a Nord lumberjack, and his wife Lami, who runs the Thaumaturgist's Hut in Morthal as the town's apothecary.",
"display_name": "jorgen_and_lami's_house",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Moorside Inn is the inn in Morthal, owned and operated by Jonna. Located in the heart of the town. Lurbuk serves as the inn's bard, though his performances are not particularly well-received, and business at the inn seems slow. Jonna often mentions that the front door sees little traffic.",
"display_name": "moorside_inn",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Thaumaturgist's Hut is an alchemy shop located across from Highmoon Hall in Morthal. The shop is run by Lami, who manages the business during normal hours from 8 AM to 8 PM.",
"display_name": "thaumaturgist's_hut",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Thonnir's House is the residence of Thonnir and his son Virkmund, located in Morthal. Thonnir, a Nord lumberjack, lives with his son, who is a young child.",
"display_name": "thonnir's_house",
"emotion": "",
"importance": 0.75,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hjaalmarch is a hold in northern Skyrim, with its capital in Morthal, located east of Solitude and south of the Pale. Despite its proximity to Skyrim's capital, Hjaalmarch is remote and isolated, dominated by a vast, fog-shrouded swamp in the north and bordered by snowy mountains in the south. The ancient ruins of Labyrinthian block potential trade routes to Whiterun Hold, adding to its seclusion. It is ruled by Jarl Idgrod Ravencrone.\n\nHjaalmarchs salt marshes, stretching from Fort Snowhawk in the west to Ustengrav in the east, are rich in flora.",
"display_name": "hjaalmarch",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Morthal is a small city in northern Skyrim and the capital of Hjaalmarch, located on the southern edge of the Drajkmyr marsh. Initially aligned with the Empire, Jarl Idgrod Ravencrones mystical and reclusive nature has led to perceptions of her as an ineffective ruler. \n\nThe city is a humble settlement with little economic or strategic value, supported only by a small lumber mill, an apothecary (Thaumaturgist's Hut), and an inn (Moorside Inn). Morthals surroundings are often shrouded in thick fog, with twisted trees and glowing torches creating a haunting atmosphere. The swampy lands are rich in deathbells, swamp fungal pods, and giant lichen, but are also dangerous at night, with creatures such as trolls and occasionally chaurus lurking nearby.",
"display_name": "morthal",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Stonehills is a small mining settlement located east of Morthal.You do not know anything else about this area.",
"display_name": "stonehills",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hjaalmarch Imperial Camp is an Imperial military encampment located southeast of Morthal.You do not know anything else about this area.",
"display_name": "hjaalmarch_imperial_camp",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hjaalmarch Stormcloak Camp is a Stormcloak military encampment located east of Morthal in Hjaalmarch.You do not know anything else about this area.",
"display_name": "hjaalmarch_stormcloak_camp",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Robber's Gorge is a small bandit camp and cave located west-southwest of Morthal in Hjaalmarch.You do not know anything else about this area.",
"display_name": "robber's_gorge",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Talking Stone Camp is a giant camp located northeast of Rorikstead in Hjaalmarch.You do not know anything else about this area.",
"display_name": "talking_stone_camp",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Abandoned Shack is an isolated house located east-southeast of Solitude in Hjaalmarch. No one really knows who the shack belonged to, or what purpose it had. However it is rumored to be haunted and best stayed away from.You do not know anything else about this area.",
"display_name": "abandoned_shack",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Crabber's Shanty is a small, run-down shack located on the banks of the River Hjaal, southwest of Morthal.You do not know anything else about this area.",
"display_name": "crabber's_shanty",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Meeko's Shack is a dwelling located on the edge of the Hjaalmarch marshlands, west-northwest of Morthal. You do not know anything else about this area.",
"display_name": "meeko's_shack",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Fort Snowhawk is a medium-sized fort located west of Morthal.You do not know anything else about this area.",
"display_name": "fort_snowhawk",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthalin Whiterun Hold. You do not know anything else about this area.",
"display_name": "north_cold_rock_pass",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthalin Whiterun Hold. You do not know anything else about this area.",
"display_name": "south_cold_rock_pass",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Cold Rock Pass is a small mountain passage located south-southwest of Morthalin Whiterun Hold. You do not know anything else about this area.",
"display_name": "cold_rock_pass",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Dead Men's Respite is a medium-sized Nordic ruin located southwest of Morthal in Hjaalmarch.You do not know anything else about this area.",
"display_name": "dead_men's_respite",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Folgunthur is a medium-sized Nordic ruin located southeast of Solitude and west of the Abandoned Shack in Hjaalmarch. You do not know anything else about this area.",
"display_name": "folgunthur",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Kjenstag Ruins is a small outdoor Nordic ruin located east-northeast of Morthal in Hjaalmarch. You do not know anything else about this area.",
"display_name": "kjenstag_ruins",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Labyrinthian is a vast and ancient Nordic ruin located southeast of Morthal, situated in a mountain pass that connects Hjaalmarch and Whiterun Hold. It used to be a mighty city a long time ago under the rule of the Dragon cult.You do not know anything else about this area.",
"display_name": "labyrinthian",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Lost Valkygg is a small Nordic ruin located northeast of Labyrinthi in Hjaalmarch.You do not know anything else about this area.",
"display_name": "lost_valkygg",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Rannveig's Fast is a small Nordic ruin located east-northeast of Rorikstead in Whiterun Hold. You do not know anything else about this area.",
"display_name": "rannveig's_fast",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Ustengrav is a medium-sized Nordic ruin located northeast of Morthal and south in Hjaalmarch.You do not know anything else about this area.",
"display_name": "ustengrav",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Mzinchaleft is a medium-sized Dwarven ruin located southwest of Dawnstar and north of Frostmere Crypt in Hjaalmarch.You do not know anything else about this area.",
"display_name": "mzinchaleft",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Brood Cavern is a small cave located southwest of Morthal in HjaalmarchYou do not know anything else about this area.",
"display_name": "brood_cavern",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Movarth's Lair is a small cave located north-northeast of Morthal.You do not know anything else about this area.",
"display_name": "movarth's_lair",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Orotheim is a small cave located northeast of Rorikstead in Hjaalmarch. You do not know anything else about this area.",
"display_name": "orotheim",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Forebears' Holdout is a small cave located southeast of Dragon Bridge in Haafingar.You do not know anything else about this area.",
"display_name": "forebears'_holdout",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Wreck of the Icerunner is a location east of Solitude, where an Imperial ship has run aground. The ship was originally transporting passengers and cargo between Skyrim and Cyrodiil, there are rumors that a noteable imperial scholar, who you do not know the name of, was looking for a rare unkown artifact in Skyrim.You do not know anything else about this area.",
"display_name": "wreck_of_the_icerunner",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Eldersblood Peak is a mountaintop dragon lair located south of Morthal in Hjaalmarch.You do not know anything else about this area.",
"display_name": "eldersblood_peak",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Skyborn Altar is a mountaintop dragon lair located east-southeast of Morthal and in Hjaalmarch. You do not know anything else about this area.",
"display_name": "skyborn_altar",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Apprentice Stone is one of the thirteen Standing Stones scattered across Skyrim, located on an island in the marsh, just west-northwest of Morthal in Hjaalmarch. When activated, the Apprentice Stone increases magicka regeneration by a large amount but also makes the user more susceptible to magicka damage by an equally large amount, making it a powerful but risky boon for magic users.You do not know anything else about this area.",
"display_name": "the_apprentice_stone",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Lord Stone is one of the thirteen Standing Stones scattered across Skyrim, located east of Morthal in Hjaalmarch. When activated, the Lord Stone grants a moderate boost to your armor rating and a decent amount of magic resistance, making it easier to reach the armor and magic resistance caps. While it offers less defense than the Atronach Stone, it has no associated penalty, making it a more balanced defensive option.You do not know anything else about this area.",
"display_name": "the_lord_stone",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Alva's House is a small residence located in Morthal, home to Alva, who you do not know.You do not know anything else about this area.",
"display_name": "alva's_house",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Falion's House is the residence in Morthal. You do not know who Falion is.You do not know anything else about this area.",
"display_name": "falion's_house",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Highmoon Hall is the residence of Idgrod Ravencrone, the Jarl of Hjaalmarch, located in the town of Morthal. This grand hall serves as the administrative center for the region, where Jarl Idgrod Ravencrone oversees the affairs of her hold. You do not know any of the other servants who work here.\nYou do not know anything else about this area.",
"display_name": "highmoon_hall",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Jorgen and Lami's House is located in Morthal. You do not know the occupents of the house.You do not know anything else about this area.",
"display_name": "jorgen_and_lami's_house",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Moorside Inn is the inn in Morthal. You do not know who runs the Inn.You do not know anything else about this area.",
"display_name": "moorside_inn",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Thaumaturgist's Hut is an alchemy shop located in Morthal. You do not know who runs the shop.You do not know anything else about this area.",
"display_name": "thaumaturgist's_hut",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Thonnir's House is the residence of Thonnir located in Morthal. You do not know who Thonnir is.You do not know anything else about this area.",
"display_name": "thonnir's_house",
"emotion": "",
"importance": 0.4,
"location": "Hjaalmarch",
"tags": [],
"type": "LOCATION"
}
],
"entry_count": 76,
"exported_at": "2026-04-13T19:15:54Z",
"format_version": 1,
"name": "Oghma - Locations - Hjaalmarch",
"npc_groups": [],
"version": "1.0.0"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,872 @@
{
"skyrimnet_knowledge_pack": {
"author": "nimmerverse/oghma-proxy",
"description": "Tamrielic lore from CHIM's Oghma Infinium — locations winterhold. Merges educated and common-knowledge entries graded by importance.",
"entries": [
{
"always_inject": false,
"condition_expr": "",
"content": "Winterhold is a hold in northeast Skyrim, with its capital in the city of Winterhold, located on the Sea of Ghosts coast. The city is aligned with the Stormcloaks under Jarl Korir. Winterhold is the northernmost hold in Skyrim, with harsh weather and bleak landscapes, bordered by Eastmarch to the southeast, the Pale to the south and west, and the Sea of Ghosts to the north. The region is primarily composed of barren tundra, snowy mountains, and rocky coastlines.\n\nOnce a prosperous and vibrant city, Winterhold was devastated in the Great Collapse of 4E 122, in which most of the city was swallowed by the Sea of Ghosts. Today, only a few buildings remain standing near the College of Winterhold, which miraculously survived. The College, a fortress-like institution for mages, is perched on a rocky outcropping, sparking rumors among locals that its magical experiments caused the city's destruction. Despite this, the College maintains that the event was a result of the earthquake in Vivec and the eruption of Red Mountain in Morrowind. The remaining residents can be found at The Frozen Hearth, where they often drown their sorrows. The sparse wildlife of Winterhold includes wolves, snow bears, and the occasional ice wraith, with little plant life beyond snowberry bushes and mountain flowers. The hold is traversed by a single main road leading to the city, with another path leading to the ancient ruins of Saarthal.",
"display_name": "winterhold",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The College of Winterhold is a renowned school for magic located in the city of Winterhold, perched on a rocky outcrop, and reachable only by crossing a narrow stone bridge after the Great Collapse. Though it functions similarly to the Mages Guild, the College is an independent institution, separate from the Guild, and has a storied history dating back to the First Era. It is believed to have been founded by the legendary mage Shalidor, though this claim, like many others associated with him, is shrouded in mystery. The College boasts documents from as far back as the late Second Era and houses some of Tamriel's most valuable arcane knowledge.\n\nA selective institution, the College admits only those who prove their aptitude in the magical arts. Once enrolled, students enjoy greater freedom in their studies, including the practice of controversial magic such as Necromancy. The College's central building, the Hall of the Elements, serves as the site for all types of magical practice and contains the famous Arcanaeum library. The Arch-Mages quarters are located within, while students and faculty are housed in separate accommodations. Beneath the College lies the Midden, a mysterious underground area that holds many of the College's secrets. The Eye of Shalidor, a symbol of the institution, is displayed prominently across the campus, honoring the College's ancient roots.\n\nNotable residents of the College include the Arch-Mage Savos Aren, Master-Wizard Mirabelle Ervine, and various experts and trainers in different magical disciplines, including Faralda (Destruction), Tolfdir (Alteration), and Phinis Gestor (Conjuration). The College also hosts a range of followers, such as Brelyna Maryon and J'zargo, alongside other figures like Enthir, a general goods vendor, and the enigmatic Ancano, a Thalmor advisor.",
"display_name": "college_of_winterhold",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Hall of Countenance serves as the primary living and sleeping quarters for many of the higher-ranked mages at the College of Winterhold. Located within this hall are the personal cubicles and beds of notable mages, including Drevis Neloren, the master trainer of Illusion, and Faralda, the master trainer of Destruction. Along with the Hall of Attainment, it is one of the two main sleeping areas for students and faculty at the College.\n\nThe hall contains several notable features: a trapdoor leading to the Midden, the underground area housing some of the College's deepest secrets, as well as an arcane enchanter and an alchemy lab on the upper floor. Drevis Nelorens bedroom on the lower floor also holds an alchemy lab, allowing for easy access to alchemical experimentation. The upper floor is home to Colette Marence, a Restoration expert, and Sergius Turrianus, an expert in Enchanting, both of whom also provide their respective magical training to students.",
"display_name": "hall_of_countenance",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Hall of Attainment is the primary sleeping quarters for students at the College of Winterhold, housing many of the College's aspiring mages. Alongside the Hall of Countenance, it is one of the two main dormitory halls at the College. The hall provides living spaces for students who are further along in their magical training.\n\nOn the ground floor, students such as Brelyna Maryon, J'zargo, and Onmund can be found, alongside Tolfdir, the master trainer of Alteration. The upper floor is home to several notable figures, including Arniel Gane, a mysterious mage with his own secrets, Enthir, a general goods vendor and fence, and Mirabelle Ervine, the Colleges Master-Wizard. Nirya, another resident, is also found on the upper floor.",
"display_name": "hall_of_attainment",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Hall of the Elements is a grand training and meeting space within the College of Winterhold, designed for the study and practice of magical arts. This large, circular room is used not only for spell casting training but also for classes, lectures, and official meetings among the College's faculty and students. A pair of massive wooden doors serve as the main entrance, leading into an antechamber. From there, one can access the Arch-Mage's Quarters to the northwest or the Arcanaeum, the Colleges renowned library, to the southeast.\n\nThe hall itself boasts a high ceiling supported by a ring of imposing pillars, with a series of wooden benches surrounding the perimeter for seating. Small light spheres are placed between every two benches, illuminating the room with a soft glow. At the center of the hall is a powerful focus point, where magical energy rises upward toward the ceiling, acting as a visual representation of the Colleges profound connection to the arcane. The College symbol is intricately worked into the design of the gates, further emphasizing the importance of this space within the institution.",
"display_name": "hall_of_the_elements",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Midden is a medium-sized dungeon located beneath the College of Winterhold, housing both the Atronach Forge and the mysterious Augur of Dunlain, a former mage of the College. The dungeon is a place of arcane secrets, filled with ancient magic and hidden knowledge.\n\nThere are three entrances to the Midden: a trapdoor located in the northern corner of the College courtyard, another at the base of the stairwell in the Hall of Countenance, and a hidden cave in the northern face of the rocky outcropping where the College is situated. The Augur of Dunlain, a spectral figure, resides in the depths of the Midden.",
"display_name": "the_midden",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Whistling Mine is a small iron mine and settlement located southeast of Winterhold, along the southern road that connects Winterhold to Windhelm, at the base of the mountains. The mine is nestled near the northern edge of Stillborn Cave. The settlement is home to a handful of Nord warriors who are trying to make a living through mining, though they face the harsh conditions of the region.\n\nAmong the residents are Angvid, Badnir, Gunding, and Horgar—each Nords attempting to carve out a livelihood in the tough and unforgiving environment of Whistling Mine. The mine itself serves as a modest source of iron, though the locals' struggles to thrive in the area highlight the challenges posed by the surrounding terrain and climate.",
"display_name": "whistling_mine",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Winterhold Imperial Camp is an Imperial outpost located in Winterhold Hold, positioned southeast of Dawnstar and northwest of Frostflow Lighthouse. The camp serves as a strategic base for the Imperials in the region, providing support and defense in this distant part of Skyrim.\n\nAt the heart of the camp is Legate Sevan Telendas, a high-ranking Imperial officer who oversees the operations and maintains order within the camp.",
"display_name": "winterhold_imperial_camp",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Winterhold Stormcloak Camp is a Stormcloak encampment located in Winterhold Hold, situated northeast of Windhelm and south of Snow Veil Sanctum. The camp serves as a base of operations for the Stormcloaks in this northern region of Skyrim, where they continue their fight for independence against the Imperial forces.\n\nThe camp is led by Commander Kai Wet-Pommel, a determined and battle-hardened Stormcloak officer.",
"display_name": "winterhold_stormcloak_camp",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Driftshade Refuge is a medium-sized fort located southeast of Dawnstar and southwest of Frostflow Lighthouse in the Winterhold region. The fort, now largely dilapidated and nearly lost beneath heavy snowdrifts, serves as the base of operations for the Silver Hand, a notorious group of werewolf hunters. Its remote location in the mountains, along with its near-erasure from local memory, makes it an ideal hideout for the groups clandestine activities.\n\nOnce a much larger and more imposing structure, Driftshade Refuge still bears the remnants of its former grandeur, with broken walls scattered a short distance from the only remaining intact building.",
"display_name": "driftshade_refuge",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Fort Fellhammer is a medium-sized fort and iron mine located south of Dawnstar, in the Winterhold region. It sits off the paved road that leads southwest to Fort Dunstad, near the point where the road turns east after passing Red Road Pass. A dirt path branches off from the road at this turn, leading eastward to the fort.\n\nOnce a strategic military outpost, the fort is now occupied by a group of bandits who have taken over the iron mine and its surrounding area. These bandits use the fort as a hideout.",
"display_name": "fort_fellhammer",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Fort Kastav is a medium-sized fort located south of Winterhold, situated in a mountain pass that spans almost the entire width of the pass, leaving just enough room for the Whiterun-Winterhold road to pass through. The forts impressive exterior takes full advantage of the natural features of the mountain, featuring numerous lookout platforms and an extensive ramp system for easy access to its high walls.\n\nOnce occupied by warlocks, the fort is now overrun by skeletons who patrol its walls and grounds. These undead guardians make the fort a dangerous place for any who dare approach.",
"display_name": "fort_kastav",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Snowpoint Beacon is a small tower located southwest of Winterhold, in the Winterhold region, and east of Fort Fellhammer. The tower is perched on a rocky outcrop, and its main path approaches from the north, where stone steps lead up to a doorway. The tower has been taken over by bandits, who use it as a base of operations, making it a dangerous location for travelers.\n\nThe tower itself, though small, is strategically placed, offering a commanding view of the surrounding area.",
"display_name": "snowpoint_beacon",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Ironbind Barrow is a small Nordic ruin located southwest of Winterhold, north of Nightgate Inn. This ancient tomb is home to draugr, the undead guardians of Nordic burial sites, and serves as the resting place for the powerful Warlord Gathrik. The ruin is largely forgotten, hidden in the wilderness and surrounded by the harsh environment of Skyrims northern reaches.\n\nThe tomb itself contains the remains of Warlord Gathrik, a once-great warrior, whose spirit still lingers to protect the barrow from intruders.",
"display_name": "ironbind_barrow",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Saarthal is a medium-sized Nordic ruin located southwest of Winterhold. As the first Nord settlement in Skyrim, Saarthal holds significant historical and archaeological value, particularly to the College of Winterhold, who is actively excavating the site in search of ancient artifacts. The ruins are believed to have a deeper significance, potentially tied to a powerful past.\n\nThe original settlement of Saarthal was destroyed during the Merethic Era in an event known as the Night of Tears, where elves launched a brutal attack on the city. The incident, as detailed in the book Night of Tears, suggests that the elven assault was driven by a desire to control a powerful item hidden beneath the city.",
"display_name": "saarthal",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Snow Veil Sanctum is a medium-sized Nordic ruin located north-northeast of Windhelm, in the Winterhold region, and south of Bleakcoast Cave. The ruin is home to draugr, the ancient undead guardians that protect Nordic tombs, making it a dangerous and foreboding site for any who dare enter.",
"display_name": "snow_veil_sanctum",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Ysgramor's Tomb is a small Nordic ruin located northwest of Winterhold, in the Winterhold region, and east of Pilgrim's Trench. The tomb is the final resting place of Ysgramor, a legendary figure known as Ysgramor the Invader, or \"the harbinger of us all.\" Ysgramor was an Atmoran who fled civil war in Atmora and arrived in Tamriel long before recorded history. He is often regarded as the first human ruler and king of Skyrim, playing a foundational role in the region's history.\n\nThe tomb is a place of great significance, tied to the origins of Skyrim and the early history of the Nords. As a revered figure, Ysgramor's legacy lives on, and his tomb is a site of both reverence and mystery.",
"display_name": "ysgramor's_tomb",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Journeyman's Nook is a small outdoor Nordic ruin located southeast of Winterhold, in the Winterhold region, and northwest of Snow Veil Sanctum. Despite its modest size, the ruin is home to a bandit who has taken shelter within its crumbling walls, using it as a hideout.\n\nThe site is relatively isolated, set against the harsh northern landscape, making it a perfect place for the bandit to remain hidden from the law.",
"display_name": "journeyman's_nook",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Skytemple Ruins is a small outdoor Nordic ruin located north of the College of Winterhold, in the Winterhold region, and east of Ysgramor's Tomb. The ruins are perched atop a large glacial mound on an island off the northern coast of Skyrim, offering a dramatic and isolated setting.\n\nThe sparse remains of the temple are home to draugr and skeletons, the undead guardians of the site, making it a dangerous location for those who venture into its depths.",
"display_name": "skytemple_ruins",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Alftand is a large Dwarven ruin located southwest of Winterhold, in the Winterhold region, and east of Driftshade Refuge. This ancient and sprawling ruin is one of many remnants of the Dwarven civilization, now abandoned and overrun by various dangerous creatures.\n\nThe ruin is filled with the remnants of Dwarven architecture and technology, showcasing the advanced craftsmanship of the long-lost Dwemer.",
"display_name": "alftand",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Shrine of Azura is a massive sacred site dedicated to Azura, the Daedric Prince of Dawn and Dusk. It is located south of Winterhold, perched atop the summit of a tall mountain. The path leading to the shrine is found not far south of Whistling Mine, where it rises sharply to the west. To reach the shrine, travelers must head southeast along the path from Winterhold, heading in the direction of Windhelm. On clear days one can enjoy sweeping views from the summit, with expansive vistas stretching in all directions.\n\nThe shrine itself is situated atop a stone fort-like structure, believed to have been built by the Dunmer, who revere Azura. A massive statue of Azura dominates the site, with an altar positioned in front of it. Aranea Ienith, a devout worshiper of Azura, spends her time at the altar, offering prayers when she is not following you. To the right of the altar, a small camp lies below on a lower level.",
"display_name": "shrine_of_azura",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Bleakcoast Cave is a small cave located southeast of Winterhold, directly east of the Shrine of Azura, in the Winterhold region. The cave is home to a number of frost trolls, making it a dangerous location for adventurers who may venture inside.",
"display_name": "bleakcoast_cave",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Yngvild is a medium-sized cave located east-northeast of Dawnstar, in the Winterhold region, and south-southeast of Hela's Folly. The cave is home to draugr, the undead guardians that protect ancient Nordic tombs, making it a perilous site for adventurers.",
"display_name": "yngvild",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hob's Fall Cave is a small cave located along the coast between Winterhold and Dawnstar, in the Winterhold region. The cave is relatively isolated, nestled within the rugged coastal landscape. It is rumored that warlocks have taken over the cave.",
"display_name": "hob's_fall_cave",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Septimus Signus's Outpost is a small cave located north of the College of Winterhold, in the Winterhold region, and northeast of Ysgramor's Tomb. This remote and secluded outpost serves as the residence of Septimus Signus, a reclusive and eccentric scholar of the Dwemer and their ancient knowledge.\n\nThe outpost consists of a single zone, known as Septimus Signus's Outpost, where the scholar conducts his studies on the enigmatic Dwemer and their lost artifacts.",
"display_name": "septimus_signus's_outpost",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Stillborn Cave is a small cave located north-northwest of Windhelm, across the mountains from the city in the Winterhold region. The cave is inhabited by falmer, the twisted, blind, subterranean elves, making it a dangerous location for anyone who ventures inside. \n\nThe entrance to the cave leads into an ice tunnel that stretches southward, with the path soon turning west. As the tunnel continues, an ice melt runoff creates a rapid stream flowing from east to west, cutting through the cave.",
"display_name": "stillborn_cave",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Sightless Pit is a medium-sized cave located south-southwest of Winterhold, in the Winterhold region, and south-southeast of Saarthal. The cave is inhabited by Falmer, the blind and hostile subterranean elves, who make their homes in dark and forsaken places like this one.",
"display_name": "sightless_pit",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hela's Folly is a shipwreck located northeast of Dawnstar, in the Winterhold region, and northwest of The Tower Stone. The wreck lies along the rugged coast, adding to the eerie and desolate landscape of the area. The ship's remains are a stark reminder of the dangerous waters off Skyrim's northern coast. There are rumors of an Argonian who have taken refugee there.",
"display_name": "hela's_folly",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Wreck of The Pride of Tel Vos is a shipwreck located on a small island east of Winterhold, due east of the city. The wreck is home to a small group of bandits who have set up camp around the ruined vessel, using it as their hideout.",
"display_name": "wreck_of_the_pride_of_tel_vos",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Wreck of the Winter War is a shipwreck located east-southeast of Snow Veil Sanctum and far northeast of Windhelm, in the Winterhold region. The wreck lies along the rugged and icy coastline, a remnant of a tragic event lost to time. The area is remote, with few travelers daring to approach the wreck due to its harsh environment and the treacherous terrain surrounding it. Situated between Yngol Barrow to the southwest and Snow Veil Sanctum to the northwest, the wreck serves as a mysterious and eerie landmark in the region.",
"display_name": "wreck_of_the_winter_war",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Pilgrim's Trench is a deep underwater ravine located northwest of Winterhold, along the coast. The trench is known for containing four submerged shipwrecks, remnants of vessels that met their untimely end in the treacherous waters of the Sea of Ghosts. It is recommended to bring an underwater breathing potion if you wish to explore the wrecks.",
"display_name": "pilgrim's_trench",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Mount Anthor is a dragon lair located on a mountaintop south-southwest of Winterhold, in the Winterhold region. The lair is perched high on the mountain, offering a commanding view of the surrounding landscape. It lies north of Yorgrim Overlook, making it accessible through the rugged terrain of the region.",
"display_name": "mount_anthor",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Serpent Stone is one of the thirteen Standing Stones scattered across Skyrim, located directly east of the College of Winterhold and northeast of the Wreck of The Pride of Tel Vos, on a small island.\n\nWhen activated, the Serpent Stone grants the player the ability to use a ranged attack that paralyzes a target for a few seconds while dealing damage. The effect is powerful and useful, particularly for disabling enemies from a distance.",
"display_name": "the_serpent_stone",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Tower Stone is one of the thirteen Standing Stones scattered across Skyrim, located about halfway between Dawnstar and Winterhold, on a high snow-covered cliff north-northeast of Hob's Fall Cave.\n\nWhen activated, the Tower Stone grants the person the ability to automatically open an Expert-level or lower lock once per day.",
"display_name": "the_tower_stone",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Frostflow Lighthouse is a lighthouse located west of Winterhold, on the northern coast of Skyrim. It sits on a headland, offering a commanding view of the coastline between Dawnstar and Winterhold. The lighthouse is home to a Redguard family who recently purchased it, you do not know their names. However they have not been seen from in weeks.",
"display_name": "frostflow_lighthouse",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Wayward Pass is a mountain pass located in the southwest of Winterhold, nestled between the ancient Dwarven ruin of Alftand and Nightgate Inn. The pass is known for being the resting place of an ancient traveler, whose tomb is marked by a shrine to Arkay, the God of Life and Death.",
"display_name": "wayward_pass",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Birna's Oddments is a general goods store located in the heart of Winterhold, nestled between the Jarl's Longhouse and Kraldar's House. This two-story building is run by Birna, a Nord pawnbroker known for her wide range of goods, from mundane items to rare treasures.\n\nBirna lives in the store with her brother, Ranmir, a troubled Nord citizen of Winterhold. While Birna focuses on her business, Ranmir spends much of his time drinking away his sorrows in The Frozen Hearth, the local tavern.",
"display_name": "birna's_oddments",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Kraldar's House is located in Winterhold, situated as the last building on the left before the bridge leading to the College of Winterhold. The house serves as the residence of Kraldar, a local figure, and his manservant, Thonjolf.",
"display_name": "kraldar's_house",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Frozen Hearth is a cozy inn located in the heart of Winterhold, one of the few inhabited buildings left in the city. Situated directly across the street from the Jarl's Longhouse, it serves as a central gathering point for the remaining residents of Winterhold, offering a warm respite from the harsh northern climate.\n\nThe inn is run by Dagur, a Nord innkeeper, alongside his wife Haran, who operates a food stall in the town. Together, they manage The Frozen Hearth, providing food, drink, and shelter to the people of Winterhold. Their daughter, Eirid, also resides in the inn, with her parents working together to maintain the establishment and serve the few souls left in the dwindling city.",
"display_name": "the_frozen_hearth",
"emotion": "",
"importance": 0.75,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Winterhold is a hold in northeast Skyrim, with its capital in the city of Winterhold, located on the Sea of Ghosts coast. The city is aligned with the Stormcloaks under Jarl Korir. Winterhold is the northernmost hold in Skyrim, with harsh weather and bleak landscapes, bordered by Eastmarch to the southeast, the Pale to the south and west, and the Sea of Ghosts to the north. The region is primarily composed of barren tundra, snowy mountains, and rocky coastlines.\n\nOnce a prosperous and vibrant city, Winterhold was devastated in the Great Collapse of 4E 122, in which most of the city was swallowed by the Sea of Ghosts. Today, only a few buildings remain standing near the College of Winterhold, which miraculously survived. The College, a fortress-like institution for mages, is perched on a rocky outcropping, sparking rumors among locals that its magical experiments caused the city's destruction. The hold is traversed by a single main road leading to the city, with another path leading to the ancient ruins of Saarthal.You do not know anything else about this area.",
"display_name": "winterhold",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The College of Winterhold is a renowned school for magic located in the city of Winterhold, perched on a rocky outcrop, and reachable only by crossing a narrow stone bridge after the Great Collapse. Though it functions similarly to the Mages Guild, the College is an independent institution, separate from the Guild, and has a storied history dating back to the First Era. \n\nA selective institution, the College admits only those who prove their aptitude in the magical arts. \n\nYou do not know anything else about this area.",
"display_name": "college_of_winterhold",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Hall of Countenance is one of the areas in the College. You do not know anything else. about the area.You do not know anything else about this area.",
"display_name": "hall_of_countenance",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Hall of Attainment is one of the areas in the College. You do not know anything else about the area.You do not know anything else about this area.",
"display_name": "hall_of_attainment",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Hall of the Elements is one of the areas in the College. You do not know anything else about the area.You do not know anything else about this area.",
"display_name": "hall_of_the_elements",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Midden is rumored to be a hidden cave under the College of Winterhold. You do not know anything else about the area.You do not know anything else about this area.",
"display_name": "the_midden",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Whistling Mine is a small iron mine and settlement located southeast of Winterhold. You do not know who works here.You do not know anything else about this area.",
"display_name": "whistling_mine",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Winterhold Imperial Camp is an Imperial outpost located in Winterhold Hold, positioned southeast of Dawnstar. You do not know who is stationed here.You do not know anything else about this area.",
"display_name": "winterhold_imperial_camp",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Winterhold Stormcloak Camp is a Stormcloak encampment located in Winterhold Hold, situated northeast of Windhelm. You do not know who is stationed here.You do not know anything else about this area.",
"display_name": "winterhold_stormcloak_camp",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Driftshade Refuge is a medium-sized fort located southeast of Dawnstar in the Winterhold region. The fort, now largely dilapidated and nearly lost beneath heavy snowdrifts.You do not know anything else about this area.",
"display_name": "driftshade_refuge",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Fort Fellhammer is a medium-sized fort and iron mine located south of Dawnstar, in the Winterhold region.You do not know anything else about this area.",
"display_name": "fort_fellhammer",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Fort Kastav is a medium-sized fort located south of Winterhold.You do not know anything else about this area.",
"display_name": "fort_kastav",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Snowpoint Beacon is a small tower located southwest of Winterhold, in the Winterhold region.You do not know anything else about this area.",
"display_name": "snowpoint_beacon",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Ironbind Barrow is a small Nordic ruin located southwest of Winterhold, north of Nightgate Inn. You do not know anything else about this area.",
"display_name": "ironbind_barrow",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Saarthal is a medium-sized Nordic ruin located southwest of Winterhold, As the first Nord settlement in Skyrim, Saarthal holds significant historical and archaeological value, particularly to the College of Winterhold, who is actively excavating the site in search of ancient artifacts. You do not know anything else about this area.",
"display_name": "saarthal",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Snow Veil Sanctum is a medium-sized Nordic ruin located north-northeast of Windhelm, in the Winterhold region.You do not know anything else about this area.",
"display_name": "snow_veil_sanctum",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Ysgramor's Tomb is a small Nordic ruin located northwest of Winterhold, in the Winterhold region. The tomb is the final resting place of Ysgramor, a legendary figure known as Ysgramor the Invader, or \"the harbinger of us all.\" Ysgramor was an Atmoran who fled civil war in Atmora and arrived in Tamriel long before recorded history. He is often regarded as the first human ruler and king of Skyrim, playing a foundational role in the region's history.\nYou do not know anything else about this area.",
"display_name": "ysgramor's_tomb",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Journeyman's Nook is a small outdoor Nordic ruin located southeast of Winterhold, in the Winterhold region.You do not know anything else about this area.",
"display_name": "journeyman's_nook",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Skytemple Ruins is a small outdoor Nordic ruin located north of the College of Winterhold.You do not know anything else about this area.",
"display_name": "skytemple_ruins",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Alftand is a large Dwarven ruin located southwest of Winterhold, in the Winterhold region.You do not know anything else about this area.",
"display_name": "alftand",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Shrine of Azura is a massive sacred site dedicated to Azura, the Daedric Prince of Dawn and Dusk. It is located south of Winterhold, perched atop the summit of a tall mountain.\n\nA massive statue of Azura dominates the site that can be seen from almost anywhere in Skyrim.You do not know anything else about this area.",
"display_name": "shrine_of_azura",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Bleakcoast Cave is a small cave located southeast of Winterhold, directly east of the Shrine of Azura, in the Winterhold region. You do not know anything else about this area.",
"display_name": "bleakcoast_cave",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Yngvild is a medium-sized cave located east-northeast of Dawnstar, in the Winterhold region.\nYou do not know anything else about this area.",
"display_name": "yngvild",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hob's Fall Cave is a small cave located along the coast between Winterhold and Dawnstar, in the Winterhold region.You do not know anything else about this area.",
"display_name": "hob's_fall_cave",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Septimus Signus's Outpost is a small cave located somewhere north of the College of Winterhold, in the Winterhold region. It is rumored that Septimus is some crazy Imperial scholar who is looking for some weird artifact in the cave. You do not know anything else about this area.",
"display_name": "septimus_signus's_outpost",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Stillborn Cave is a small cave located north-northwest of Windhelm, across the mountains from the city in the Winterhold region. You do not know anything else about this area.",
"display_name": "stillborn_cave",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Sightless Pit is a medium-sized cave located south-southwest of Winterhold, in the Winterhold region.You do not know anything else about this area.",
"display_name": "sightless_pit",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Hela's Folly is a shipwreck located northeast of Dawnstar, in the Winterhold region.You do not know anything else about this area.",
"display_name": "hela's_folly",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Wreck of The Pride of Tel Vos is a shipwreck located on a small island east of Winterhold, due east of the city. You do not know anything else about this area.",
"display_name": "wreck_of_the_pride_of_tel_vos",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Wreck of the Winter War is a shipwreck located far northeast of Windhelm, in the Winterhold region. You do not know anything else about this area.",
"display_name": "wreck_of_the_winter_war",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Pilgrim's Trench is a deep underwater ravine located northwest of Winterhold, along the coast. You do not know anything else about this area.",
"display_name": "pilgrim's_trench",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Mount Anthor is a dragon lair located on a mountaintop south-southwest of Winterhold, in the Winterhold region. You do not know anything else about this area.",
"display_name": "mount_anthor",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "\"The Serpent Stone is one of the thirteen Standing Stones scattered across Skyrim, located directly east of the College of Winterhold.\n\nWhen activated, the Serpent Stone grants the player the ability to use a ranged attack that paralyzes a target for a few seconds while dealing damage. The effect is powerful and useful, particularly for disabling enemies from a distance. You do not know anything else about this area.",
"display_name": "the_serpent_stone",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Tower Stone is one of the thirteen Standing Stones scattered across Skyrim, located about halfway between Dawnstar and Winterhold.\n\nWhen activated, the Tower Stone grants the person the ability to automatically open an Expert-level or lower lock once per day. You do not know anything else about this area.",
"display_name": "the_tower_stone",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Frostflow Lighthouse is a lighthouse located west of Winterhold, on the northern coast of Skyrim. The lighthouse is home to a Redguard family who recently purchased it, you do not know their names. However they have not been seen from in weeks.You do not know anything else about this area.",
"display_name": "frostflow_lighthouse",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Wayward Pass is a mountain pass located in the southwest of Winterhold.You do not know anything else about this area.",
"display_name": "wayward_pass",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Birna's Oddments is a general goods store located in the heart of Winterhold. You only know Birna runs the store.You do not know anything else about this area.",
"display_name": "birna's_oddments",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "Kraldar's House is located in Winterhold. You dot know who Kraldar is.You do not know anything else about this area.",
"display_name": "kraldar's_house",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
},
{
"always_inject": false,
"condition_expr": "",
"content": "The Frozen Hearth is a cozy inn located in the heart of Winterhold, one of the few inhabited buildings left in the city. You do not know who runs the Inn.You do not know anything else about this area.",
"display_name": "the_frozen_hearth",
"emotion": "",
"importance": 0.4,
"location": "Winterhold",
"tags": [],
"type": "LOCATION"
}
],
"entry_count": 78,
"exported_at": "2026-04-13T19:15:54Z",
"format_version": 1,
"name": "Oghma - Locations - Winterhold",
"npc_groups": [],
"version": "1.0.0"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

57
oghma-sknpack/README.md Normal file
View File

@@ -0,0 +1,57 @@
# sknpack — Oghma Knowledge Packs for SkyrimNet
SkyrimNet Knowledge Packs (`.sknpack`) generated from CHIM's Oghma Infinium lore.
Drop-in importable via the SkyrimNet beta Web UI (Knowledge Packs → Import).
## What's here
20 packs, ~5,000 Tamrielic lore entries, ~3.2 MB total.
| Pack family | Files | Scope | Entry `type` |
|---|---|---|---|
| Content | `Oghma_-_{Figures_Gods,Artifacts,Armor_Weapons,Items,Groups_Books,Creatures,Dynamic}.sknpack` | Everyone | KNOWLEDGE |
| Spells | `Oghma_-_Spells.sknpack` | Everyone | SKILL |
| Locations | `Oghma_-_Locations_-_{Whiterun,Rift,Solstheim,Reach,Eastmarch,Falkreath,Haafingar,Pale,Winterhold,Hjaalmarch,Other}.sknpack` | `location` field set to hold name | LOCATION |
| Visual | `Oghma_-_Visual_Descriptions.sknpack` | Everyone, for Omnisight perception | KNOWLEDGE |
Each entry carries an `importance` score: `0.75` for the deeper lore variant (scholars), `0.40` for the common-knowledge variant (commoners), `0.50` for visual descriptions. Same topic often appears twice at different depths — SkyrimNet's ranking picks the right one for the NPC.
## Pipeline
```
CHIM Oghma Infinium Google Sheet
│ oghma-ingest
ChromaDB @ iris-dev.eachpath.local:35000
(oghma_lore | oghma_basic | oghma_visual)
│ oghma-export-packs
/home/dafit/nimmerverse/nimmersky/sknpack/*.sknpack
│ SkyrimNet UI → Import
In-game NPC knowledge
```
## Regenerate
```bash
cd /home/dafit/nimmerverse/nimmersky/oghma-proxy
python3 -m oghma_proxy.export_packs
```
Overwrites everything in this directory. Also available as `oghma-export-packs` once the package is installed (`pip install -e .`).
Options: `--host`, `--port`, `--output-dir`, `--dry-run`.
## Format
SkyrimNet beta `format_version: 1`. See exporter source for the full envelope:
`oghma-proxy/src/oghma_proxy/export_packs.py`.
## Phase 2 (not yet shipped)
The `tags: []` and `condition_expr: ""` fields are intentionally empty — Phase 1 exports the raw knowledge with safe defaults. Phase 2 will use the Qwen3.5-27B teacher on theia to enrich each entry with tags (spell-school, armor-class, faction-affinity) and conditional expressions (quest-gated visibility). Phase 2 will bump pack `version` from `1.0.0``1.1.0`.
---
**Version:** 1.0 | **Created:** 2026-04-13 | **Updated:** 2026-04-13