fix: docs dashboard accuracy — version expansion + agent_io* search #691
Merged
Conversation
…spec 553)
Two fixes for incorrect data in the docs dashboard:
1. Expand versioned actions in parser: actions with
versions.range=[1,2,3] now expand from base name (e.g.,
extract_raw_qa) into concrete versioned actions
(extract_raw_qa_1, _2, _3). Dependencies referencing base
names are resolved to expanded names. Action count: 43→52.
2. Fix agent_io directory search: rglob("agent_io") only matched
directories named exactly "agent_io", missing agent_io_changed/
and other variants. Changed to rglob("agent_io*") with name
filtering. Fixes manifest, run_results, and event log scanning.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two P0 fixes for incorrect data in the docs dashboard:
1. Expand versioned actions (43 → 52)
Actions with
versions: {range: [1,2,3]}now expand into concrete versioned actions. Before:extract_raw_qashown as 1 action. After:extract_raw_qa_1,_2,_3shown as 3 actions. Dependencies referencing base names resolve to all expanded names.2. Fix agent_io directory search
rglob("agent_io")only matched directories named exactlyagent_io, missingagent_io_changed/and other variants. Changed torglob("agent_io*"). Fixes manifest, run_results, and event log scanning — resolves wrong workflow status ("paused" → "completed"), missing levels (0 → 36), missing runs (0 → actual count).Verification
pytest→ 7494 passed, 2 skippedruff check→ all checks passed