pi-playwright-cli 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -4,6 +4,12 @@ Browser automation skill for the [pi](https://shittycodingagent.ai) coding agent
4
4
 
5
5
  ## Install
6
6
 
7
+ ```bash
8
+ pi install npm:pi-playwright-cli
9
+ ```
10
+
11
+ Or via GitHub:
12
+
7
13
  ```bash
8
14
  pi install git:github.com/c-99-e/pi-playwright-cli
9
15
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-playwright-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Browser automation skill for the pi coding agent, powered by @playwright/cli.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -23,6 +23,8 @@
23
23
  "@playwright/cli": "*"
24
24
  },
25
25
  "pi": {
26
- "skills": ["./skills/"]
26
+ "skills": [
27
+ "./skills/"
28
+ ]
27
29
  }
28
30
  }