@assemblyline-agents/openui 6.0.0 → 6.0.1
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/README.md +4 -1
- package/dist/index.js +144 -91
- package/dist/markdown-document.d.ts +4 -0
- package/dist/markdown-document.d.ts.map +1 -0
- package/dist/markdown-document.js +14 -0
- package/dist/markdown-document.js.map +1 -0
- package/dist/markdown-text-content.d.ts +13 -0
- package/dist/markdown-text-content.d.ts.map +1 -0
- package/dist/markdown-text-content.js +37 -0
- package/dist/markdown-text-content.js.map +1 -0
- package/dist/openui-browser.js +177 -162
- package/dist/publication-verification.d.ts +4 -0
- package/dist/publication-verification.d.ts.map +1 -0
- package/dist/publication-verification.js +40 -0
- package/dist/publication-verification.js.map +1 -0
- package/dist/report-library.d.ts.map +1 -1
- package/dist/report-library.js +6 -3
- package/dist/report-library.js.map +1 -1
- package/dist/responsive-stack.d.ts +5 -5
- package/dist/tools.d.ts.map +1 -1
- package/dist/tools.js +10 -34
- package/dist/tools.js.map +1 -1
- package/package.json +3 -2
- package/plugin.json +1 -1
- package/skills/openui-artifacts/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -63,7 +63,10 @@ model never supplies HTML, CSS, JavaScript, or the final delivery URL.
|
|
|
63
63
|
OpenUI Lang or an exact `@/workspace/<file>` reference. Workspace references
|
|
64
64
|
are resolved through the current run's sandbox, remain confined below
|
|
65
65
|
`/workspace`, and are subject to the same document-size and parser policy as
|
|
66
|
-
inline input.
|
|
66
|
+
inline input. Exact `@/workspace/<file>.md` references are deterministically
|
|
67
|
+
wrapped in the standard `Stack` and Markdown-rendering `TextContent`, so a
|
|
68
|
+
faithful Markdown publication does not require the model to reproduce the
|
|
69
|
+
source. This keeps large generated reports out of tool-call payloads.
|
|
67
70
|
|
|
68
71
|
The official renderer runs with a network-disabled content security policy.
|
|
69
72
|
Published links are unlisted bearer links; use channel file delivery when an
|