@mariozechner/pi-mom 0.21.0 → 0.22.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.
- package/README.md +7 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -13,6 +13,13 @@ A Slack bot powered by an LLM that can execute bash commands, read/write files,
|
|
|
13
13
|
- **Working Memory & Custom Tools**: Mom remembers context across sessions and creates workflow-specific CLI tools ([aka "skills"](https://mariozechner.at/posts/2025-11-02-what-if-you-dont-need-mcp/)) for your tasks
|
|
14
14
|
- **Thread-Based Details**: Clean main messages with verbose tool details in threads
|
|
15
15
|
|
|
16
|
+
## Documentation
|
|
17
|
+
|
|
18
|
+
- [Artifacts Server](docs/artifacts-server.md) - Share HTML/JS visualizations publicly with live reload
|
|
19
|
+
- [Events System](docs/events.md) - Schedule reminders and periodic tasks
|
|
20
|
+
- [Sandbox Guide](docs/sandbox.md) - Docker vs host mode security
|
|
21
|
+
- [Slack Bot Setup](docs/slack-bot-minimal-guide.md) - Minimal Slack integration guide
|
|
22
|
+
|
|
16
23
|
## Installation
|
|
17
24
|
|
|
18
25
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mariozechner/pi-mom",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "Slack bot that delegates messages to the pi coding agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@anthropic-ai/sandbox-runtime": "^0.0.16",
|
|
24
|
-
"@mariozechner/pi-agent-core": "^0.
|
|
25
|
-
"@mariozechner/pi-ai": "^0.
|
|
26
|
-
"@mariozechner/pi-coding-agent": "^0.
|
|
24
|
+
"@mariozechner/pi-agent-core": "^0.22.0",
|
|
25
|
+
"@mariozechner/pi-ai": "^0.22.0",
|
|
26
|
+
"@mariozechner/pi-coding-agent": "^0.22.0",
|
|
27
27
|
"@sinclair/typebox": "^0.34.0",
|
|
28
28
|
"@slack/socket-mode": "^2.0.0",
|
|
29
29
|
"@slack/web-api": "^7.0.0",
|