navvi 2.0.0
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/LICENSE +201 -0
- package/README.md +179 -0
- package/bin/navvi.js +150 -0
- package/container/Dockerfile +63 -0
- package/container/marionette.py +147 -0
- package/container/navvi-server.py +652 -0
- package/container/requirements.txt +2 -0
- package/container/start.sh +126 -0
- package/docs/navvi-logo.png +0 -0
- package/mcp/server.mjs +1278 -0
- package/package.json +41 -0
- package/personas/default.yaml +5 -0
- package/personas/dev.yaml +15 -0
- package/personas/fry.yaml +18 -0
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "navvi",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Give your AI agent a real browser identity",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "mcp/server.mjs",
|
|
7
|
+
"bin": {
|
|
8
|
+
"navvi": "bin/navvi.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/",
|
|
12
|
+
"mcp/server.mjs",
|
|
13
|
+
"container/",
|
|
14
|
+
"personas/",
|
|
15
|
+
"docs/navvi-logo.png",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"mcp",
|
|
23
|
+
"browser",
|
|
24
|
+
"automation",
|
|
25
|
+
"ai",
|
|
26
|
+
"agent",
|
|
27
|
+
"persona",
|
|
28
|
+
"firefox",
|
|
29
|
+
"claude",
|
|
30
|
+
"anthropic"
|
|
31
|
+
],
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "https://github.com/Fellowship-dev/navvi"
|
|
35
|
+
},
|
|
36
|
+
"homepage": "https://github.com/Fellowship-dev/navvi#readme",
|
|
37
|
+
"license": "Apache-2.0",
|
|
38
|
+
"scripts": {
|
|
39
|
+
"build": "docker build -t navvi container/"
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
name: dev
|
|
2
|
+
description: Developer persona for blogging and community
|
|
3
|
+
services:
|
|
4
|
+
- dev.to
|
|
5
|
+
- github.com
|
|
6
|
+
- lobste.rs
|
|
7
|
+
seed_urls:
|
|
8
|
+
- https://dev.to
|
|
9
|
+
- https://github.com/trending
|
|
10
|
+
- https://lobste.rs
|
|
11
|
+
browser:
|
|
12
|
+
stealth: full
|
|
13
|
+
locale: en-US
|
|
14
|
+
timezone: America/Santiago
|
|
15
|
+
mode: headed
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
name: fry
|
|
2
|
+
description: Fry's browser — persistent identity for AI agent tasks
|
|
3
|
+
services:
|
|
4
|
+
- github.com
|
|
5
|
+
- mail.google.com
|
|
6
|
+
- calendar.google.com
|
|
7
|
+
- dash.cloudflare.com
|
|
8
|
+
- vercel.com
|
|
9
|
+
seed_urls:
|
|
10
|
+
- https://github.com/Fellowship-dev
|
|
11
|
+
- https://mail.google.com
|
|
12
|
+
- https://calendar.google.com
|
|
13
|
+
browser:
|
|
14
|
+
stealth: full
|
|
15
|
+
locale: es-CL
|
|
16
|
+
timezone: America/Santiago
|
|
17
|
+
mode: headless
|
|
18
|
+
engine: computer
|