Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .agent/scripts/quality-loop-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -528,10 +528,10 @@ preflight_loop() {
echo ""
print_info "=== Preflight Iteration $iteration / $max_iterations ==="

local result_status
result_status=$(run_preflight_checks "$auto_fix" 2>/dev/null | tail -n 1 | tr -d '\r')

if [[ "$result_status" == "PASS" ]]; then
local result_status
result_status=$(run_preflight_checks "$auto_fix" 2>/dev/null | tail -n 1 | tr -d '\r')
if [[ "$result_status" == "PASS" ]]; then
echo ""
print_success "All preflight checks passed!"
update_state "status" "completed"
Expand Down Expand Up @@ -792,7 +792,7 @@ pr_review_loop() {
print_info "=== PR Review Iteration $iteration / $max_iterations ==="

local status
status=$(check_pr_status "$pr_number" "$wait_for_ci")
status=$(check_pr_status "$pr_number" "$wait_for_ci" | tail -n 1 | tr -d '\r')

case "$status" in
MERGED)
Expand Down
2 changes: 1 addition & 1 deletion .agent/tools/opencode/opencode-anthropic-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ aidevops follows OpenCode's credential storage:

## Version History

- **0.0.8** (latest): Current version in repository
- **0.0.9** (latest): Current version in repository
- Maintained by Anomaly (anomalyco)
- Dependencies: `@opencode-ai/plugin`, `@openauthjs/openauth`

Expand Down