@cendor/acttrace 0.3.2 → 0.3.3

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/NOTICE +7 -0
  2. package/README.md +2 -0
  3. package/package.json +9 -3
package/NOTICE ADDED
@@ -0,0 +1,7 @@
1
+ PowerAI Labs
2
+ Copyright 2026 Raghav Mishra (PowerAI Labs)
3
+
4
+ This product includes software developed by Raghav Mishra (PowerAI Labs).
5
+
6
+ Licensed under the Apache License, Version 2.0. See the LICENSE file for the
7
+ full terms.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @cendor/acttrace
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@cendor/acttrace.svg)](https://www.npmjs.com/package/@cendor/acttrace) [![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
4
+
3
5
  An automatic, tamper-evident log of your AI's decisions — every model and tool call is recorded and can be verified offline; change any past entry and the check fails. The TypeScript port of `cendor.acttrace` (regex/pattern detectors only — no Presidio).
4
6
 
5
7
  Construct an `AuditLog` and it **subscribes** to `@cendor/core`'s event bus: every instrumented
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cendor/acttrace",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "An automatic, tamper-evident log of your AI's decisions — every model and tool call is recorded and can be verified offline; change any past entry and the check fails.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -21,14 +21,16 @@
21
21
  },
22
22
  "files": [
23
23
  "dist",
24
- "README.md"
24
+ "README.md",
25
+ "LICENSE",
26
+ "NOTICE"
25
27
  ],
26
28
  "sideEffects": false,
27
29
  "engines": {
28
30
  "node": ">=18"
29
31
  },
30
32
  "dependencies": {
31
- "@cendor/core": "^0.3.2"
33
+ "@cendor/core": "^0.3.3"
32
34
  },
33
35
  "keywords": [
34
36
  "llm",
@@ -43,6 +45,10 @@
43
45
  "url": "git+https://github.com/cendorhq/cendor-libs-js.git",
44
46
  "directory": "packages/acttrace"
45
47
  },
48
+ "homepage": "https://cendor.ai/docs/acttrace",
49
+ "bugs": {
50
+ "url": "https://github.com/cendorhq/cendor-libs-js/issues"
51
+ },
46
52
  "publishConfig": {
47
53
  "access": "public"
48
54
  }