mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-05-17 12:31:20 +00:00
Adds the core _diff_viewer plugin for viewing staged, unstaged, and untracked working-tree changes in the right canvas and window modal. Includes context-aware workspace resolution, safe read-only Git collection, zero-line .gitkeep filtering, unified diff rendering, and focused diff collection tests.
14 lines
427 B
HTML
14 lines
427 B
HTML
<html
|
|
class="diff-viewer-modal modal-no-backdrop"
|
|
data-canvas-surface="diff"
|
|
data-canvas-modal-path="/plugins/_diff_viewer/webui/main.html"
|
|
data-canvas-dock-title="Open Diff in canvas"
|
|
data-canvas-dock-icon="dock_to_right"
|
|
>
|
|
<head>
|
|
<title>Diff</title>
|
|
</head>
|
|
<body class="diff-viewer-modal-body">
|
|
<x-component path="/plugins/_diff_viewer/webui/diff-viewer-panel.html" mode="modal"></x-component>
|
|
</body>
|
|
</html>
|