agent-inspect 3.5.4 → 4.0.0
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/CHANGELOG.md +14 -0
- package/README.md +4 -4
- package/docs/ARCHITECTURE.md +1 -1
- package/docs/CLI.md +21 -0
- package/docs/COMPARE.md +35 -14
- package/docs/SAFE-TRACE-SHARING.md +1 -0
- package/docs/TECHNICAL-GUIDE.md +9 -7
- package/docs/WORKSPACE.md +96 -0
- package/docs/assets/readme-product-loop.svg +12 -17
- package/package.json +12 -1
- package/packages/cli/dist/index.cjs +698 -72
- package/packages/cli/dist/index.cjs.map +1 -1
- package/packages/cli/dist/index.mjs +699 -73
- package/packages/cli/dist/index.mjs.map +1 -1
- package/packages/core/dist/exporters.cjs +4 -1
- package/packages/core/dist/exporters.cjs.map +1 -1
- package/packages/core/dist/exporters.mjs +4 -1
- package/packages/core/dist/exporters.mjs.map +1 -1
- package/packages/core/dist/workspace.cjs +483 -0
- package/packages/core/dist/workspace.cjs.map +1 -0
- package/packages/core/dist/workspace.d.cts +220 -0
- package/packages/core/dist/workspace.d.ts +220 -0
- package/packages/core/dist/workspace.mjs +461 -0
- package/packages/core/dist/workspace.mjs.map +1 -0
|
@@ -1863,7 +1863,10 @@ function buildRunReport(events, options) {
|
|
|
1863
1863
|
'<section class="tree">',
|
|
1864
1864
|
"</section>"
|
|
1865
1865
|
);
|
|
1866
|
-
const
|
|
1866
|
+
const errorsSectionEnd = treeHtml.content.includes(
|
|
1867
|
+
"<h2>Attributes (bounded)</h2>"
|
|
1868
|
+
) ? "<h2>Attributes (bounded)</h2>" : "<footer>";
|
|
1869
|
+
const errorsSection = treeHtml.content.includes("<h2>Errors</h2>") ? extractHtmlFragment(treeHtml.content, "<h2>Errors</h2>", errorsSectionEnd) : "";
|
|
1867
1870
|
const attrsSection = treeHtml.content.includes("<h2>Attributes (bounded)</h2>") ? extractHtmlFragment(
|
|
1868
1871
|
treeHtml.content,
|
|
1869
1872
|
"<h2>Attributes (bounded)</h2>",
|