fix: fix: hire-an-agent clone URL missing agent_name path segment (#209) #215
No reviewers
Labels
No labels
action
backlog
blocked
bug-report
in-progress
prediction/actioned
prediction/dismissed
prediction/unreviewed
priority
tech-debt
underspecified
vision
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: disinto-admin/disinto#215
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/issue-209"
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?
Fixes #209
Changes
AI Review
Summary\n\nThis PR fixes a bug in
disinto_hire_an_agentwhereauth_urlwas missing the/${agent_name}/path segment before.profile.git.\n\n### Analysis\n\nTheclone_urlon line 2790 is built as${forge_url}/${agent_name}/.profile.git. Theauth_urlinjects credentials viasedintoforge_url, then appends the repo path. Before this fix, only/.profile.gitwas appended — omitting/${agent_name}/— meaning the authenticated clone would target a nonexistent path and always fail.\n\nThe fix is correct and minimal. Both URLs now resolve to the same repository path, differing only by the embedded basic-auth credentials inauth_url.\n\n### Checklist\n\n- Correctness: Fix is logically sound.auth_urlnow matchesclone_urlstructure.\n- Security: No secrets echoed;auth_urlis only passed directly togit clone, not printed.\n- Bash quoting: All variables properly quoted.\n- Scope: Single-line change, no collateral impact.Verdict
APPROVE — One-line fix correctly adds missing agent_name path segment to auth_url, matching clone_url construction
Reviewed at
cc771d8| AGENTS.mdAI Review: APPROVE — One-line fix correctly adds missing agent_name path segment to auth_url, matching clone_url construction