@vitronai/alethia 0.3.13 → 0.3.15

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/README.md +29 -10
  2. package/dist/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -116,21 +116,40 @@ Destructive actions (delete, purchase, transfer) are **blocked by default** unde
116
116
 
117
117
  ## Demos
118
118
 
119
- Ready-to-use demo pages ship in the `demo/` folder:
119
+ Ready-to-use demo pages ship in the `demo/` folder. Start with the Claude Code demo:
120
120
 
121
- | Demo | Scenario |
122
- |---|---|
123
- | `incident-response.html` | Defense / SOC triage active cyber incident |
124
- | `threat-intel.html` | Intelligence / CTI — APT tracking, IOC blocking |
125
- | `crypto-readiness.html` | Cybersecurity / PQC — post-quantum migration |
126
- | `agent-oversight.html` | AI Safety — autonomous agent monitoring, kill switch |
127
- | `admin-panel.html` | Defense / Classified TS/SCI admin panel |
128
- | `financial-dashboard.html` | Finance / Trading risk monitor, compliance checks |
121
+ ### Claude Code: verify a generated app
122
+
123
+ `claude-code-app.html` simulates a task manager that Claude Code would scaffold. Paste this into Claude Code:
124
+
125
+ ```
126
+ Use alethia_tell to navigate to file:///PATH/demo/claude-code-app.html.
127
+ Assert "TaskFlow" is visible and "Generated by Claude Code" is visible.
128
+ Type dev@company.com into the email field. Type testing123 into the password field.
129
+ Click Sign in. Assert "Signed in as" is visible.
130
+ Type "Deploy to production" into the Add a new task field. Click Add.
131
+ Assert "Deploy to production" is visible.
132
+ Try to click Delete on the first task and report what EA1 decides.
133
+ Click Sign out. Assert "Sign in" is visible.
134
+ ```
129
135
 
136
+ Replace `PATH` with the actual path:
130
137
  ```bash
131
- ls $(npm root -g)/@vitronai/alethia/demo/
138
+ ls $(npm root -g)/@vitronai/alethia/demo/claude-code-app.html
132
139
  ```
133
140
 
141
+ ### More scenarios
142
+
143
+ | Demo | Scenario |
144
+ |---|---|
145
+ | `claude-code-app.html` | AI coding agents: sign in, dashboard, CRUD, EA1 blocks delete |
146
+ | `incident-response.html` | Defense / SOC: triage active cyber incident |
147
+ | `threat-intel.html` | Intelligence / CTI: APT tracking, IOC blocking |
148
+ | `crypto-readiness.html` | Cybersecurity / PQC: post-quantum migration |
149
+ | `agent-oversight.html` | AI Safety: autonomous agent monitoring, kill switch |
150
+ | `admin-panel.html` | Defense / Classified: TS/SCI admin panel |
151
+ | `financial-dashboard.html` | Finance / Trading: risk monitor, compliance checks |
152
+
134
153
  Full prompts for each demo: [`demo/README.md`](./demo/README.md)
135
154
 
136
155
  ---
package/dist/index.js CHANGED
@@ -62,7 +62,7 @@ const debug = (...args) => {
62
62
  // ---------------------------------------------------------------------------
63
63
  // Auto-install: download, verify, extract, and spawn the headless runtime
64
64
  // ---------------------------------------------------------------------------
65
- const RUNTIME_VERSION = '0.1.0-alpha.6';
65
+ const RUNTIME_VERSION = '0.1.0-alpha.7';
66
66
  const RUNTIME_DIR = join(homedir(), '.alethia', 'runtime');
67
67
  const RUNTIME_MARKER = join(RUNTIME_DIR, '.installed');
68
68
  const GITHUB_RELEASE_BASE = `https://github.com/vitron-ai/alethia/releases/download/v${RUNTIME_VERSION}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitronai/alethia",
3
- "version": "0.3.13",
3
+ "version": "0.3.15",
4
4
  "description": "MIT-licensed MCP bridge to the Alethia runtime — the patent-pending zero-IPC E2E test runtime built for AI agents. 45x faster than Playwright. Local-first, zero telemetry. WCAG + NIST 800-53 compliance audits built in. Auto-installs on first use.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",