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

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 +27 -7
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  AIOC is a governance-first SDK for LLM agents: models can propose actions, while deterministic policies and runtime controls enforce decisions.
4
4
  It provides default-deny gates for tools and handoffs, end-to-end auditability (run records, prompt snapshots, request fingerprints), and a foundation for verifiable iteration on prompts and policies.
5
- AIOC is designed for enterprise and public-sector contexts with privacy-by-design and AI Act-aligned governance requirements.
5
+ AIOC is designed for enterprise and public-sector contexts with privacy-by-design and high-accountability (AI Act-style) governance requirements.
6
6
 
7
- Project home: [https://github.com/axiastudio/aioc](https://github.com/axiastudio/aioc)
7
+ Project home and documentation: [https://github.com/axiastudio/aioc](https://github.com/axiastudio/aioc)
8
8
 
9
9
  ## Release Status
10
10
 
@@ -15,6 +15,18 @@ Breaking changes may occur before a stable release.
15
15
  - Alpha contract (historical): `docs/ALPHA-CONTRACT.md`
16
16
  - Privacy baseline: `docs/PRIVACY-BASELINE.md`
17
17
 
18
+ ## Documentation Site
19
+
20
+ This repository also contains `aioc-docs`, a Starlight documentation app:
21
+
22
+ - app path: `apps/aioc-docs`
23
+ - source of truth for normative documents: `docs/`
24
+ - GitHub Pages target: `https://axiastudio.github.io/aioc/`
25
+ - start locally: `npm run docs:dev`
26
+ - build statically: `npm run docs:build`
27
+
28
+ The root `docs:*` commands intentionally invoke the app from inside `apps/aioc-docs` so it can use its own Node toolchain.
29
+
18
30
  ## Contact
19
31
 
20
32
  If you want to collaborate or provide feedback, write to `tiziano.lattisi@axia.studio`.
@@ -207,14 +219,22 @@ AIOC adopts the following non-negotiable principles:
207
219
  - **Bias and misalignment control**: continuous monitoring, dedicated tests, and clear mitigation/escalation mechanisms.
208
220
  - **Privacy by design and data minimization**: collect and process only what is strictly necessary, protect sensitive data by default (redaction, encryption, retention limits), and provide auditable controls for access and deletion.
209
221
 
210
- ## Governance References
222
+ ## Current Governance Documents
223
+
224
+ - `docs/RFC-0001-governance-first-runtime.md` (`Accepted`)
225
+ - `docs/RFC-0002-policy-gates-for-tools-and-handoffs.md` (`Accepted`)
226
+ - `docs/RFC-0003-run-record-audit-trail-and-persistence.md` (`Accepted`)
227
+ - `docs/RFC-0004-policy-outcomes-and-approval-model.md` (`Draft`)
228
+ - `docs/RFC-0005-suspended-proposals-and-approval-lifecycle.md` (`Draft`)
229
+ - `docs/PRIVACY-BASELINE.md`
230
+
231
+ ## Historical Snapshots
211
232
 
212
- - `docs/RFC-0001-governance-first-runtime.md`
213
- - `docs/RFC-0002-policy-gates-for-tools-and-handoffs.md`
214
- - `docs/RFC-0003-run-record-audit-trail-and-persistence.md`
215
233
  - `docs/ALPHA-CONTRACT.md`
216
234
  - `docs/BETA-CONTRACT.md`
217
- - `docs/PRIVACY-BASELINE.md`
235
+ - `docs/BETA-CONTRACT-AUDIT.md`
236
+ - `docs/P0-TRIAGE.md`
237
+ - `docs/PRIVACY-ADOPTION.md`
218
238
 
219
239
  ## License
220
240
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiastudio/aioc",
3
- "version": "0.1.0-beta.5",
3
+ "version": "0.1.0-beta.6",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [
@@ -26,6 +26,10 @@
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
28
  "inspect:samples": "tsx scripts/generate-aioc-inspect-samples.ts",
29
+ "docs:sync": "node scripts/sync-aioc-docs.mjs",
30
+ "docs:dev": "npm run docs:sync && cd apps/aioc-docs && zsh -lc 'npm run dev'",
31
+ "docs:build": "npm run docs:sync && cd apps/aioc-docs && zsh -lc 'npm run build'",
32
+ "docs:preview": "cd apps/aioc-docs && zsh -lc 'npm run preview'",
29
33
  "test:mistral": "tsx src/examples/mistral-smoke.ts",
30
34
  "prepack": "npm run build:package"
31
35
  },
@@ -55,7 +59,7 @@
55
59
  "bugs": {
56
60
  "url": "https://github.com/axiastudio/aioc/issues"
57
61
  },
58
- "homepage": "https://github.com/axiastudio/aioc",
62
+ "homepage": "https://axiastudio.github.io/aioc",
59
63
  "publishConfig": {
60
64
  "access": "public",
61
65
  "tag": "latest"