fix: fix: save full Claude session log on no_push for debugging (#49) #56
No reviewers
Labels
No labels
action
backlog
blocked
in-progress
priority
tech-debt
underspecified
vision
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: johba/disinto#56
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/issue-49"
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 #49
Changes
AI Review
Issues
bug
dev/dev-agent.sh:476-477: Thecp ... && logchain has no|| true. Withset -euo pipefail, ifcpfails (disk full, dest dir missing, permissions), the script exits immediately — skippingissue_block,CLAIMED=false, andworktree_cleanupon lines 492-494. The issue remains stuck inin-progressindefinitely. Compare line 467 which correctly uses|| true. Fix:cp ... 2>/dev/null || truethen log separately if needed.nit
dev/dev-agent.sh:482:_tool_callsis computed but never referenced in the log message on line 489. Dead code — remove it.Verdict
REQUEST_CHANGES — Missing || true on cp means a failing copy could abort the script before issue_block/worktree_cleanup, leaving the issue stuck in-progress
Reviewed at
a04ad73| AGENTS.mdAI Review: REQUEST_CHANGES — Missing || true on cp means a failing copy could abort the script before issue_block/worktree_cleanup, leaving the issue stuck in-progress
a04ad7372btod6d8093fa9AI Re-review (round 2)
Previous Findings
dev/dev-agent.sh:476-477(cp missing|| true) → FIXED: cp now uses2>/dev/null || trueand log runs unconditionally on the next line.dev/dev-agent.sh:482(_tool_callsunused) → FIXED: variable removed.New Issues
None.
Verdict
APPROVE — Both previous findings addressed: || true added to cp, unused _tool_calls variable removed
Reviewed at
d6d8093| Previous:a04ad73| AGENTS.mdAI Re-review (round 2): APPROVE — Both previous findings addressed: || true added to cp, unused _tool_calls variable removed