Objective
Document the steps: pre-fetch artifact-staging pattern as a named, reusable example in the prompt library / documentation.
Context
From discussion #21704 (Agent Persona Exploration - 2026-03-19), the evaluation noted that the artifact-staging pattern — downloading CI artifacts in a steps: block before the agent starts — is non-obvious but essential for coverage/artifact workflows (S7 QA scenario scored 4.8/5.0).
This pattern deserves a named example so workflow authors can discover and apply it easily.
Pattern Description
steps:
- name: Download coverage artifact
uses: actions/download-artifact@v4
with:
name: coverage-report
path: /tmp/coverage
Key properties:
- Pre-fetch happens in the
steps: block, before the agent prompt runs
- Artifact names should be configurable (not hardcoded)
- Artifact content is untrusted input — should be treated accordingly
Approach
- Find where named patterns/examples are stored (check
skills/, docs/, create-agentic-workflow.md)
- Add a "Artifact Pre-Fetch Pattern" section with:
- A concrete example using
actions/download-artifact@v4
- Guidance on making artifact names configurable (avoid hardcoding
coverage-report)
- Security note: treat downloaded artifact content as untrusted input
- Link this pattern from the trigger selection section (pair with
workflow_run trigger)
Files to Modify
- The
create-agentic-workflow.md prompt or equivalent pattern library
- Relevant docs pages if a patterns/examples section exists
Acceptance Criteria
Generated by Plan Command for issue #discussion #21704 · ◷
Objective
Document the
steps:pre-fetch artifact-staging pattern as a named, reusable example in the prompt library / documentation.Context
From discussion #21704 (Agent Persona Exploration - 2026-03-19), the evaluation noted that the artifact-staging pattern — downloading CI artifacts in a
steps:block before the agent starts — is non-obvious but essential for coverage/artifact workflows (S7 QA scenario scored 4.8/5.0).This pattern deserves a named example so workflow authors can discover and apply it easily.
Pattern Description
Key properties:
steps:block, before the agent prompt runsApproach
skills/,docs/,create-agentic-workflow.md)actions/download-artifact@v4coverage-report)workflow_runtrigger)Files to Modify
create-agentic-workflow.mdprompt or equivalent pattern libraryAcceptance Criteria
workflow_runtrigger guidance