@vitronai/themis 0.1.1 → 0.1.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/CHANGELOG.md +7 -1
- package/README.md +4 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,17 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.1.2 - 2026-03-24
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Corrected the README visual split so the main badge remains `src/assets/themisLogo.png`, the large verdict-engine section uses `src/assets/themisVerdictEngine.png`, and the HTML report continues to use `src/assets/themisReport.png`.
|
|
12
|
+
|
|
7
13
|
## 0.1.1 - 2026-03-23
|
|
8
14
|
|
|
9
15
|
### Changed
|
|
10
16
|
|
|
11
|
-
- Updated the
|
|
17
|
+
- Updated the README visuals so the primary badge stays on `src/assets/themisLogo.png`, the verdict-engine section uses `src/assets/themisVerdictEngine.png`, and the HTML report continues to use `src/assets/themisReport.png`.
|
|
12
18
|
|
|
13
19
|
## 0.1.0 - 2026-03-23
|
|
14
20
|
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Themis
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="src/assets/
|
|
4
|
+
<img src="src/assets/themisLogo.png" alt="Themis logo mark" width="42" valign="middle">
|
|
5
5
|
<a href="https://github.com/vitron-ai/themis/actions/workflows/ci.yml">
|
|
6
6
|
<img src="https://img.shields.io/github/actions/workflow/status/vitron-ai/themis/ci.yml?branch=main&style=for-the-badge&label=THEMIS%20VERDICT%20PIPELINE&labelColor=111827&color=16a34a" alt="Themis verdict pipeline status" valign="middle">
|
|
7
7
|
</a>
|
|
@@ -12,7 +12,7 @@ Themis is an intent-first unit test framework for AI agents in Node.js and TypeS
|
|
|
12
12
|
It is built to be the best test loop for agent workflows: deterministic reruns, machine-readable outputs, strict phase semantics, and a branded AI verdict engine for humans.
|
|
13
13
|
|
|
14
14
|
<p align="center">
|
|
15
|
-
<img src="src/assets/
|
|
15
|
+
<img src="src/assets/themisVerdictEngine.png" alt="Themis verdict engine art" width="960">
|
|
16
16
|
</p>
|
|
17
17
|
|
|
18
18
|
## Contents
|
|
@@ -63,7 +63,8 @@ Themis is built for modern Node.js and TypeScript projects:
|
|
|
63
63
|
|
|
64
64
|
## Visuals
|
|
65
65
|
|
|
66
|
-
- Real Themis brand mark: [`src/assets/
|
|
66
|
+
- Real Themis brand mark: [`src/assets/themisLogo.png`](src/assets/themisLogo.png)
|
|
67
|
+
- Verdict engine art: [`src/assets/themisVerdictEngine.png`](src/assets/themisVerdictEngine.png)
|
|
67
68
|
- HTML verdict report art: [`src/assets/themisReport.png`](src/assets/themisReport.png)
|
|
68
69
|
- Background art used by the report: [`src/assets/themisBg.png`](src/assets/themisBg.png)
|
|
69
70
|
|
package/package.json
CHANGED