jaceai 2026.2.27 → 2026.3.3
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 +17 -9
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,16 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
JaceAI is
|
|
7
|
+
JaceAI is your AI web scraping Node.js browser automation agent. Automate web task automation with our headless browser AI. Competing with Puppeteer, Playwright, Browserbase, and Stagehand, JaceAI offers a streamlined approach to complex web interactions. Build robust solutions faster with our intuitive API and powerful AI.
|
|
8
8
|
|
|
9
9
|
## Features
|
|
10
10
|
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
- Extract structured data from websites with AI precision
|
|
11
|
+
- Automate complex web tasks using AI-powered browser automation agent.
|
|
12
|
+
- Extract structured data accurately from any website with AI web scraping Node.js.
|
|
13
|
+
- Integrate a headless browser AI into your existing Node.js projects.
|
|
14
|
+
- Orchestrate web task automation workflows with ease.
|
|
15
|
+
- Leverage AI to handle dynamic content and anti-scraping measures.
|
|
17
16
|
|
|
18
17
|
## Use Cases
|
|
19
18
|
|
|
@@ -34,15 +33,24 @@ import { JaceAI } from 'jaceai';
|
|
|
34
33
|
|
|
35
34
|
const agent = JaceAI.remote({ apiKey: 'cmdop_live_xxx' });
|
|
36
35
|
|
|
37
|
-
// Browse and extract data
|
|
38
36
|
const { title } = await agent.browseUrl('https://example.com');
|
|
39
37
|
console.log('Page title:', title);
|
|
40
38
|
|
|
41
|
-
// Extract structured data from any URL
|
|
42
39
|
const data = await agent.extract('https://news.ycombinator.com', 'top 5 story titles');
|
|
43
40
|
console.log(data.text);
|
|
44
41
|
```
|
|
45
42
|
|
|
43
|
+
## CLI
|
|
44
|
+
|
|
45
|
+
No SDK needed? Connect via standalone binary:
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
curl -fsSL cmdop.com/install-cli.sh | bash
|
|
49
|
+
cmdok ssh
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+

|
|
53
|
+
|
|
46
54
|
## Links
|
|
47
55
|
|
|
48
56
|
- [CMDOP Homepage](https://cmdop.com)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jaceai",
|
|
3
|
-
"version": "2026.
|
|
4
|
-
"description": "JaceAI
|
|
3
|
+
"version": "2026.3.3",
|
|
4
|
+
"description": "JaceAI \u2014 web browsing and task automation plugin for CMDOP",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"license": "MIT",
|