agentbrowse 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/LICENSE +31 -17
- package/README.md +3 -1
- package/dist/cli.js +3 -2
- package/package.json +3 -2
package/LICENSE
CHANGED
|
@@ -1,21 +1,35 @@
|
|
|
1
|
-
|
|
1
|
+
agentbrowse License (Free Use, No Redistribution)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2026 Mandar Wagh
|
|
3
|
+
Copyright (c) 2026 Mandar Wagh. All rights reserved.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
1. Grant of use. You are granted a worldwide, royalty-free, non-exclusive,
|
|
6
|
+
non-transferable license to install, run, and use this software (the
|
|
7
|
+
"Software") for any purpose, including commercial purposes. This grant
|
|
8
|
+
includes the incidental copying that a package manager performs to download,
|
|
9
|
+
install, and run the Software (for example, `npm install`), and loading the
|
|
10
|
+
Software into memory to execute it.
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
2. Restrictions. Except as expressly permitted in Section 1, you may NOT, in
|
|
13
|
+
whole or in part:
|
|
14
|
+
(a) copy, reproduce, republish, mirror, distribute, transmit, sublicense,
|
|
15
|
+
sell, rent, lease, or otherwise make the Software available to any third
|
|
16
|
+
party;
|
|
17
|
+
(b) modify, adapt, translate, fork, or create derivative works of the
|
|
18
|
+
Software; or
|
|
19
|
+
(c) reverse engineer, decompile, or disassemble the Software, except to the
|
|
20
|
+
extent applicable law expressly permits despite this limitation.
|
|
14
21
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
+
3. Reservation of rights. All rights not expressly granted in this license are
|
|
23
|
+
reserved by the copyright holder. No rights are granted by implication,
|
|
24
|
+
estoppel, or otherwise.
|
|
25
|
+
|
|
26
|
+
4. No warranty. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
27
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
28
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO
|
|
29
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES,
|
|
30
|
+
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE,
|
|
31
|
+
ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
32
|
+
DEALINGS IN THE SOFTWARE.
|
|
33
|
+
|
|
34
|
+
5. Termination. Any breach of Section 2 automatically and immediately terminates
|
|
35
|
+
the rights granted to you under this license.
|
package/README.md
CHANGED
|
@@ -69,4 +69,6 @@ A manifest declares `pages`, `selectors`, and `commands` as ordered steps with `
|
|
|
69
69
|
|
|
70
70
|
## License
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
Free to use, including commercially — but **not** copyable. You may install, run,
|
|
73
|
+
and use agentbrowse; you may not copy, fork, redistribute, or modify it. See
|
|
74
|
+
[`LICENSE`](./LICENSE). (Versions `0.0.1`–`0.1.1` were released under MIT and keep that license.)
|
package/dist/cli.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "agentbrowse",
|
|
9
|
-
version: "0.1.
|
|
9
|
+
version: "0.1.2",
|
|
10
10
|
description: "Agent-browser CLI: drive any website from the terminal.",
|
|
11
11
|
type: "module",
|
|
12
12
|
bin: {
|
|
@@ -46,7 +46,8 @@ var package_default = {
|
|
|
46
46
|
repository: {
|
|
47
47
|
type: "git",
|
|
48
48
|
url: "git+https://github.com/mandarwagh9/agentbrowse.git"
|
|
49
|
-
}
|
|
49
|
+
},
|
|
50
|
+
license: "SEE LICENSE IN LICENSE"
|
|
50
51
|
};
|
|
51
52
|
|
|
52
53
|
// src/daemon/client.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentbrowse",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Agent-browser CLI: drive any website from the terminal.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,5 +40,6 @@
|
|
|
40
40
|
"repository": {
|
|
41
41
|
"type": "git",
|
|
42
42
|
"url": "git+https://github.com/mandarwagh9/agentbrowse.git"
|
|
43
|
-
}
|
|
43
|
+
},
|
|
44
|
+
"license": "SEE LICENSE IN LICENSE"
|
|
44
45
|
}
|