LoopFlow
Tutorial Workshop Keywords ๐ŸŽฎ LoopFlow Lab
Keywords / git:

git:

Branch / commit / push strategy. Ops & reuse

Syntax

git:
  work on a branch
  commit when the goal is met
  open a pull request

What it does

By default โ€” no block โ€” LoopFlow works on a branch, commits when the goal is met, and never pushes to main/master. A git: block refines: work in place / on a branch / in a worktree; commit when the goal is met / each cycle / each story / never; push when done; open a pull request. Cascades file โ†’ loop.

Example

git:
  work on a branch
  commit when the goal is met
  push when done
  open a pull request
examples/git_policy.loop

How it runs

refines โ†“refines โ†“ built-in default ยท branch + commit when done ยท no push file-level git: block ยท applies to every loop in the file per-loop git: block ยท refines that one loop ๐Ÿ”’ neverpush to main always on โ€”can't beoverridden
Three layers, each refining the one above. The protected-branch rule sits outside all of them: pushing to main/master is always refused.

Related