jev-ra 0.1.1 → 0.1.2

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 CHANGED
@@ -1,12 +1,34 @@
1
- # jev-ra (npm launcher)
1
+ <p align="center">
2
+ <a href="https://brnyxx.github.io/jev-ra/"><img src="https://raw.githubusercontent.com/brnyxx/jev-ra/main/assets/logo.svg" alt="jev-ra" width="360"></a>
3
+ </p>
2
4
 
3
- A fast browser-use layer for CLI coding agents. Claude Code, Codex, or any MCP client hands jev-ra a
5
+ <p align="center">
6
+ <a href="https://www.npmjs.com/package/jev-ra"><img alt="npm" src="https://img.shields.io/npm/v/jev-ra"></a>
7
+ <a href="https://pypi.org/project/jev-ra/"><img alt="PyPI" src="https://img.shields.io/pypi/v/jev-ra"></a>
8
+ <a href="https://github.com/brnyxx/jev-ra/actions/workflows/ci.yml"><img alt="CI" src="https://img.shields.io/github/actions/workflow/status/brnyxx/jev-ra/ci.yml?branch=main&label=ci"></a>
9
+ <img alt="Node" src="https://img.shields.io/badge/node-20%2B-339933">
10
+ <img alt="MCP" src="https://img.shields.io/badge/MCP-stdio-111">
11
+ <img alt="Chrome" src="https://img.shields.io/badge/Chrome-CDP-111">
12
+ <a href="https://github.com/brnyxx/jev-ra/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/badge/license-MIT-green"></a>
13
+ </p>
14
+
15
+ [![jev-ra: browser use for coding agents, 3-5x faster than browser-use](https://raw.githubusercontent.com/brnyxx/jev-ra/main/assets/hero.png)](https://brnyxx.github.io/jev-ra/)
16
+
17
+ <p align="center"><a href="https://brnyxx.github.io/jev-ra/">brnyxx.github.io/jev-ra</a> · <a href="https://github.com/brnyxx/jev-ra">GitHub</a> · <a href="https://github.com/brnyxx/jev-ra/blob/main/docs/USAGE.md">CLI and tool reference</a> · <a href="https://github.com/brnyxx/jev-ra/blob/main/docs/BENCHMARKS.md">Benchmarks</a></p>
18
+
19
+ # jev-ra
20
+
21
+ **A fast browser-use layer for CLI coding agents.** Claude Code, Codex, or any MCP client hands jev-ra a
4
22
  goal; TypeSafe Jev picks the operation and the target element for every step in one round trip, in
5
- about 300 ms. Measured 3-5x faster than browser-use on the same tasks, same Chrome, same key.
23
+ about 300 ms. Measured 3-5x faster than browser-use on the same tasks, same Chrome, same key. The site
24
+ replays a real recorded run: [brnyxx.github.io/jev-ra](https://brnyxx.github.io/jev-ra/).
25
+
26
+ ## This package is the npm launcher
6
27
 
7
- **This package contains no jev-ra code.** It is a launcher: it finds [uv](https://docs.astral.sh/uv/),
8
- offers to install it the first time, and then runs the Python package from PyPI through `uvx`,
9
- pinned to this package's own version. Use it when you do not want to set Python up yourself.
28
+ **It contains no jev-ra code.** It finds [uv](https://docs.astral.sh/uv/), offers to install it the
29
+ first time, and then runs the Python package from PyPI through `uvx`, pinned to this package's own
30
+ version. Use it when you do not want to set Python up yourself. The Python package is
31
+ [jev-ra on PyPI](https://pypi.org/project/jev-ra/); `uvx jev-ra ...` does the same without Node.
10
32
 
11
33
  ```sh
12
34
  export OPENROUTER_API_KEY=sk-or-...
package/bin/jev-ra.js CHANGED
@@ -8,7 +8,7 @@ import { createInterface } from "node:readline";
8
8
  import { fileURLToPath } from "node:url";
9
9
  import process from "node:process";
10
10
 
11
- export const PINNED = "0.1.1";
11
+ export const PINNED = "0.1.2";
12
12
  export const INSTALL_HINT = [
13
13
  "jev-ra runs on uv, which is not on PATH.",
14
14
  "Install it with one of:",
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "jev-ra",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "A fast browser-use layer for CLI coding agents: MCP server, CLI and Python API. This package is a launcher; it runs the Python tool through uv.",
5
5
  "keywords": ["browser", "browser-automation", "mcp", "mcp-server", "agent", "ai-agent", "cdp",
6
6
  "chrome", "automation", "claude-code", "codex", "cursor", "typesafe", "jev", "web-agent"],
7
7
  "license": "MIT",
8
8
  "author": "Brian Kim",
9
- "homepage": "https://github.com/brnyxx/jev-ra",
9
+ "homepage": "https://brnyxx.github.io/jev-ra/",
10
10
  "repository": { "type": "git", "url": "git+https://github.com/brnyxx/jev-ra.git", "directory": "npm" },
11
11
  "bugs": { "url": "https://github.com/brnyxx/jev-ra/issues" },
12
12
  "bin": { "jev-ra": "bin/jev-ra.js" },