s2cfgtojson 7.0.17 → 7.0.18

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/readme.md +22 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s2cfgtojson",
3
- "version": "7.0.17",
3
+ "version": "7.0.18",
4
4
  "description": "Converts Stalker 2 Cfg file into POJOs",
5
5
  "keywords": [
6
6
  "stalker",
package/readme.md CHANGED
@@ -58,6 +58,28 @@ console.log(parsed.TriggeredCooldowns);
58
58
 
59
59
  ---
60
60
 
61
+ ## Quest Node Planner Skill
62
+
63
+ This package includes a **Quest Node Planner** skill for AI-assisted quest authoring. It turns plain-language quest descriptions into complete S.T.A.L.K.E.R. 2 quest content packages — quest node graphs, dialog chains, journal entries, markers, rewards, and all supporting structs.
64
+
65
+ Describe a quest in plain language and the planner will:
66
+
67
+ 1. Resolve real content IDs from your local `GameLite` data (NPCs, items, dialogs, journals, markers)
68
+ 2. Determine every struct the quest needs (nodes, dialog, journal, globals, rewards, generators)
69
+ 3. Produce a structured plan with concrete SIDs, a node graph, edges, placement guidance, and validation risks
70
+
71
+ Example prompt:
72
+
73
+ > Plan a fetch quest where Barkeep in the Skadovsk asks the player to retrieve a unique PDA from a bandit camp, with a money reward on turn-in and an option to decline.
74
+
75
+ ### Key design principles
76
+
77
+ - All new structs must patch an **existing base cfg file** — the game won't read arbitrary new files.
78
+ - The skill prefers **reusing existing content** (items, markers, generators) over creating new prototypes.
79
+ - If something can't be resolved from local data, the skill asks you instead of guessing.
80
+
81
+ ---
82
+
61
83
  ## Development
62
84
 
63
85
  ### Tests