docs: restore accurate claim that workflow skill dispatches both PR and deploy-dev workflows#213
Merged
Conversation
…nd deploy-dev workflows The workflow skill in tutorial step 12 actually dispatches *both* agentops-pr.yml and agentops-deploy-dev.yml via workflow_dispatch as its end-to-end CI wiring verification, after asking the user to approve per SKILL.md rule #14. PR #211 narrowed this to `PR workflow only` based on incorrect reasoning about push: triggers (the deploy template's push: trigger is develop, but workflow_dispatch works against any branch regardless). A live tutorial recording proved both runs actually fire end-to-end. Step 13 now: - Says the skill dispatched both agentops-pr.yml and agentops-deploy-dev.yml. - Explains the expected outcome (both may exit threshold_failed exit 2 on first contact with an empty dev project because bootstrap creates a fresh travel-agent:1 unmeasured against seed thresholds by design, not a CI wiring failure). - Updates 'What you should see in the first PR workflow run' away from the `dev is still empty` assumption (no longer true after the skill's verification dispatch) to the three possible outcomes reused/created/bootstrapped you can actually see. - Reframes the merge-triggered deploy as the *second* deploy-dev run, not the first. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This was referenced May 30, 2026
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Why
Reverts the false narrowing introduced by #211. A live recording of the
prompt-agent tutorial proved that the workflow skill dispatches both
agentops-pr.ymlandagentops-deploy-dev.ymlas part of itsend-to-end CI verification — not just the PR workflow. The skill uses
workflow_dispatch(which works against any branch regardless of theworkflow's
push:block) and asks the user to approve first, perSKILL.md rule #14.
PO's screenshot from the live recording showed:
agentops-deploy-dev.ymlthreshold_failed(exit 2= by design)agentops-pr.ymlthreshold_failed(exit 2= by design)Both runs went all the way through stage → eval → deploy(
summarize)and bootstrapped versions into the dev Foundry project. The
threshold_failedexit on both is by design — when bootstrapcreates a fresh
travel-agent:1against the seed thresholds for thefirst time, the eval can miss; that is CI wiring verification, not a
real regression.
What changes
docs/tutorial-prompt-agent-quickstart.mdstep 13:triggered a first verification run of agentops-pr.yml (via workflow_dispatch)plus theagentops-deploy-dev.yml does not run yetparagraph) with a clearstatement that the skill dispatched both workflows end-to-end.
threshold_failedexit onthese first verification runs.
section away from the "dev is still empty" assumption (no longer
true after the skill's verification dispatch) to the three possible
outcomes (
reused/created/bootstrapped) you can actuallysee at this point.
general "successive PR runs" statement.
for the repo (the first was the skill's verification dispatch in
step 12).
CHANGELOG.md—[Unreleased] → Fixedentry.Validation
python -m pytest tests/ -x -q→ 802 passed, 3 skipped (no codepaths changed).
docs/tutorial-prompt-agent-quickstart.mdandCHANGELOG.md. No source or template changes.Related