@arnilo/prism 0.5.4 → 0.5.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 (41) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +10 -10
  3. package/dist/cli-runner.d.ts +8 -1
  4. package/dist/cli-runner.js +97 -7
  5. package/dist/extensions.d.ts +18 -1
  6. package/dist/extensions.js +10 -0
  7. package/dist/index.d.ts +3 -3
  8. package/dist/index.js +2 -2
  9. package/dist/run-limits.js +7 -2
  10. package/docs/cli-rpc.md +15 -1
  11. package/docs/credential-storage.md +1 -1
  12. package/docs/extension-authoring.md +8 -9
  13. package/docs/extensions.md +13 -1
  14. package/docs/graft.md +27 -5
  15. package/docs/{0.1.0-readiness.md → history/0.1.0-readiness.md} +6 -6
  16. package/docs/history/README.md +11 -0
  17. package/docs/{migrate-to-0.4.md → history/migrate-to-0.4.md} +4 -4
  18. package/docs/history/migration-0.0.md +738 -0
  19. package/docs/history/migration-0.1.md +151 -0
  20. package/docs/history/migration-0.2.md +173 -0
  21. package/docs/history/migration-0.3.md +39 -0
  22. package/docs/history/migration-0.4.md +6 -0
  23. package/docs/{persistence-credentials-multimodality-primitives.md → history/persistence-credentials-multimodality-primitives.md} +13 -13
  24. package/docs/history/release-handoffs.md +848 -0
  25. package/docs/{workflow-orchestration-primitives.md → history/workflow-orchestration-primitives.md} +11 -11
  26. package/docs/host-security.md +1 -1
  27. package/docs/index.md +160 -143
  28. package/docs/migrate-to-0.5.md +1 -1
  29. package/docs/migration.md +15 -1042
  30. package/docs/multimodal-content.md +1 -1
  31. package/docs/performance.md +1 -1
  32. package/docs/postgres-persistence.md +1 -1
  33. package/docs/provider-packages.md +20 -20
  34. package/docs/release-and-install.md +57 -842
  35. package/docs/runs-and-usage.md +2 -2
  36. package/docs/session-stores-and-branching.md +1 -122
  37. package/docs/sqlite-persistence.md +1 -1
  38. package/docs/wiki.md +46 -2
  39. package/docs/workflows.md +1 -1
  40. package/package.json +1 -1
  41. /package/docs/{workflow-tui-primitives.md → history/workflow-tui-primitives.md} +0 -0
@@ -0,0 +1,11 @@
1
+ # Documentation archive
2
+
3
+ Historical records kept verbatim for audit and freeze tests. Not read on the
4
+ hot path — do not link these pages from current-contract docs; link the live
5
+ page instead and note the archive where provenance matters.
6
+
7
+ - `migration-0.0.md` … `migration-0.4.md`: per-era release migrations (the live [migration guide](../migration.md) keeps 0.5.x only).
8
+ - `release-handoffs.md`: operator publish handoffs per release line (the live [release and install](../release-and-install.md) page keeps current install, inventory, gates, and peer policy).
9
+ - `migrate-to-0.4.md`: retired 0.3-era package reorganization guide (current line: [migrate-to-0.5.md](../migrate-to-0.5.md)).
10
+ - `0.1.0-readiness.md`: frozen 0.1.x readiness record.
11
+ - `persistence-credentials-multimodality-primitives.md`, `workflow-orchestration-primitives.md`, `workflow-tui-primitives.md`: plan-era primitive-review inventories.
@@ -306,7 +306,7 @@ API page says so.
306
306
 
307
307
  ## Related APIs
308
308
 
309
- - [Release and install](release-and-install.md): package contents, peer rules, and publication.
310
- - [Migration guide](migration.md): migration history for prior releases.
311
- - [Provider packages](provider-packages.md): provider adapter behavior.
312
- - [Host security guide](host-security.md): preserve host trust boundaries while upgrading.
309
+ - [Release and install](../release-and-install.md): package contents, peer rules, and publication.
310
+ - [Migration guide](../migration.md): migration history for prior releases.
311
+ - [Provider packages](../provider-packages.md): provider adapter behavior.
312
+ - [Host security guide](../host-security.md): preserve host trust boundaries while upgrading.