ping-a-human 0.1.0 → 0.1.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/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,6 +98,19 @@ The server reads configuration with this precedence:
|
|
|
98
98
|
The bot token is a secret — it is never logged or echoed. All diagnostics go to **stderr**; **stdout**
|
|
99
99
|
is reserved for the MCP JSON-RPC channel.
|
|
100
100
|
|
|
101
|
+
## Use it in pi
|
|
102
|
+
|
|
103
|
+
Using the [pi](https://pi.dev) coding agent? One command wires ping-a-human into
|
|
104
|
+
pi's hooks for notifications, human-in-the-loop approval, a `/ping` command, and a
|
|
105
|
+
global `pah` CLI:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
npx ping-a-human-pi
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
See the [`ping-a-human-pi`](./ping-a-human-pi) package or the
|
|
112
|
+
[pi guide](https://github.com/startriseio/ping-a-human/tree/main/ping-a-human-pi).
|
|
113
|
+
|
|
101
114
|
## Local development
|
|
102
115
|
|
|
103
116
|
```bash
|
package/package.json
CHANGED