Objective
Update the create-agentic-workflow prompt to guide the agent toward reading pre-computed coverage artifacts (via gh run download or the actions toolset) instead of re-running the full test suite inside the workflow.
Context
From Agent Persona Exploration discussion #18250, QA-1 (Test Coverage PR Analyzer) scored 4.2/5.0. The agent doesn't proactively distinguish between "read coverage from existing CI artifacts" vs "run coverage yourself", leading to suggestions of slow, resource-intensive test reruns.
Approach
- Locate the
create-agentic-workflow prompt (likely in skills/ or .github/workflows/)
- Add guidance that distinguishes two patterns:
- Preferred: Fetch pre-computed coverage artifacts from a previous CI run using
gh run download or the actions toolset
- Fallback: Run tests to compute fresh coverage (only when no prior artifacts exist)
- Add an example snippet showing
gh run download --name coverage-report pattern
- Optionally add a reference workflow for test coverage PR analysis
Files to Modify
- Update: the
create-agentic-workflow prompt/skill file with artifact-reading guidance
- Optionally create:
.github/workflows/coverage-pr-analyzer.md as a reference workflow
Acceptance Criteria
Generated by Plan Command for issue #discussion #18250
Objective
Update the
create-agentic-workflowprompt to guide the agent toward reading pre-computed coverage artifacts (viagh run downloador theactionstoolset) instead of re-running the full test suite inside the workflow.Context
From Agent Persona Exploration discussion #18250, QA-1 (Test Coverage PR Analyzer) scored 4.2/5.0. The agent doesn't proactively distinguish between "read coverage from existing CI artifacts" vs "run coverage yourself", leading to suggestions of slow, resource-intensive test reruns.
Approach
create-agentic-workflowprompt (likely inskills/or.github/workflows/)gh run downloador theactionstoolsetgh run download --name coverage-reportpatternFiles to Modify
create-agentic-workflowprompt/skill file with artifact-reading guidance.github/workflows/coverage-pr-analyzer.mdas a reference workflowAcceptance Criteria
gh run downloadoractionstoolset for coverage artifacts by default