-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdappnode_package.json
More file actions
52 lines (52 loc) · 2.56 KB
/
dappnode_package.json
File metadata and controls
52 lines (52 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "honcho.dnp.dappnode.eth",
"version": "0.1.0",
"upstreamVersion": "v3.0.6",
"upstreamRepo": "plastic-labs/honcho",
"upstreamArg": "UPSTREAM_VERSION",
"shortDescription": "Self-sovereign AI memory layer for Hermes and OpenClaw agents.",
"description": "Honcho is an open-source memory platform that gives your AI agents persistent, reasoning-backed memory across sessions. Built directly from upstream plastic-labs/honcho.\n\n**What Honcho does:**\n- Extracts observations from every message (Deriver)\n- Answers natural-language questions about users on demand (Dialectic)\n- Compresses long sessions into concise summaries (Summary)\n- Consolidates and refines stored memories periodically (Dream)\n\n**Endpoint:** `http://honcho.dappnode:8000`\n\n**LLM requirement:** Use the Setup Wizard UI to connect Honcho to any OpenAI-compatible provider (DAppNode Nexus, OpenRouter, OpenAI, Anthropic, Ollama, etc.).",
"type": "service",
"mainService": "api",
"architectures": [
"linux/amd64",
"linux/arm64"
],
"requirements": {
"minimumDappnodeVersion": "0.2.30"
},
"backup": [
{
"name": "honcho-db-dump",
"path": "/backup/honcho.sql",
"service": "api"
},
{
"name": "honcho-llm-config",
"path": "/config/.env",
"service": "setup-wizard"
}
],
"changelog": "Initial release. Packages Honcho v3 using honcho-self-hosted config overlay with Dappnode Setup Wizard UI.",
"warnings": {
"onInstall": "Complete the Setup Wizard to select your AI provider. If you choose Local Ollama, the Ollama Dappnode package must already be installed with at least one tool-calling model downloaded (e.g. qwen3:8b).",
"onReset": "Resetting this package stops all services but does NOT delete your memory database. To erase all stored memories, remove the honcho-db-data volume from the Dappnode volume manager.",
"onRemove": "Removing this package will stop all Honcho services. Your memory database volume will be preserved unless you explicitly remove it."
},
"links": {
"homepage": "https://honcho.dev",
"Setup-Wizard": "http://setup-wizard.honcho.dappnode:8080",
"api": "http://honcho.dappnode:8000"
},
"repository": {
"type": "git",
"url": "https://github.com/dappnode/DAppNodePackage-honcho.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-honcho/issues"
},
"categories": ["Developer tools"],
"keywords": ["AI", "memory", "agent", "LLM", "Hermes", "Honcho"],
"author": Chuy García <chuy@dappnode.io> (https://github.com/dappnode)",
"license": "GPL-3.0"
}