@axiastudio/aioc 0.1.0-beta.4 → 0.1.0-beta.5

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 (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -156,6 +156,21 @@ console.log(replay.replayStats);
156
156
 
157
157
  `replayFromRunRecord(...)` does not bypass policy enforcement: in `strict` and `hybrid`, provide `runOptions.policies` when tool/handoff execution must be authorized.
158
158
 
159
+ ## Reference UI Example
160
+
161
+ This repository also contains `aioc-inspect`, a private reference example UI for visual `RunRecord` analysis:
162
+
163
+ - path: `apps/aioc-inspect`
164
+ - public sample files: `apps/aioc-inspect/public/samples`
165
+ - regenerate samples: `npm run inspect:samples`
166
+ - purpose: show one possible way to inspect, navigate, and compare `RunRecord` artifacts visually
167
+ - scope: experimental, stateless, session-only
168
+ - positioning: example application for implementors, not a hosted service or production console
169
+
170
+ `aioc-inspect` exists to demonstrate the value of the `RunRecord` contract. It should be read as one possible interpretation of the data model, not as the only intended UI for `aioc`.
171
+
172
+ ![aioc-inspect: reference UI for visual RunRecord analysis](apps/aioc-inspect/docs/aioc-inspect-overview.png)
173
+
159
174
  ## Examples
160
175
 
161
176
  | Command | Purpose | Needs API key |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiastudio/aioc",
3
- "version": "0.1.0-beta.4",
3
+ "version": "0.1.0-beta.5",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
@@ -25,6 +25,7 @@
25
25
  "example:rru:03-replay-strict": "tsx src/examples/run-record-utils-minimal/03-replay-strict.ts",
26
26
  "example:rru:04-replay-hybrid": "tsx src/examples/run-record-utils-minimal/04-replay-hybrid.ts",
27
27
  "example:non-regression": "tsx src/examples/non-regression/v1-v2-runrecord-diff.ts",
28
+ "inspect:samples": "tsx scripts/generate-aioc-inspect-samples.ts",
28
29
  "test:mistral": "tsx src/examples/mistral-smoke.ts",
29
30
  "prepack": "npm run build:package"
30
31
  },