@hera-al/server 1.6.41 → 1.6.44
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.js +1 -1
- package/dist/agent/prompt-builder.d.ts +1 -1
- package/dist/agent/prompt-builder.js +1 -1
- package/dist/agent/session-agent.d.ts +1 -1
- package/dist/agent/session-agent.js +1 -1
- package/dist/agent/workspace-files.js +1 -1
- package/dist/config.d.ts +21 -0
- package/dist/config.js +1 -1
- package/dist/gateway/bridge.d.ts +13 -3
- package/dist/gateway/channel-manager.d.ts +3 -9
- package/dist/gateway/channel-manager.js +1 -1
- package/dist/gateway/channels/mesh.d.ts +14 -0
- package/dist/gateway/channels/mesh.js +1 -1
- package/dist/gateway/channels/telegram/index.d.ts +22 -12
- package/dist/gateway/channels/telegram/index.js +1 -1
- package/dist/gateway/channels/webchat.d.ts +3 -6
- package/dist/gateway/channels/webchat.js +1 -1
- package/dist/gateway/channels/whatsapp.d.ts +3 -9
- package/dist/gateway/channels/whatsapp.js +1 -1
- package/dist/gateway/typing-coordinator.d.ts +43 -0
- package/dist/gateway/typing-coordinator.js +1 -0
- package/dist/memory/concept-store.d.ts +27 -0
- package/dist/memory/concept-store.js +1 -1
- package/dist/memory/memory-manager.d.ts +6 -1
- package/dist/memory/memory-manager.js +1 -1
- package/dist/memory/memory-search.d.ts +63 -0
- package/dist/memory/memory-search.js +1 -1
- package/dist/server.d.ts +3 -0
- package/dist/server.js +1 -1
- package/dist/tools/cron-tools.js +1 -1
- package/dist/tools/memory-tools.js +1 -1
- package/dist/tools/operational-context-tools.d.ts +20 -0
- package/dist/tools/operational-context-tools.js +1 -0
- package/dist/tools/server-tools.d.ts +11 -1
- package/dist/tools/server-tools.js +1 -1
- package/installationPkg/AGENTS.md +4 -0
- package/installationPkg/BEHAVIOUR.md +95 -76
- package/installationPkg/config.example.yaml +31 -3
- package/package.json +1 -1
|
@@ -124,6 +124,16 @@ channels:
|
|
|
124
124
|
# userId: ""
|
|
125
125
|
# accessToken: ""
|
|
126
126
|
|
|
127
|
+
# mesh: # inter-agent mesh communication
|
|
128
|
+
# enabled: false
|
|
129
|
+
# brokerUrl: "ws://127.0.0.1:3780/ws" # mesh broker WebSocket URL
|
|
130
|
+
# agentId: "" # unique agent ID on the mesh
|
|
131
|
+
# privateKey: "${MESH_KEY}" # Ed25519 private key for mesh auth
|
|
132
|
+
# reconnectDelayMs: 5000 # delay before reconnecting on disconnect
|
|
133
|
+
# rateLimit: # per-peer rate limiting (anti-loop, inspired by "Agents of Chaos" paper)
|
|
134
|
+
# maxPerPair: 20 # max outbound messages per peer per window
|
|
135
|
+
# windowMs: 3600000 # sliding window in ms (default: 1 hour)
|
|
136
|
+
|
|
127
137
|
responses:
|
|
128
138
|
enabled: true
|
|
129
139
|
port: 3002
|
|
@@ -229,7 +239,7 @@ models: # model registry
|
|
|
229
239
|
costOutput: 0
|
|
230
240
|
costCacheRead: 0
|
|
231
241
|
costCacheWrite: 0
|
|
232
|
-
- id: "openrouter:x-ai/grok-4.
|
|
242
|
+
- id: "openrouter:x-ai/grok-4.20-beta"
|
|
233
243
|
name: OpenRouter Grok
|
|
234
244
|
types: [external]
|
|
235
245
|
apiKey: "${OPENROUTER_API_KEY}"
|
|
@@ -304,7 +314,7 @@ memory:
|
|
|
304
314
|
recallStrategy: "search" # builtin-only | search
|
|
305
315
|
search:
|
|
306
316
|
enabled: true # enable hybrid BM25 + semantic search over memory
|
|
307
|
-
modelRef: "Embedding Gemma"
|
|
317
|
+
modelRef: "Embedding Gemma:embeddinggemma" # "Name:id" reference to a model in the models registry (for API key + base URL)
|
|
308
318
|
embeddingModel: "embeddinggemma" # Ollama model (run: ollama pull gemma)
|
|
309
319
|
prefixQuery: "task: search result | query: {content}" # prefix template for query embeddings (use {content} placeholder)
|
|
310
320
|
prefixDocument: "title: none | text: {content}" # prefix template for document embeddings (use {content} placeholder)
|
|
@@ -338,7 +348,7 @@ agent:
|
|
|
338
348
|
modelRefs: # list of "Name:provider:modelId" refs
|
|
339
349
|
- "OpenRouter GPT:openrouter:openai/gpt-5.4"
|
|
340
350
|
- "OpenRouter Flash:openrouter:google/gemini-3-flash-preview"
|
|
341
|
-
- "OpenRouter Grok:openrouter:x-ai/grok-4.
|
|
351
|
+
- "OpenRouter Grok:openrouter:x-ai/grok-4.20-beta"
|
|
342
352
|
- "OpenRouter GeminiPro:openrouter:google/gemini-3-pro-preview"
|
|
343
353
|
- "OpenRouter Opus1m:openrouter:anthropic/claude-opus-4.6"
|
|
344
354
|
rollingMemoryModel: "OpenRouter Flash:openrouter:google/gemini-3-flash-preview"
|
|
@@ -473,6 +483,7 @@ cron:
|
|
|
473
483
|
enabled: true
|
|
474
484
|
isolated: true # jobs run in their own session (cron:name) instead of sharing user chat context
|
|
475
485
|
broadcastEvents: false # deliver cron responses to all known chats across all active channels
|
|
486
|
+
trackMemory: false # save cron session conversations to memory files
|
|
476
487
|
# storePath: "" # leave empty for default (data/cron/jobs.json)
|
|
477
488
|
heartbeat:
|
|
478
489
|
enabled: true
|
|
@@ -482,6 +493,10 @@ cron:
|
|
|
482
493
|
message: "Read HEARTBEAT.md if it exists (workspace context). Follow it strictly. Do not infer or repeat old tasks from prior chats. If nothing needs attention, reply HEARTBEAT_OK."
|
|
483
494
|
ackMaxChars: 300
|
|
484
495
|
|
|
496
|
+
warmRestart:
|
|
497
|
+
enabled: false # enable warm restart via PM2 (kill + respawn)
|
|
498
|
+
pm2Name: "" # PM2 process name (e.g. "dante-server")
|
|
499
|
+
|
|
485
500
|
nostromo:
|
|
486
501
|
enabled: true
|
|
487
502
|
port: 3001
|
|
@@ -492,3 +507,16 @@ nostromo:
|
|
|
492
507
|
browser:
|
|
493
508
|
enabled: false
|
|
494
509
|
controlPort: 3003
|
|
510
|
+
headless: false # run Chrome headless (no visible window)
|
|
511
|
+
noSandbox: false # disable Chrome sandbox (needed in some Docker setups)
|
|
512
|
+
attachOnly: false # attach to existing Chrome instead of launching one
|
|
513
|
+
# executablePath: "/usr/bin/google-chrome" # custom Chrome binary path (optional)
|
|
514
|
+
remoteCdpTimeoutMs: 1500 # timeout for remote CDP connections
|
|
515
|
+
profiles: # named browser profiles with separate CDP ports
|
|
516
|
+
default:
|
|
517
|
+
cdpPort: 9222
|
|
518
|
+
color: "#FF4500"
|
|
519
|
+
# secondary:
|
|
520
|
+
# cdpPort: 9223
|
|
521
|
+
# cdpUrl: "http://remote-host:9222" # or use cdpUrl for remote browsers
|
|
522
|
+
# color: "#00FF00"
|