witnora 0.8.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.
package/README.md ADDED
@@ -0,0 +1,23 @@
1
+ # Witnora CLI
2
+
3
+ `witnora` is the canonical npm entry point for the Witnora CLI.
4
+
5
+ ```bash
6
+ npx witnora try --template workflow
7
+ ```
8
+
9
+ This package is intentionally a thin, version-locked bridge to `agentcert`,
10
+ the historical package name. Both commands execute the same maintained CLI:
11
+
12
+ ```bash
13
+ npx witnora --help
14
+ npx --package agentcert witnora --help
15
+ npx agentcert --help
16
+ ```
17
+
18
+ The legacy package and command remain supported during the migration. New
19
+ integrations should use `witnora`, `WITNORA_*` environment variables, and
20
+ [witnora.com](https://witnora.com/).
21
+
22
+ Witnora provides evidence and assurance for autonomous AI systems. It does
23
+ not claim to be an official certification authority.
package/bin/witnora.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ await import("agentcert/cli");
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "witnora",
3
+ "version": "0.8.1",
4
+ "description": "Canonical Witnora CLI entry point for autonomous-system evidence and assurance.",
5
+ "type": "module",
6
+ "license": "Apache-2.0",
7
+ "homepage": "https://witnora.com/",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Kakarottoooo/agentcert.git",
11
+ "directory": "packages/witnora-cli"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/Kakarottoooo/agentcert/issues"
15
+ },
16
+ "keywords": [
17
+ "ai-agents",
18
+ "assurance",
19
+ "evidence",
20
+ "audit",
21
+ "agent-security",
22
+ "runtime-verification"
23
+ ],
24
+ "bin": {
25
+ "witnora": "bin/witnora.js"
26
+ },
27
+ "files": [
28
+ "bin",
29
+ "README.md",
30
+ "package.json"
31
+ ],
32
+ "scripts": {
33
+ "test": "node --test tests/*.test.mjs",
34
+ "prepack": "npm test"
35
+ },
36
+ "engines": {
37
+ "node": ">=20"
38
+ },
39
+ "dependencies": {
40
+ "agentcert": "0.8.1"
41
+ }
42
+ }