whatsapp-pi 1.0.2 → 1.0.3
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 +30 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp Logo" width="100">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# WhatsApp-Pi
|
|
2
6
|
|
|
3
|
-
WhatsApp integration for Pi coding
|
|
7
|
+
A WhatsApp integration extension for the **[Pi Coding Agent](https://github.com/mariozechner/pi-coding-agent)**.
|
|
8
|
+
|
|
9
|
+
Pi is a powerful agentic AI coding assistant that operates in your terminal. This extension allows you to chat and pair-program with your Pi agent directly through WhatsApp, featuring message filtering, allow-listing, and reliable message delivery.
|
|
4
10
|
|
|
5
11
|
## Features
|
|
6
12
|
|
|
@@ -13,6 +19,29 @@ WhatsApp integration for Pi coding agent with message filtering, blocking, and r
|
|
|
13
19
|
|
|
14
20
|
## Quick Start
|
|
15
21
|
|
|
22
|
+
1. Install the extension:
|
|
23
|
+
```bash
|
|
24
|
+
pi install npm:whatsapp-pi
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
2. Start Pi (the extension will load automatically once installed):
|
|
28
|
+
```bash
|
|
29
|
+
pi
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
To automatically connect to WhatsApp on startup (if you are already authenticated):
|
|
33
|
+
```bash
|
|
34
|
+
pi -w
|
|
35
|
+
# or
|
|
36
|
+
pi --whatsapp
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
3. Use the menu to connect WhatsApp and manage allowed/blocked numbers
|
|
40
|
+
|
|
41
|
+
## Development / Testing
|
|
42
|
+
|
|
43
|
+
If you are developing or testing the extension locally:
|
|
44
|
+
|
|
16
45
|
1. Install dependencies:
|
|
17
46
|
```bash
|
|
18
47
|
npm install
|
|
@@ -30,8 +59,6 @@ pi -e whatsapp-pi.ts -v
|
|
|
30
59
|
pi -e whatsapp-pi.ts --verbose
|
|
31
60
|
```
|
|
32
61
|
|
|
33
|
-
3. Use the menu to connect WhatsApp and manage allowed/blocked numbers
|
|
34
|
-
|
|
35
62
|
## Commands
|
|
36
63
|
|
|
37
64
|
- `/whatsapp` - Open the WhatsApp management menu
|