Add text helper to flow skill example (#6406)
Some checks failed
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Vulnerability Scan / pip-audit (push) Has been cancelled
Check Documentation Broken Links / Check broken links (push) Has been cancelled
Nightly Canary Release / Check for new commits (push) Has been cancelled
Nightly Canary Release / Build nightly packages (push) Has been cancelled
Nightly Canary Release / Publish nightly to PyPI (push) Has been cancelled

This commit is contained in:
Vinicius Brasil
2026-06-30 21:18:58 -07:00
committed by GitHub
parent 629f5d537b
commit 1452ee2021
2 changed files with 2 additions and 1 deletions

View File

@@ -57,7 +57,7 @@ methods:
role: Follow-up router
goal: 'Return exactly one bare value: followup or done. Do not include explanation.'
backstory: Skilled at routing reviewed research briefs.
input: "${outputs.research_brief.raw}"
input: "${'Reviewed research: ' + text(outputs, 'research_brief.raw')}"
write_followup:
listen: followup
do:

View File

@@ -1333,6 +1333,7 @@ def test_skill_documents_flow_wiring():
assert isinstance(skill, str)
assert "```yaml" in skill
assert "[Method](#method-methods)" in skill
assert "input: \"${'Reviewed research: ' + text(outputs, 'research_brief.raw')}\"" in skill
assert 'text(root, "path", "default")' in skill