religious-lore
Domain skill for religious and supernatural extraction.
Entity Types
| Type |
Description |
cult |
Cult or secretive religious group |
sect |
Religious sect or denomination |
holy_site |
Sacred place or shrine |
scripture |
Religious text or holy book |
ritual |
Ritual, prayer, or religious ceremony |
oath |
Sacred oath or vow |
summon |
Summoning ritual or invocation |
pact |
Supernatural pact or agreement |
curse |
Curse or negative supernatural effect |
blessing |
Blessing or positive supernatural effect |
miracle |
Miraculous event or divine intervention |
Extraction Rules
- Religious groups: Cults, sects, churches — name, beliefs, structure
- Sacred places: Temples, shrines, holy mountains — location, significance
- Rituals: Procedure, required components, effects, practitioners
- Supernatural effects: Curses, blessings, miracles — trigger, effect, duration
- Pacts: Parties involved, terms, consequences of breaking
Output Format
Write to entities/society.json (society-team file):
{
"cults": [
{
"id": "b2d3a0f1-3a1c-4d3e-9a4b-2c3d4e5f6a7b",
"tenant_id": "t-1",
"name": "Order of the Void",
"deity_id": "d-1",
"leader_id": "c-1",
"secret_knowledge": ["Star-binding rites"],
"rituals": ["Night of Silence"],
"membership_count": 120,
"secrecy_level": 85,
"alignment": "evil",
"headquarters_location_id": "l-1",
"created_at": "2026-02-14T10:00:00+00:00",
"updated_at": "2026-02-14T10:00:00+00:00"
}
],
"curses": [
{
"id": "c7b6a5d4-3e2f-4a1b-9c8d-7e6f5a4b3c2d",
"tenant_id": "t-1",
"character_id": "c-2",
"curse_name": "Curse of the Blood Moon",
"source_id": "d-1",
"severity": 80,
"effects": ["transformation"],
"symptoms": ["nightmares", "fever"],
"duration": "until_cured",
"removal_conditions": ["Moonlit ritual"],
"spread_type": "none",
"cure_methods": ["Holy water"],
"created_at": "2026-02-14T10:00:00+00:00",
"updated_at": "2026-02-14T10:00:00+00:00"
}
]
}
Key Considerations
- Multiple faiths: Worlds often have competing religions
- Lost religions: Ancient faiths may have faded — extract remnants
- Heretical practices: Cults vs mainstream religion
- Cross-references: If needed, track relationships separately in drafts, but final JSON must match
LoreData.from_dict.
1---2name: religious-lore3description: Extract religious entities from narrative text. Use when analyzing cults, sects, holy sites, scriptures, rituals, oaths, summons, pacts, curses, blessings, and miracles.4---5# religious-lore
6
7Domain skill for religious and supernatural extraction.
8
9## Entity Types
10
11| Type | Description |
12|------|-------------|
13| `cult` | Cult or secretive religious group |
14| `sect` | Religious sect or denomination |
15| `holy_site` | Sacred place or shrine |
16| `scripture` | Religious text or holy book |
17| `ritual` | Ritual, prayer, or religious ceremony |
18| `oath` | Sacred oath or vow |
19| `summon` | Summoning ritual or invocation |
20| `pact` | Supernatural pact or agreement |
21| `curse` | Curse or negative supernatural effect |
22| `blessing` | Blessing or positive supernatural effect |
23| `miracle` | Miraculous event or divine intervention |
24
25## Extraction Rules
26
271. **Religious groups**: Cults, sects, churches — name, beliefs, structure
282. **Sacred places**: Temples, shrines, holy mountains — location, significance
293. **Rituals**: Procedure, required components, effects, practitioners
304. **Supernatural effects**: Curses, blessings, miracles — trigger, effect, duration
315. **Pacts**: Parties involved, terms, consequences of breaking
32
33## Output Format
34
35Write to `entities/society.json` (society-team file):
36
37```json
38{
39 "cults": [
40 {
41 "id": "b2d3a0f1-3a1c-4d3e-9a4b-2c3d4e5f6a7b",
42 "tenant_id": "t-1",
43 "name": "Order of the Void",
44 "deity_id": "d-1",
45 "leader_id": "c-1",
46 "secret_knowledge": ["Star-binding rites"],
47 "rituals": ["Night of Silence"],
48 "membership_count": 120,
49 "secrecy_level": 85,
50 "alignment": "evil",
51 "headquarters_location_id": "l-1",
52 "created_at": "2026-02-14T10:00:00+00:00",
53 "updated_at": "2026-02-14T10:00:00+00:00"
54 }
55 ],
56 "curses": [
57 {
58 "id": "c7b6a5d4-3e2f-4a1b-9c8d-7e6f5a4b3c2d",
59 "tenant_id": "t-1",
60 "character_id": "c-2",
61 "curse_name": "Curse of the Blood Moon",
62 "source_id": "d-1",
63 "severity": 80,
64 "effects": ["transformation"],
65 "symptoms": ["nightmares", "fever"],
66 "duration": "until_cured",
67 "removal_conditions": ["Moonlit ritual"],
68 "spread_type": "none",
69 "cure_methods": ["Holy water"],
70 "created_at": "2026-02-14T10:00:00+00:00",
71 "updated_at": "2026-02-14T10:00:00+00:00"
72 }
73 ]
74}
75```
76
77## Key Considerations
78
79- **Multiple faiths**: Worlds often have competing religions
80- **Lost religions**: Ancient faiths may have faded — extract remnants
81- **Heretical practices**: Cults vs mainstream religion
82- **Cross-references**: If needed, track relationships separately in drafts, but final JSON must match `LoreData.from_dict`.