@clawnitor/cli 1.0.0 → 1.0.1

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.
Files changed (3) hide show
  1. package/LICENSE +21 -66
  2. package/README.md +1 -1
  3. package/package.json +7 -7
package/LICENSE CHANGED
@@ -1,66 +1,21 @@
1
- Business Source License 1.1
2
-
3
- Parameters
4
-
5
- Licensor: David Kogan
6
- Licensed Work: Clawnitor
7
- The Licensed Work is (c) 2026 David Kogan.
8
- Additional Use Grant: You may make production use of the Licensed Work,
9
- provided your use does not include offering the
10
- Licensed Work to third parties as a commercial
11
- agent monitoring, observability, or safety service
12
- that competes with the Licensor's offerings.
13
- Change Date: Four years from the date the Licensed Work is
14
- published. The specific Change Date will be set
15
- when the repository is made public.
16
- Change License: GNU Affero General Public License v3.0 (AGPL-3.0)
17
-
18
- For information about alternative licensing arrangements for the Licensed
19
- Work, please contact: david@clawnitor.io
20
-
21
- Notice
22
-
23
- Business Source License 1.1
24
-
25
- Terms
26
-
27
- The Licensor hereby grants you the right to copy, modify, create
28
- derivative works, redistribute, and make non-production use of the
29
- Licensed Work. The Licensor may make an Additional Use Grant, above,
30
- permitting limited production use.
31
-
32
- Effective on the Change Date, or the fourth anniversary of the first
33
- publicly available distribution of a specific version of the Licensed
34
- Work under this License, whichever comes first, the Licensor hereby
35
- grants you rights under the terms of the Change License, and the rights
36
- granted in the paragraph above terminate.
37
-
38
- If your use of the Licensed Work does not comply with the requirements
39
- currently in effect as described in this License, you must purchase a
40
- commercial license from the Licensor, its affiliated entities, or
41
- authorized resellers, or you must refrain from using the Licensed Work.
42
-
43
- All copies of the original and modified Licensed Work, and derivative
44
- works of the Licensed Work, are subject to this License. This License
45
- applies separately for each version of the Licensed Work and the Change
46
- Date may vary for each version of the Licensed Work released by
47
- Licensor.
48
-
49
- You must conspicuously display this License on each original or modified
50
- copy of the Licensed Work. If you receive the Licensed Work in original
51
- or modified form from a third party, the terms and conditions set forth
52
- in this License apply to your use of that work.
53
-
54
- Any use of the Licensed Work in violation of this License will
55
- automatically terminate your rights under this License for the current
56
- and all other versions of the Licensed Work.
57
-
58
- This License does not grant you any right in any trademark or logo of
59
- Licensor or its affiliates (provided that you may use a trademark or
60
- logo of Licensor as expressly required by this License).
61
-
62
- TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS
63
- PROVIDED ON AN "AS IS" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES
64
- AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION)
65
- WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
66
- NON-INFRINGEMENT, AND TITLE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 David Kogan / Safer Intelligence Labs
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @clawnitor/cli
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/@clawnitor/cli?color=FF6B4A)](https://www.npmjs.com/package/@clawnitor/cli)
4
- [![license](https://img.shields.io/badge/license-AGPL--3.0-A78BFA)](LICENSE)
4
+ [![license](https://img.shields.io/badge/license-MIT-A78BFA)](LICENSE)
5
5
 
6
6
  CLI for [Clawnitor](https://clawnitor.io) — agent monitoring, rules enforcement, and kill switch for OpenClaw.
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clawnitor/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI for Clawnitor — agent monitoring for OpenClaw. Authenticate, generate API keys, and configure from the terminal.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,6 +10,10 @@
10
10
  "dist",
11
11
  "README.md"
12
12
  ],
13
+ "scripts": {
14
+ "build": "tsc",
15
+ "dev": "tsx src/index.ts"
16
+ },
13
17
  "keywords": [
14
18
  "clawnitor",
15
19
  "openclaw",
@@ -19,7 +23,7 @@
19
23
  "safety"
20
24
  ],
21
25
  "author": "David Kogan",
22
- "license": "AGPL-3.0",
26
+ "license": "MIT",
23
27
  "homepage": "https://clawnitor.io",
24
28
  "repository": {
25
29
  "type": "git",
@@ -32,9 +36,5 @@
32
36
  "@types/node": "^25.5.0",
33
37
  "tsx": "^4.19.0",
34
38
  "typescript": "^5.7.0"
35
- },
36
- "scripts": {
37
- "build": "tsc",
38
- "dev": "tsx src/index.ts"
39
39
  }
40
- }
40
+ }