dev-loop

Route Kanban backlog items through four phases via Supabase state updates.

Updated Feb 3, 2026
One-click install
npx skills add https://github.com/BedaBeda-Growth/bedabeda-growth-site --skill dev-loop-bedabeda-growth
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dev-loop
Source: https://github.com/BedaBeda-Growth/bedabeda-growth-site/tree/main/skills/dev-loop
Command: npx skills add https://github.com/BedaBeda-Growth/bedabeda-growth-site --skill dev-loop-bedabeda-growth

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

The Dev Loop orchestrates Kanban workflow by reading the work ledger, applying phase gates, and dispatching parallel runners to advance items through planning, coding, verification, and shipping without performing the work itself.

Core Features & Use Cases

  • End-to-end routing: Reads public.work_ledger, categorizes items into four phases, and routes work to dedicated runners.
  • Parallel dispatch: Launches multiple workers (Jules Plan Loop, Heartbeat, CI Verify) to process 20-30 items concurrently.
  • Non-intrusive orchestration: Never writes code or drafts plans; acts as a state-machine router and keeps context safe.

Quick Start

Trigger the Dev Loop to route the top backlog items through the four phases and present verified items ready for shipping.

Frequently Asked Questions about dev-loop

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Kanban workflow routing for backlog items using Supabase?

You can automate Kanban workflow routing by using a state-machine skill that reads the Supabase work ledger, batches items into phases, and dispatches parallel runners. It advances items through planning, coding, verification, and shipping without writing code itself.

What is parallel dispatch orchestration for software engineering workflows?

Parallel dispatch orchestration is a routing mechanism that reads a work ledger and launches multiple cloud workers concurrently. It processes 20-30 items simultaneously by sending them to dedicated handlers for planning, coding, and verification tasks.

Can I use a state machine to route work items without making direct code changes?

Yes, you can use a non-intrusive state machine to route work items safely without making direct code changes. It acts strictly as a router, applying phase gates and dispatching runners while avoiding local coding, merging, or direct PR modifications.

How do I batch Kanban work ledger items into phase gates for CI verification?

To batch Kanban work ledger items, trigger an orchestration loop that categorizes items into four phases: Needs Plan, Needs Code, Needs Review, and Ready to Ship. It then dispatches the batches to specific handlers like CI Verify for processing.

Does Supabase support concurrent cloud runners for backlog-to-ship workflows?

Supabase supports concurrent runner dispatch by maintaining the work ledger state. The orchestration state-machine reads the Supabase database, dispatches parallel workers for 20-30 items, and updates item states as they advance through the phase gates.