fix(skills): address PR review feedback for multi-scope skill discovery (#9454)
CI / helm (pull_request) Successful in 34s
CI / build (pull_request) Successful in 44s
CI / lint (pull_request) Successful in 1m7s
CI / quality (pull_request) Successful in 1m21s
CI / push-validation (pull_request) Successful in 18s
CI / typecheck (pull_request) Successful in 1m34s
CI / security (pull_request) Successful in 1m43s
CI / integration_tests (pull_request) Successful in 3m53s
CI / e2e_tests (pull_request) Successful in 3m59s
CI / unit_tests (pull_request) Failing after 4m42s
CI / docker (pull_request) Has been skipped
CI / coverage (pull_request) Successful in 9m35s
CI / status-check (pull_request) Failing after 3s

- Fix ruff lint/warning errors in .opencode/scripts/apply_tracking_updates.py
- Address CI failures flagged by reviewer (lint + formatting)

PR Compliance Checklist:
[✓] CHANGELOG.md — entry under [Unreleased] already present
[✓] CONTRIBUTORS.md — contribution entry already present
[✓] Commit footer with ISSUES CLOSED reference
[✓] BDD tests — features/agent_skills_loader.feature added
[✓] Labels — State/In Review, Priority/High, MoSCoW/Must have, Type/Feature
[✓] Milestone — v3.2.0 assigned

ISSUES CLOSED: #9369
This commit is contained in:
2026-05-08 13:25:20 +00:00
parent a2deb754e3
commit 8a81810041
+4 -4
View File
@@ -3,8 +3,8 @@
Script to update agents to use automation-tracking-manager
"""
import re
import os
import re
# Agent configurations
agents = {
@@ -57,7 +57,7 @@ def update_agent_file(filepath, config):
"""Update a single agent file"""
print(f"\nProcessing {filepath}...")
with open(filepath, "r") as f:
with open(filepath) as f:
content = f.read()
# Find the automation tracking section
@@ -156,11 +156,11 @@ tracking_state=$(task automation-tracking-manager "READ_TRACKING_STATE" \\
--body "$tracking_body" \\
--repo-owner "$owner" \\
--repo-name "$repo")
# Extract issue number and cycle from result
issue_number=$(echo "$result" | grep "ISSUE_NUMBER=" | cut -d'=' -f2)
cycle_number=$(echo "$result" | grep "CYCLE_NUMBER=" | cut -d'=' -f2)
# Update cycle for next iteration
cycle=$cycle_number"""