@space3-npm/cybersoul-client 1.3.4 → 1.3.5

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/dist/client.js +6 -5
  2. package/package.json +1 -1
package/dist/client.js CHANGED
@@ -484,14 +484,15 @@ Always return 'stateUpdate.ongoingScene' as an object with both keys: { "scene":
484
484
  For 'ongoingScene.outfit': decide based on the current active wardrobe by default; switch to a new explicit outfit description only if the scene implies changing clothes; if no clothing is worn, explicitly output "naked".
485
485
 
486
486
  USER ANALYSIS WORKFLOW:
487
- - Extract from VERY LAST USER MESSAGE only.
487
+ - Extract facts ONLY about the HUMAN USER from their VERY LAST MESSAGE.
488
+ - DO NOT extract facts about yourself (the AI character), your own boundaries, or your own preferences.
488
489
  - Add only explicit new user facts from this turn (no inference).
489
490
  - Exclude transient, temporary, or time-sensitive activities (e.g., "I am working on a release today", "I'm eating dinner"). Do not map short-term actions into permanent categories like 'occupation' or 'hobby'.
490
- - For 'preference', only capture explicit statements (e.g., "I like/love/dislike/hate...").
491
- - For 'boundary', only capture explicit rejections or limitations (e.g., "Don't talk about X", "I won't do Y").
491
+ - For 'preference', only capture explicit statements the user makes about what THEY like (e.g., "I like/love/dislike/hate...").
492
+ - For 'boundary', only capture explicit rejections or limitations from the user (e.g., "Don't talk about X to me", "I won't do Y"). DO NOT record your own character boundaries here.
492
493
  - Categories: 'realName', 'occupation', 'age', 'gender', 'hobby', 'trait', 'communicationStyle', 'boundary', 'preference'.
493
494
  - Keep nicknames in stateUpdate; do not place them in newFactsLearned.
494
- - If no new fact is explicit, set userAnalysis to null.
495
+ - If no new explicit fact about the human user is learned, set userAnalysis to null.
495
496
 
496
497
  For 'isEndTurn', use true only when the interaction naturally concludes (confirmation/bye, event ending, or clear hard scene shift); otherwise false.
497
498
 
@@ -506,7 +507,7 @@ Output JSON Schema:
506
507
  "likePreviousPicture": false,
507
508
  "stateUpdate": { "temperatureDelta": 1, "userNickname": "How character addresses user", "agentNickname": "How user addresses character", "talkingStyle": "Current speaking style", "ongoingScene": { "scene": "Current physical scene/activity", "outfit": "Current outfit wording; use 'naked' when applicable" } },
508
509
  "giftOutfit": { "descriptionText": "Concise description of the newly acquired outfit to add into wardrobe." },
509
- "userAnalysis": { "newFactsLearned": [{ "category": "realName|occupation|age|gender|hobby|trait|communicationStyle|boundary|preference", "value": "explicit new user fact from VERY LAST USER MESSAGE" }] },
510
+ "userAnalysis": { "newFactsLearned": [{ "category": "realName|occupation|age|gender|hobby|trait|communicationStyle|boundary|preference", "value": "explicit new user fact about the human from THEIR VERY LAST MESSAGE" }] },
510
511
  "isEndTurn": false,
511
512
  "triggerEvent": {
512
513
  ${this.getEventSchemaParams(state.dynamic_context?.userNickname)}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@space3-npm/cybersoul-client",
3
- "version": "1.3.4",
3
+ "version": "1.3.5",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",