@holt-os/holt 0.4.0 → 0.5.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holt-os/holt",
3
- "version": "0.4.0",
3
+ "version": "0.5.1",
4
4
  "description": "An open-source personal agent OS: any LLM, private memory you can see and walk.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -32,7 +32,6 @@
32
32
  },
33
33
  "files": [
34
34
  "dist",
35
- "config.example.yml",
36
35
  "README.md",
37
36
  "LICENSE"
38
37
  ],
@@ -48,6 +47,7 @@
48
47
  "devDependencies": {
49
48
  "tsup": "^8.1.0",
50
49
  "tsx": "^4.16.0",
51
- "typescript": "^5.5.0"
50
+ "typescript": "^5.5.0",
51
+ "@types/node": "^20.14.0"
52
52
  }
53
53
  }
@@ -1,40 +0,0 @@
1
- # Planned full configuration schema (later phases). Preview only.
2
- # Phase 0 does NOT read this file: run `holt init`, which writes
3
- # ~/.holt/config.json (your brains, default brain, and launch command).
4
- # Never commit real secrets or personal memory.
5
-
6
- # ── Brain ────────────────────────────────────────────────────────────────
7
- # The LLM that runs the agent. Provider-agnostic: swap freely.
8
- brain:
9
- provider: anthropic # anthropic | openai | gemini | local
10
- model: claude-opus-4-8 # e.g. gpt-5.x | gemini-3.x | a local model tag
11
- api_key_env: ANTHROPIC_API_KEY # name of the env var holding the key
12
-
13
- # ── Orchestration ────────────────────────────────────────────────────────
14
- # Optional: let a local model do the work while a cloud model reviews only
15
- # risky/irreversible actions (file writes, deletes, shell, sending, spending).
16
- orchestration:
17
- enabled: false
18
- executor: # the worker (usually a local model)
19
- provider: local
20
- model: "" # e.g. a local coding model via Ollama
21
- reviewer: # gates risky actions: approve | edit | block
22
- provider: anthropic
23
- model: claude-opus-4-8
24
-
25
- # ── Memory ───────────────────────────────────────────────────────────────
26
- memory:
27
- store: sqlite-vec # sqlite-vec (zero infra) | pgvector
28
- embeddings: local # local | openai | gemini
29
- # For local embeddings, Holt uses a local model (auto-set up on first run).
30
-
31
- # ── Output ───────────────────────────────────────────────────────────────
32
- output:
33
- format: markdown # markdown | html
34
-
35
- # ── Channels ─────────────────────────────────────────────────────────────
36
- # CLI always works. Everything below is opt-in.
37
- channels:
38
- telegram:
39
- enabled: false
40
- token_env: TELEGRAM_BOT_TOKEN