psyche-ai 9.2.4 → 9.2.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/README.md +41 -11
- package/dist/adapters/vercel-ai.d.ts +1 -1
- package/dist/adapters/vercel-ai.js +1 -9
- package/dist/autonomic.js +2 -2
- package/dist/classify.js +0 -1
- package/dist/cli.js +1 -1
- package/dist/core.d.ts +1 -1
- package/dist/core.js +39 -69
- package/dist/demo.js +1 -2
- package/dist/ethics.js +1 -1
- package/dist/experiential-field.d.ts +2 -2
- package/dist/experiential-field.js +7 -16
- package/dist/generative-self.js +0 -2
- package/dist/interaction.js +0 -2
- package/dist/metacognition.d.ts +13 -1
- package/dist/metacognition.js +164 -32
- package/dist/prompt.js +17 -15
- package/dist/psyche-file.d.ts +8 -1
- package/dist/psyche-file.js +97 -3
- package/dist/relation-dynamics.d.ts +14 -1
- package/dist/relation-dynamics.js +68 -1
- package/dist/reply-envelope.d.ts +17 -0
- package/dist/reply-envelope.js +36 -0
- package/dist/response-contract.js +151 -26
- package/dist/subjectivity.d.ts +2 -2
- package/dist/subjectivity.js +21 -12
- package/dist/temporal.d.ts +2 -2
- package/dist/temporal.js +2 -2
- package/dist/types.d.ts +39 -0
- package/dist/types.js +12 -0
- package/llms.txt +1 -1
- package/package.json +16 -13
- package/server.json +1 -1
- package/README.en.md +0 -12
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "psyche-ai",
|
|
3
|
-
"version": "9.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "9.2.6",
|
|
4
|
+
"description": "AI-first subjectivity kernel for agents with continuous appraisal, relation dynamics, and adaptive reply loops",
|
|
5
5
|
"mcpName": "io.github.Shangri-la-0428/psyche-ai",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -48,23 +48,26 @@
|
|
|
48
48
|
"license": "MIT",
|
|
49
49
|
"repository": {
|
|
50
50
|
"type": "git",
|
|
51
|
-
"url": "https://github.com/Shangri-la-0428/
|
|
51
|
+
"url": "https://github.com/Shangri-la-0428/oasyce_psyche.git"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://psyche.oasyce.com",
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/Shangri-la-0428/oasyce_psyche/issues"
|
|
52
56
|
},
|
|
53
57
|
"keywords": [
|
|
58
|
+
"ai-agents",
|
|
59
|
+
"subjectivity-kernel",
|
|
60
|
+
"relation-dynamics",
|
|
61
|
+
"adaptive-reply-loop",
|
|
62
|
+
"persistent-subjective-bias",
|
|
63
|
+
"agent-memory",
|
|
54
64
|
"ai",
|
|
55
|
-
"emotion",
|
|
56
|
-
"personality",
|
|
57
|
-
"mbti",
|
|
58
|
-
"agent",
|
|
59
|
-
"psyche",
|
|
60
65
|
"openclaw",
|
|
61
|
-
"vercel-ai",
|
|
62
|
-
"langchain",
|
|
63
|
-
"emotional-intelligence",
|
|
64
66
|
"mcp",
|
|
65
67
|
"model-context-protocol",
|
|
66
|
-
"ai
|
|
67
|
-
"
|
|
68
|
+
"vercel-ai",
|
|
69
|
+
"langchain",
|
|
70
|
+
"psyche-ai"
|
|
68
71
|
],
|
|
69
72
|
"files": [
|
|
70
73
|
"dist",
|
package/server.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "io.github.Shangri-la-0428/psyche-ai",
|
|
4
4
|
"description": "Emotional intelligence for AI agents: neurotransmitter mood, personality, empathy, trait drift.",
|
|
5
5
|
"repository": {
|
|
6
|
-
"url": "https://github.com/Shangri-la-0428/
|
|
6
|
+
"url": "https://github.com/Shangri-la-0428/oasyce_psyche",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
9
|
"version": "9.2.3",
|
package/README.en.md
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Moved
|
|
2
|
-
|
|
3
|
-
This legacy filename is kept only as a pointer.
|
|
4
|
-
|
|
5
|
-
Use [README_EN.md](README_EN.md) for the current English documentation.
|
|
6
|
-
|
|
7
|
-
Current product direction:
|
|
8
|
-
|
|
9
|
-
- `v9.2.3`
|
|
10
|
-
- AI-first integration surface: `SubjectivityKernel`, `ResponseContract`, `GenerationControls`
|
|
11
|
-
- continuous appraisal axes + persistent subjective bias
|
|
12
|
-
- safe install-aware upgrades via `psyche upgrade --check` / `psyche upgrade`
|