LoopFlow
Tutorial Workshop Keywords ๐ŸŽฎ LoopFlow Lab
Keywords / use skills

use skills

Named skills the loop may invoke during plan and act. Augment

Syntax

use skills: <skill-a>, <skill-b>

What it does

Lists skills the agent is allowed to call while it works โ€” so the loop coordinates proven, reusable skills instead of one mega-prompt. Pair it with done when the skill "<name>" approves to let a review skill decide the verdict.

Example

loop "harden the upload endpoint":
  goal: no high-severity findings in the upload path
  use skills: security-review, code-review
  done when the skill "security-review" approves
  each cycle: plan, then act, then observe
  when it fails: reflect, then plan again
a loop that drives two named skills

Related