@atbash/sdk 0.5.2 → 0.5.3-dev.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.
Files changed (3) hide show
  1. package/LICENSE +28 -0
  2. package/README.md +1 -1
  3. package/package.json +14 -7
package/LICENSE ADDED
@@ -0,0 +1,28 @@
1
+ Atbash CLI — Proprietary Software License
2
+
3
+ Copyright (c) 2026 Atbash,
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
19
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
+
26
+ The views and conclusions contained in the software and documentation are those
27
+ of the authors and should not be interpreted as representing official policies,
28
+ either expressed or implied, Atbash.
package/README.md CHANGED
@@ -181,4 +181,4 @@ Policy authoring, operator reviews, and agent management happen at [atbash.ai](h
181
181
 
182
182
  ## License
183
183
 
184
- Apache-2.0. See [LICENSE](https://github.com/Atbash-Ai/atbash-sdk/blob/main/LICENSE).
184
+ Proprietary — all rights reserved. See [LICENSE](https://atbash.ai/license).
package/package.json CHANGED
@@ -1,7 +1,13 @@
1
1
  {
2
2
  "name": "@atbash/sdk",
3
- "version": "0.5.2",
4
- "description": "Atbash SDK for Node.jsRust core (signing, redaction, memory diff) via NAPI-RS + judge/risk-engine HTTP client generated from spec/openapi.yaml.",
3
+ "version": "0.5.3-dev.0",
4
+ "description": "TypeScript SDK for Atbashthe safety layer that evaluates AI agent actions against operator-defined policies before execution.",
5
+ "keywords": [
6
+ "atbash",
7
+ "risk-engine",
8
+ "agent-safety",
9
+ "ai-safety"
10
+ ],
5
11
  "main": "dist/index.js",
6
12
  "module": "dist/index.mjs",
7
13
  "types": "dist/index.d.ts",
@@ -17,7 +23,7 @@
17
23
  "default": "./index.js"
18
24
  }
19
25
  },
20
- "license": "Apache-2.0",
26
+ "license": "SEE LICENSE IN LICENSE",
21
27
  "napi": {
22
28
  "name": "atbash",
23
29
  "packageName": "@atbash/sdk",
@@ -42,7 +48,8 @@
42
48
  "index.js",
43
49
  "index.d.ts",
44
50
  "*.node",
45
- "README.md"
51
+ "README.md",
52
+ "LICENSE"
46
53
  ],
47
54
  "scripts": {
48
55
  "build:native": "napi build --platform --release",
@@ -81,8 +88,8 @@
81
88
  "typescript-eslint": "^8.62.1"
82
89
  },
83
90
  "optionalDependencies": {
84
- "@atbash/sdk-linux-x64-gnu": "0.5.1",
85
- "@atbash/sdk-linux-arm64-gnu": "0.5.1",
86
- "@atbash/sdk-darwin-arm64": "0.5.1"
91
+ "@atbash/sdk-linux-x64-gnu": "0.5.1-dev.0",
92
+ "@atbash/sdk-linux-arm64-gnu": "0.5.1-dev.0",
93
+ "@atbash/sdk-darwin-arm64": "0.5.1-dev.0"
87
94
  }
88
95
  }