multica-ai/multica · error
create temp workspaces root marker: %w
Error message
create temp workspaces root marker: %w
What it means
Error "create temp workspaces root marker: %w" thrown in multica-ai/multica.
Source
Thrown at server/internal/daemon/execenv/context.go:97
if err := os.MkdirAll(filepath.Dir(path), 0o755); err != nil {
return fmt.Errorf("create workspaces root marker dir: %w", err)
}
if err := writeWorkspacesRootMarkerAtomic(path, data); err != nil {
return fmt.Errorf("write workspaces root marker: %w", err)
}
return nil
}
// writeWorkspacesRootMarkerAtomic writes data to path via a same-directory temp
// file plus a rename, so a concurrent reader observes either the old file or the
// complete new one — never a partial write. Mirrors the daemon-id / CLI-config
// write idiom (see writeDaemonIDFile). Perm is 0644 because the CLI's upward
// walk must be able to read the marker from a subprocess that may run under a
// different uid; the payload is non-secret.
func writeWorkspacesRootMarkerAtomic(path string, data []byte) error {
tmp, err := os.CreateTemp(filepath.Dir(path), ".daemon_task_context-*.json.tmp")
if err != nil {
return fmt.Errorf("create temp workspaces root marker: %w", err)
}
tmpPath := tmp.Name()
if _, err := tmp.Write(data); err != nil {
tmp.Close()
os.Remove(tmpPath)
return fmt.Errorf("write temp workspaces root marker: %w", err)
}
if err := tmp.Close(); err != nil {
os.Remove(tmpPath)
return fmt.Errorf("close temp workspaces root marker: %w", err)
}
if err := os.Chmod(tmpPath, 0o644); err != nil {
os.Remove(tmpPath)
return fmt.Errorf("chmod temp workspaces root marker: %w", err)
}
if err := os.Rename(tmpPath, path); err != nil {
os.Remove(tmpPath)
return fmt.Errorf("rename workspaces root marker: %w", err)View on GitHub (pinned to 2c0912b6ec)
Solutions
- Check disk space and permissions for the temp directory.
When it happens
Trigger: Thrown at server/internal/daemon/execenv/context.go:97 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of multica-ai/multica@2c0912b6ec (2026-08-15).
Data as JSON: /api/errors/e916cca2a2530832.
Report an issue: GitHub.