Agent Workflow Planner

A guided launch workflow surface mixing checkpoints, playbooks, and handoffs so agents and humans stay aligned.

Features

  • Structured Steps: Styled checkpoint list clarifies status, owners, and ETAs
  • Playbook Drawer: Expandable templates show detailed task sequences with handoffs
  • Action Queue: Distinguish agent vs human items for immediate follow-up
  • Chat Ready: Compact layout fits inside messages without horizontal scroll

Examples

Launch Template

Week of March 17

Launch readiness workflow

Agent-driven

Checkpoints, playbooks, and next steps orchestrated between agents and humans.

Checkpoints

3 milestones
1

Scope requirements

Owner · Agent Meridian

Due today

Validated against sales requests

2

Design handoff

Owner · Agent Relay

12:30 PM

Upload updated figma annotations

3

Ops enablement

Owner · Agent Orbit

Tomorrow

Prep Notion page + Loom walkthrough

Playbooks

2 templates

Steps

  1. Provision API keys
  2. Sync policies
  3. Validate prompt stack

Handoff: Human QA review

Next actions

3 queued

Upload annotated design doc

Human

Agent Relay awaiting updated callouts

Approve pricing adjustments

Human

Agent Ledger prepared 3 tiered options

Generate onboarding email

Agent

Agent Author queued copy draft for review

Workflow auto-updates every hour
*Playbook data and checkpoints are fully mockable for documentation*

Customer Health Sprint

Sprint 14

Customer health rescue workflow

Agent-driven

Checkpoints, playbooks, and next steps orchestrated between agents and humans.

Checkpoints

3 milestones
1

Map risk signals

Owner · Agent Radar

Now

Pulling churn risk cohorts

2

Prep outreach sequences

Owner · Agent Story

15:30

Draft sequences for top 50 accounts

3

Enable playbooks

Owner · Agent Relay

Tomorrow

Playbooks

2 templates

Steps

  1. Cluster signals
  2. Recommend offers
  3. Sync outreach

Handoff: Human CSM review

Next actions

2 queued

Approve outreach copy

Human

Agent Story awaiting legal go-ahead

Generate offer matrix

Agent

Agent Ledger building pricing flow

Workflow auto-updates every hour
*Playbook data and checkpoints are fully mockable for documentation*

Chat Embed

Workflow Coaching Chat

Planner surface embedded inside an agent conversation.

Create a rollout workflow for the new onboarding bundle and show me the checkpoints.
🗂️

Here’s the current plan. I’ll flag when handoffs need your signoff.

Week of March 17

Launch readiness workflow

Agent-driven

Checkpoints, playbooks, and next steps orchestrated between agents and humans.

Checkpoints

3 milestones
1

Scope requirements

Owner · Agent Meridian

Due today

Validated against sales requests

2

Design handoff

Owner · Agent Relay

12:30 PM

Upload updated figma annotations

3

Ops enablement

Owner · Agent Orbit

Tomorrow

Prep Notion page + Loom walkthrough

Playbooks

2 templates

Steps

  1. Provision API keys
  2. Sync policies
  3. Validate prompt stack

Handoff: Human QA review

Next actions

3 queued

Upload annotated design doc

Human

Agent Relay awaiting updated callouts

Approve pricing adjustments

Human

Agent Ledger prepared 3 tiered options

Generate onboarding email

Agent

Agent Author queued copy draft for review

Workflow auto-updates every hour
*Playbook data and checkpoints are fully mockable for documentation*

Installation

npx shadcn add "https://agents-ui-kit.com/c/agent-workflow-planner.json"

API Reference

AgentWorkflowPlanner

PropTypeDefaultDescription
programNamestring"Launch readiness"Header title
timeframestring"Week of March 17"Subtitle text
checkpointsWorkflowCheckpoint[]Sample checkpointsStep list data
playbooksWorkflowPlaybook[]Sample playbooksExpandable playbook cards
nextActionsActionItem[]Sample actionsQueue of pending tasks
onReplan() => void-Triggered by “Re-plan the week” button
onAcknowledge(item: ActionItem) => void-Invoked when marking action complete
classNamestring-Tailwind overrides

Types

interface WorkflowCheckpoint {
  id: string
  title: string
  owner: string
  eta: string
  status: "upcoming" | "active" | "done"
  notes?: string
}

interface WorkflowPlaybook {
  label: string
  description: string
  tasks: string[]
  handoff?: string
}

interface ActionItem {
  id: string
  label: string
  detail: string
  type: "agent" | "human"
}

Design Notes

  • max-w-4xl constraint keeps the layout tight across docs and embeds
  • Step badges reuse blue/emerald palette from other agent components
  • Expand behavior is stored locally but controlled via props for integration