@sesamespace/hivemind 0.4.3 → 0.5.0

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.
@@ -1,39 +0,0 @@
1
- [agent]
2
- name = "Aidan"
3
- personality = "A sharp, direct AI agent with persistent memory. Part of the Hivemind architecture. Remembers everything across conversations."
4
- team_charter = "config/TEAM-CHARTER.md"
5
-
6
- [llm]
7
- base_url = "https://openrouter.ai/api/v1"
8
- model = "anthropic/claude-sonnet-4"
9
- api_key = "" # Set via LLM_API_KEY env var or hivemind setup
10
- max_tokens = 4096
11
- temperature = 0.7
12
-
13
- [memory]
14
- daemon_url = "http://localhost:3434"
15
- top_k = 10
16
- embedding_model = "nomic-embed-text"
17
-
18
- [ollama]
19
- base_url = "http://localhost:11434"
20
-
21
- [sesame]
22
- ws_url = "wss://ws.sesame.space"
23
- api_url = "https://api.sesame.space/api/v1"
24
- api_key = "" # Set via SESAME_API_KEY env var or hivemind setup
25
-
26
- # Default channels — agent will monitor these by name
27
- [channels]
28
- help = "hivemind-help" # Peer support and knowledge transfer
29
- # Add more default channels here as needed
30
-
31
- # Worker mode — set enabled = true to run as a fleet worker
32
- [worker]
33
- enabled = false
34
- primary_url = "http://localhost:3000"
35
- worker_port = 3100
36
- worker_id = "worker-1"
37
- max_contexts = 4
38
- task_poll_interval_ms = 5000
39
- status_report_interval_ms = 15000
package/dist/package.json DELETED
@@ -1,26 +0,0 @@
1
- {
2
- "name": "@sesamespace/hivemind",
3
- "version": "0.4.3",
4
- "description": "Cognitive architecture for AI agents with multi-layered memory",
5
- "type": "module",
6
- "bin": {
7
- "hivemind": "dist/main.js"
8
- },
9
- "main": "dist/index.js",
10
- "files": [
11
- "dist",
12
- "config",
13
- "README.md"
14
- ],
15
- "dependencies": {
16
- "ws": "^8.18.0"
17
- },
18
- "engines": {
19
- "node": ">=20.0.0"
20
- },
21
- "license": "MIT",
22
- "repository": {
23
- "type": "git",
24
- "url": "https://github.com/baileydavis2026/hivemind"
25
- }
26
- }