multica-ai/multica · error
close temp workspaces root marker: %w
Error message
close temp workspaces root marker: %w
What it means
Error "close temp workspaces root marker: %w" thrown in multica-ai/multica.
Source
Thrown at server/internal/daemon/execenv/context.go:107
// 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)
}
return nil
}
// writeContextFiles renders and writes .agent_context/issue_context.md and
// skills into the appropriate provider-native location.
//
// Claude: skills → {workDir}/.claude/skills/{name}/SKILL.md (native discovery)
// CodeBuddy: skills → {workDir}/.codebuddy/skills/{name}/SKILL.md (native discovery — CodeBuddy is a Claude Code fork but uses its own config directory, not .claude/; see https://www.codebuddy.ai/docs/cli/skills)
// Codex: skills → handled separately in Prepare via codex-homeView on GitHub (pinned to 2c0912b6ec)
Solutions
- Check the temp marker file handle; retry.
When it happens
Trigger: Thrown at server/internal/daemon/execenv/context.go:107 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/1c1ffa5f93472ccc.
Report an issue: GitHub.