Use workspace path, not home path #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
home = os.environ.get("HOME", str(Path.home()))@agent This incorrect, we should not use the user's home directory, we should use the workspace path to resolve these directories. The workspace is persistent, so the agent should always do their work there.
Fixed in #2 — all derived paths now use
workspace_pathinstead ofhome.