@felan-ai/ext-browser 0.0.0 → 0.2.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/README.md +21 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -72,3 +72,24 @@ pnpm --filter @felan-ai/ext-browser test
|
|
|
72
72
|
|
|
73
73
|
See [NOTICE](NOTICE) for upstream attribution and the reviewed immutable
|
|
74
74
|
release details.
|
|
75
|
+
|
|
76
|
+
## Package boundary and security
|
|
77
|
+
|
|
78
|
+
The extension owns literal-argv validation, session namespacing, bounded output,
|
|
79
|
+
version-matched skill retrieval, screenshot validation, and safe text/image
|
|
80
|
+
fallbacks. Hosts own credentials, attachment authorization, dependency
|
|
81
|
+
installation, and browser policy. Page content, CLI output, and bundled skill
|
|
82
|
+
text are untrusted. Existing browser/profile/auth-state attachment requires
|
|
83
|
+
explicit authorization unless the current request already grants that action.
|
|
84
|
+
|
|
85
|
+
## Related documentation
|
|
86
|
+
|
|
87
|
+
- [Browser workflow](../../docs/user-guide/web-mcp-and-browser.md)
|
|
88
|
+
- [Runtime and security](../../docs/concepts/runtime-and-security.md)
|
|
89
|
+
- [Runtime dependencies](../../docs/reference/runtime-dependencies.md)
|
|
90
|
+
|
|
91
|
+
## Attribution
|
|
92
|
+
|
|
93
|
+
The integration is reviewed against `agent-browser` 0.31.1. The package does
|
|
94
|
+
not vendor its daemon or Chrome. See [NOTICE](NOTICE) and [LICENSE](LICENSE) for
|
|
95
|
+
the immutable upstream release, digests, and TypeBox attribution.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@felan-ai/ext-browser",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Portable agent-browser tool integration for Felan",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"typebox": "1.1.38"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@felan-ai/agent-core": "^0.
|
|
31
|
+
"@felan-ai/agent-core": "^0.5.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@felan-ai/agent-core": "0.
|
|
34
|
+
"@felan-ai/agent-core": "0.5.0"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public",
|
|
@@ -42,4 +42,4 @@
|
|
|
42
42
|
"type-check": "tsc -p tsconfig.json --noEmit",
|
|
43
43
|
"test": "vitest run"
|
|
44
44
|
}
|
|
45
|
-
}
|
|
45
|
+
}
|