ironcode-ai 1.20.3 → 1.20.5

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 +28 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -206,6 +206,34 @@ Streak: 12 consecutive days.
206
206
 
207
207
  ````
208
208
 
209
+ ### Skills requiring Playwright MCP
210
+
211
+ The `/browse`, `/qa`, `/qa-only`, and `/qa-browse` skills control a real browser via [Playwright MCP](https://github.com/microsoft/playwright-mcp). Set it up once before using them.
212
+
213
+ **1. Add to your ironcode config** (`~/.ironcode/config.json` for global, or `ironcode.json` in your project):
214
+
215
+ ```json
216
+ {
217
+ "mcp": {
218
+ "playwright": {
219
+ "type": "local",
220
+ "command": ["npx", "@playwright/mcp@latest"]
221
+ }
222
+ }
223
+ }
224
+ ```
225
+
226
+ **2. Restart IronCode**, then verify:
227
+
228
+ ```bash
229
+ ironcode mcp list
230
+ # playwright connected
231
+ ```
232
+
233
+ > `npx` auto-downloads `@playwright/mcp` on first run. Chromium is bundled — no separate `playwright install` needed.
234
+
235
+ ---
236
+
209
237
  ### Custom Skills
210
238
 
211
239
  Create `.ironcode/skill/<name>/SKILL.md` with YAML frontmatter:
package/package.json CHANGED
@@ -6,13 +6,13 @@
6
6
  "scripts": {
7
7
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
8
8
  },
9
- "version": "1.20.3",
9
+ "version": "1.20.5",
10
10
  "license": "MIT",
11
11
  "optionalDependencies": {
12
- "ironcode-linux-x64-baseline": "1.20.3",
13
- "ironcode-linux-x64-modern": "1.20.3",
14
- "ironcode-linux-x64-baseline-musl": "1.20.3",
15
- "ironcode-windows-x64-modern": "1.20.3",
16
- "ironcode-darwin-arm64": "1.20.3"
12
+ "ironcode-linux-x64-baseline": "1.20.5",
13
+ "ironcode-linux-x64-modern": "1.20.5",
14
+ "ironcode-linux-x64-baseline-musl": "1.20.5",
15
+ "ironcode-windows-x64-modern": "1.20.5",
16
+ "ironcode-darwin-arm64": "1.20.5"
17
17
  }
18
18
  }