@voidwire/lore 1.8.4 → 1.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/indexers/personal.ts +16 -4
- package/package.json +1 -1
package/lib/indexers/personal.ts
CHANGED
|
@@ -38,16 +38,28 @@ Example: {"name":"Jade","relationship":"child"} → Jade is a child, a kid and o
|
|
|
38
38
|
Example: {"name":"Sansa","relationship":"cat"} → Sansa is a cat, a pet and feline companion in the household.
|
|
39
39
|
${ENRICH_SHARED}`,
|
|
40
40
|
book: `You are enriching a book entry for search indexing.
|
|
41
|
-
Generate
|
|
41
|
+
Generate a natural language description starting with the book's title and author.
|
|
42
|
+
Include genre, themes, and related topics naturally in the sentence.
|
|
43
|
+
Example: {"title":"The Odyssey","author":"Homer"} → The Odyssey by Homer is an epic poem exploring journey, homecoming, fate, and loyalty through Greek mythology.
|
|
44
|
+
Example: {"title":"Dune","author":"Frank Herbert"} → Dune by Frank Herbert is a sci-fi novel about power, ecology, religion, and survival on a desert planet.
|
|
42
45
|
${ENRICH_SHARED}`,
|
|
43
46
|
movie: `You are enriching a movie entry for search indexing.
|
|
44
|
-
Generate
|
|
47
|
+
Generate a natural language description starting with the movie's title.
|
|
48
|
+
Include genre, themes, and related topics naturally in the sentence.
|
|
49
|
+
Example: {"title":"The Matrix","year":1999} → The Matrix (1999) is a sci-fi action film exploring reality, free will, and technology through cyberpunk themes.
|
|
50
|
+
Example: {"title":"Pan's Labyrinth","year":2006} → Pan's Labyrinth (2006) is a dark fantasy drama about childhood, political oppression, and magical escape during the Spanish Civil War.
|
|
45
51
|
${ENRICH_SHARED}`,
|
|
46
52
|
interest: `You are enriching a personal interest entry for search indexing.
|
|
47
|
-
Generate
|
|
53
|
+
Generate a natural language description starting with the interest name.
|
|
54
|
+
Include related activities, domains, and common alternative phrasings naturally in the sentence.
|
|
55
|
+
Example: {"name":"woodworking"} → Woodworking is a hands-on craft involving carpentry, furniture making, and wood carving using hand tools and power tools.
|
|
56
|
+
Example: {"name":"cybersecurity"} → Cybersecurity is a technical field covering network security, penetration testing, threat analysis, and digital defense.
|
|
48
57
|
${ENRICH_SHARED}`,
|
|
49
58
|
habit: `You are enriching a personal habit/routine entry for search indexing.
|
|
50
|
-
Generate
|
|
59
|
+
Generate a natural language description starting with the habit name.
|
|
60
|
+
Include frequency, related routines, and benefits naturally in the sentence.
|
|
61
|
+
Example: {"habit":"morning meditation","frequency":"daily"} → Morning meditation is a daily mindfulness practice involving focused breathing and mental clarity exercises.
|
|
62
|
+
Example: {"habit":"meal prep","frequency":"weekly"} → Meal prep is a weekly cooking routine involving batch preparation of meals for the upcoming days.
|
|
51
63
|
${ENRICH_SHARED}`,
|
|
52
64
|
};
|
|
53
65
|
|