fix: reproduce container must mount ~/.claude.json for Claude auth #312
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
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: disinto-admin/disinto#312
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?
Problem
The reproduce container mounts
~/.claude(credentials directory) but not~/.claude.json(config file). Claude CLI fails with "Not logged in" because it cannot find its configuration.Root cause
In
docker/edge/dispatcher.sh,dispatch_reproduce()mounts~/.claudebut not~/.claude.json:Claude CLI needs both:
~/.claude/— contains.credentials.json(OAuth tokens)~/.claude.json— contains config (num startups, install method, etc.)Fix
Add
.claude.jsonmount to the docker run command:Files
docker/edge/dispatcher.sh—dispatch_reproduce()function, volume mounts section