@hera-al/server 1.6.34 → 1.6.35
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/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/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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hera-al/server",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.35",
|
|
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",
|