agentgui 1.0.962 → 1.0.964
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/.claude/workflows/gui-ux-craft.js +101 -0
- package/AGENTS.md +40 -38
- package/PUNCHLIST-PARITY.md +6 -0
- package/PUNCHLIST-UX.md +222 -0
- package/lib/http-handler.js +62 -1
- package/package.json +1 -1
- package/scripts/validate-mutations.mjs +39 -13
- package/site/app/index.html +14 -4
- package/site/app/js/app.js +296 -72
- package/site/app/js/backend.js +1 -0
- package/site/app/vendor/anentrypoint-design/247420.css +490 -123
- package/site/app/vendor/anentrypoint-design/247420.js +14 -14
package/site/app/js/backend.js
CHANGED
|
@@ -120,6 +120,7 @@ export async function statPath(base, p) {
|
|
|
120
120
|
export function renameEntry(base, filePath, newName) { return mutateJSON(base, '/api/rename', { path: filePath, newName }); }
|
|
121
121
|
export function deleteEntry(base, filePath, recursive) { return mutateJSON(base, '/api/delete', { path: filePath, recursive: !!recursive }); }
|
|
122
122
|
export function makeDir(base, dirPath, name) { return mutateJSON(base, '/api/mkdir', { dir: dirPath, name }); }
|
|
123
|
+
export function moveEntry(base, filePath, destDir, overwrite) { return mutateJSON(base, '/api/move', { path: filePath, destDir, overwrite: !!overwrite }); }
|
|
123
124
|
|
|
124
125
|
// Upload a File/Blob as raw bytes (PUT /api/upload-file). onProgress is not
|
|
125
126
|
// available via fetch streaming everywhere, so progress is per-file (done or
|