pop-pay 0.5.5 → 0.5.7

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.
Files changed (2) hide show
  1. package/README.md +31 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,29 +11,55 @@
11
11
 
12
12
  The runtime security layer for AI agent commerce. Drop-in CLI + MCP server. Card credentials are injected directly into the browser DOM via CDP — they never enter the agent's context window. One hallucinated prompt can't drain a wallet it can't see.
13
13
 
14
+ <p align="center">
15
+ <img src="https://raw.githubusercontent.com/100xPercent/pop-pay-python/main/assets/runtime_demo.gif" alt="Point One Percent — live CDP injection demo" width="800">
16
+ </p>
17
+
14
18
  ## Install
15
19
 
16
- ### Homebrew (macOS / Linux)
20
+ Choose your preferred method:
21
+
22
+ <details>
23
+ <summary>Homebrew (macOS)</summary>
24
+
17
25
  ```bash
18
26
  brew install 100xPercent/tap/pop-pay
19
27
  ```
20
28
 
21
- ### curl | sh (macOS / Linux)
29
+ </details>
30
+
31
+ <details>
32
+ <summary>curl (Linux / macOS) — bootstraps via npm; requires Node.js 18+</summary>
33
+
22
34
  ```bash
23
35
  curl -fsSL https://raw.githubusercontent.com/100xPercent/pop-pay/main/install.sh | sh
24
36
  ```
25
37
 
26
- ### npm (global)
38
+ </details>
39
+
40
+ <details>
41
+ <summary>npm (global)</summary>
42
+
27
43
  ```bash
28
44
  npm install -g pop-pay
29
45
  ```
30
46
 
31
- ### npx (no install)
47
+ </details>
48
+
49
+ <details>
50
+ <summary>npx (no install — one-off runs)</summary>
51
+
32
52
  ```bash
33
53
  npx -y pop-pay <command>
34
54
  ```
35
55
 
36
- All four install paths expose the same binaries: `pop-pay`, `pop-launch`, `pop-init-vault`, `pop-unlock`.
56
+ </details>
57
+
58
+ All install paths expose the same binaries: `pop-pay`, `pop-launch`, `pop-init-vault`, `pop-unlock`.
59
+
60
+ > Also available as `@100xpercent/mcp-server-pop-pay` — identical package under the MCP `@scope/mcp-server-<name>` convention. Tracks the same version on every release.
61
+
62
+ > **Using Python?** Check out [pop-pay-python](https://github.com/100xPercent/pop-pay-python) — `pip install pop-pay`. Same security model, same vault format, independent release cycle — safe to switch between runtimes.
37
63
 
38
64
  ## Quick Start (CLI)
39
65
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pop-pay",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
4
4
  "mcpName": "io.github.100xPercent/pop-pay",
5
5
  "description": "The runtime security layer for AI agent commerce. Drop-in CLI + MCP server — blocks hallucinated purchases and keeps card credentials out of agent context. It only takes 0.1% of hallucination to drain 100% of your wallet.",
6
6
  "main": "dist/index.js",