@draht/mom 2026.3.2-7 → 2026.3.2-9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [2026.3.2-9] - 2026-03-02
4
+
5
+ ### Changed
6
+
7
+ - update repo URLs from badlogic/pi-mono to draht-dev/draht
8
+
9
+ ## [2026.3.2-8] - 2026-03-02
10
+
11
+ ### Changed
12
+
13
+ - rebrand all READMEs to draht naming and conventions
14
+
3
15
  ## [2026.3.2-4] - 2026-03-02
4
16
 
5
17
  ### Added
package/README.md CHANGED
@@ -23,7 +23,7 @@ A Slack bot powered by an LLM that can execute bash commands, read/write files,
23
23
  ## Installation
24
24
 
25
25
  ```bash
26
- npm install @mariozechner/pi-mom
26
+ bun add @draht/mom
27
27
  ```
28
28
 
29
29
  ### Slack App Setup
@@ -64,7 +64,7 @@ export MOM_SLACK_APP_TOKEN=xapp-...
64
64
  export MOM_SLACK_BOT_TOKEN=xoxb-...
65
65
  # Option 1: Anthropic API key
66
66
  export ANTHROPIC_API_KEY=sk-ant-...
67
- # Option 2: use /login command in pi agent, then copy/link auth.json to ~/.pi/mom/
67
+ # Option 2: use /login command in draht, then copy/link auth.json to ~/.draht/mom/
68
68
 
69
69
  # Create Docker sandbox (recommended)
70
70
  docker run -d \
@@ -108,11 +108,11 @@ export ANTHROPIC_API_KEY=sk-ant-...
108
108
 
109
109
  2. **OAuth Login via coding agent command** (Recommended for Claude Pro/Max)
110
110
 
111
- - run interactive coding agent session: `npx @mariozechner/pi-coding-agent`
111
+ - run interactive coding agent session: `bunx @draht/coding-agent`
112
112
  - enter `/login` command
113
113
  - choose "Anthropic" provider
114
114
  - follow instructions in the browser
115
- - link `auth.json` to mom: `ln -s ~/.pi/agent/auth.json ~/.pi/mom/auth.json`
115
+ - link `auth.json` to mom: `ln -s ~/.pi/agent/auth.json ~/.draht/mom/auth.json`
116
116
 
117
117
  ## How Mom Works
118
118
 
@@ -364,7 +364,7 @@ You can write event files directly to `data/events/` on the host machine. This l
364
364
 
365
365
  ### Updating Mom
366
366
 
367
- Update mom anytime with `npm install -g @mariozechner/pi-mom`. This only updates the Node.js app on your host. Anything mom installed inside the Docker container remains unchanged.
367
+ Update mom anytime with `bun add -g @draht/mom`. This only updates the Node.js app on your host. Anything mom installed inside the Docker container remains unchanged.
368
368
 
369
369
  ## Message History
370
370
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@draht/mom",
3
- "version": "2026.3.2-7",
3
+ "version": "2026.3.2-9",
4
4
  "description": "Slack bot that delegates messages to the pi coding agent",
5
5
  "type": "module",
6
6
  "bin": {
@@ -20,9 +20,9 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@anthropic-ai/sandbox-runtime": "^0.0.16",
23
- "@draht/agent-core": "2026.3.2-7",
24
- "@draht/ai": "2026.3.2-7",
25
- "@draht/coding-agent": "2026.3.2-7",
23
+ "@draht/agent-core": "2026.3.2-9",
24
+ "@draht/ai": "2026.3.2-9",
25
+ "@draht/coding-agent": "2026.3.2-9",
26
26
  "@sinclair/typebox": "^0.34.0",
27
27
  "@slack/socket-mode": "^2.0.0",
28
28
  "@slack/web-api": "^7.0.0",
@@ -45,7 +45,7 @@
45
45
  "license": "MIT",
46
46
  "repository": {
47
47
  "type": "git",
48
- "url": "git+https://github.com/badlogic/pi-mono.git",
48
+ "url": "git+https://github.com/draht-dev/draht.git",
49
49
  "directory": "packages/mom"
50
50
  },
51
51
  "engines": {