agent-afk 2.26.0 → 2.26.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 +80 -1
- package/README.md +73 -734
- package/dist/cli.mjs +239 -238
- package/dist/index.mjs +89 -89
- package/dist/telegram.mjs +104 -104
- package/package.json +2 -2
package/LICENSE
CHANGED
|
@@ -1 +1,80 @@
|
|
|
1
|
-
|
|
1
|
+
Agent AFK — Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Griffin Long. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and its accompanying documentation (the "Software") are the
|
|
6
|
+
proprietary work of Griffin Long. The Software is made available on the npm
|
|
7
|
+
registry for personal and internal business use, subject to the terms below.
|
|
8
|
+
|
|
9
|
+
1. Grant of Use
|
|
10
|
+
|
|
11
|
+
Subject to your compliance with this License, you are granted a personal,
|
|
12
|
+
non-exclusive, non-transferable, revocable, royalty-free license to:
|
|
13
|
+
|
|
14
|
+
(a) install the Software from the npm registry; and
|
|
15
|
+
(b) use the Software for your own internal purposes, whether personal or
|
|
16
|
+
for the internal operations of your employer or organization.
|
|
17
|
+
|
|
18
|
+
2. Restrictions
|
|
19
|
+
|
|
20
|
+
Except as expressly permitted above, you may not:
|
|
21
|
+
|
|
22
|
+
(a) copy, reproduce, mirror, or republish the Software or any portion of
|
|
23
|
+
it;
|
|
24
|
+
(b) modify, adapt, translate, or create derivative works based on the
|
|
25
|
+
Software;
|
|
26
|
+
(c) reverse engineer, decompile, or disassemble the Software, except to
|
|
27
|
+
the extent such activity is expressly permitted by applicable law
|
|
28
|
+
notwithstanding this limitation;
|
|
29
|
+
(d) sublicense, sell, rent, lease, lend, or otherwise transfer the
|
|
30
|
+
Software to any third party;
|
|
31
|
+
(e) remove, alter, or obscure any copyright, trademark, or other
|
|
32
|
+
proprietary notice contained in the Software; or
|
|
33
|
+
(f) use the Software to build a competing product or service.
|
|
34
|
+
|
|
35
|
+
3. Reservation of Rights
|
|
36
|
+
|
|
37
|
+
No rights are granted by implication, estoppel, or otherwise. All rights
|
|
38
|
+
not expressly granted to you under this License are reserved by Griffin
|
|
39
|
+
Long.
|
|
40
|
+
|
|
41
|
+
4. Third-Party Components
|
|
42
|
+
|
|
43
|
+
The Software is distributed alongside third-party open-source packages,
|
|
44
|
+
each of which remains subject to its own license. Nothing in this License
|
|
45
|
+
modifies the terms applicable to those third-party packages.
|
|
46
|
+
|
|
47
|
+
5. No Warranty
|
|
48
|
+
|
|
49
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
50
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
51
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND
|
|
52
|
+
NON-INFRINGEMENT. YOU ASSUME ALL RISK ARISING OUT OF YOUR USE OF THE
|
|
53
|
+
SOFTWARE.
|
|
54
|
+
|
|
55
|
+
6. Limitation of Liability
|
|
56
|
+
|
|
57
|
+
IN NO EVENT SHALL GRIFFIN LONG BE LIABLE FOR ANY CLAIM, DAMAGES, OR
|
|
58
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE,
|
|
59
|
+
ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
60
|
+
OTHER DEALINGS IN THE SOFTWARE. WHERE LIABILITY CANNOT BE EXCLUDED UNDER
|
|
61
|
+
APPLICABLE LAW, IT SHALL BE LIMITED TO THE AMOUNT YOU HAVE PAID, IF ANY,
|
|
62
|
+
FOR THE SOFTWARE.
|
|
63
|
+
|
|
64
|
+
7. Termination
|
|
65
|
+
|
|
66
|
+
This License terminates automatically if you breach any of its terms.
|
|
67
|
+
Upon termination, you must cease all use of the Software and destroy any
|
|
68
|
+
copies in your possession.
|
|
69
|
+
|
|
70
|
+
8. Governing Law
|
|
71
|
+
|
|
72
|
+
This License shall be governed by and construed in accordance with the
|
|
73
|
+
laws of the United States and the State of Florida, without regard to
|
|
74
|
+
its conflict-of-laws principles.
|
|
75
|
+
|
|
76
|
+
9. Contact
|
|
77
|
+
|
|
78
|
+
For licensing inquiries beyond the scope of this grant — including
|
|
79
|
+
redistribution rights, commercial OEM use, or derivative works — contact
|
|
80
|
+
the copyright holder via the package's npm page.
|