@hera-al/server 1.6.34 → 1.6.36
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/dist/agent/agent-service.d.ts +1 -0
- package/dist/agent/agent-service.js +1 -1
- package/dist/agent/prompt-builder.d.ts +9 -1
- package/dist/agent/prompt-builder.js +1 -1
- package/dist/agent/quality-gate.d.ts +17 -0
- package/dist/agent/quality-gate.js +1 -0
- package/dist/agent/session-agent.d.ts +4 -0
- package/dist/agent/session-agent.js +1 -1
- package/dist/agent/workspace-files.d.ts +57 -1
- package/dist/agent/workspace-files.js +1 -1
- package/dist/commands/status.d.ts +1 -0
- package/dist/commands/status.js +1 -1
- package/dist/config.d.ts +3 -0
- package/dist/config.js +1 -1
- package/dist/memory/memory-manager.d.ts +2 -1
- package/dist/memory/memory-manager.js +1 -1
- package/dist/memory/memory-search.d.ts +10 -0
- package/dist/memory/memory-search.js +1 -1
- package/dist/nostromo/nostromo.js +1 -1
- package/dist/nostromo/ui-html-modals.js +1 -1
- package/dist/nostromo/ui-js-prompts.js +1 -1
- package/dist/server.js +1 -1
- package/dist/tools/memory-tools.js +1 -1
- package/installationPkg/AGENTS.md +61 -190
- package/installationPkg/BEHAVIOUR.md +92 -0
- package/installationPkg/SOUL.md +4 -3
- package/installationPkg/config.example.yaml +2 -0
- package/installationPkg/default-jobs.json +1 -1
- package/package.json +6 -6
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
},
|
|
17
17
|
"channel": "",
|
|
18
18
|
"chatId": "",
|
|
19
|
-
"message": "It's 03:00 — time to dream. Load the dreaming skill and execute the full nightly cycle: gather the past week's conversations, digest patterns, synthesize insights, write the dream journal, update MEMORY.md and the concept map. Only message the user if you discover something genuinely interesting.",
|
|
19
|
+
"message": "It's 03:00 — time to dream. Load the dreaming skill and execute the full nightly cycle: gather the past week's conversations, digest patterns, synthesize insights, write the dream journal, update MEMORY.md and the concept map. Read and update BEHAVIOUR.md as source of truth for operational rules — extract new WHEN→DO rules from corrections and mistakes this week. Only message the user if you discover something genuinely interesting.",
|
|
20
20
|
"state": {}
|
|
21
21
|
},
|
|
22
22
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hera-al/server",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.36",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Hera Artificial Life — Multi-channel AI agent gateway with autonomous capabilities",
|
|
6
6
|
"license": "MIT",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"build:prod": "rm -rf dist && npm run build && npm run minify",
|
|
52
52
|
"typecheck": "tsc --noEmit",
|
|
53
53
|
"installer": "tsx src/installer/hera.ts",
|
|
54
|
-
"up": "npx pm2 start npm --name
|
|
55
|
-
"down": "npx pm2 stop
|
|
56
|
-
"restart": "npx pm2 restart
|
|
57
|
-
"logs": "npx pm2 logs
|
|
58
|
-
"status": "npx pm2 status
|
|
54
|
+
"up": "npx pm2 start npm --name dante-server -- run start",
|
|
55
|
+
"down": "npx pm2 stop dante-server",
|
|
56
|
+
"restart": "npx pm2 restart dante-server",
|
|
57
|
+
"logs": "npx pm2 logs dante-server",
|
|
58
|
+
"status": "npx pm2 status dante-server",
|
|
59
59
|
"hera": "node dist/heracli/index.js",
|
|
60
60
|
"prepublishOnly": "npm run build:prod",
|
|
61
61
|
"prepare-publish": "./scripts/prepare-publish.sh",
|