BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/aurora/aurora-ai-plan

Aurora AI Plan

aurora-dinglebear-ai/aurora-ai-plan
UnverifiedBlock

Aurora-native plan parity surface from AI Elements.

Install it

npx shadcn@latest add https://raw.githubusercontent.com/dinglebear-ai/aurora/main/aurora-ai-plan.json

Source

registry/aurora/blocks/ai/elements/plan.tsxraw.githubusercontent.com/dinglebear-ai/aurora/main/aurora-ai-plan.json · first 6 KB
1"use client"
2
3import * as React from "react"
4import { Check, CircleAlert, ListChecks } from "lucide-react"
5
6// ---------------------------------------------------------------------------
7// Aurora "Plan" — execution-plan card (CD-parity).
8//
9// Self-contained shadcn-registry implementation: a titled card with a progress
10// bar and a vertical status rail (done / inprog / pending / error per step).
11// Axon orange is the AI/automation identity color; success/error use the
12// semantic token layer. No violet.
13// ---------------------------------------------------------------------------
14
15export type PlanStepStatus = "pending" | "inprog" | "done" | "error"
16
17export interface PlanStep {
18 label: string
19 status: PlanStepStatus
20 detail?: string
21}
22
23export interface PlanProps extends React.HTMLAttributes<HTMLDivElement> {
24 title?: string
25 steps?: PlanStep[]
26 /** Show a blinking cursor after the in-progress step's label. */
27 isStreaming?: boolean
28}
29
30// Accents -------------------------------------------------------------------
31const PLAN_ACCENT = "var(--axon-orange)"
32
33// Styles: registry/aurora/styles/aurora-components.css (@layer aurora-components).
34
35// ---------------------------------------------------------------------------
36// Blinking cursor
37// ---------------------------------------------------------------------------
38
39function Cursor() {
40 return (
41 <span
42 aria-hidden="true"
43 style={{
44 display: "inline-block",
45 width: "2px",
46 height: "1em",
47 background: PLAN_ACCENT,
48 marginLeft: "2px",
49 verticalAlign: "text-bottom",
50 borderRadius: "1px",
51 animation: "aurora-plan-blink 1s step-end infinite",
52 }}
53 />
54 )
55}
56
57// ---------------------------------------------------------------------------
58// Status node (the rail markers)
59// ---------------------------------------------------------------------------
60
61const NODE_SIZE = 22
62
63function StepNode({ status }: { status: PlanStepStatus }) {
64 const base: React.CSSProperties = {
65 width: NODE_SIZE,
66 height: NODE_SIZE,
67 borderRadius: "50%",
68 flexShrink: 0,
69 display: "flex",
70 alignItems: "center",
71 justifyContent: "center",
72 boxSizing: "border-box",
73 }
74
75 if (status === "done") {
76 return (
77 <span
78 role="img"
79 aria-label="Done"
80 style={{
81 ...base,
82 border: "1.5px solid var(--aurora-success-border)",
83 background: "var(--aurora-success-surface)",
84// … truncated

What it pulls in

npm packages

  • lucide-react@^0.487.0

Other registry items

  • @aurora/aurora-tokens
  • @aurora/aurora-ai-elements
  • @aurora/aurora-thinking
  • @aurora/aurora-components

Files it writes

  • registry/aurora/blocks/ai/elements/plan.tsx

Facts

Registry
aurora
Type
registry:block
Access
Unverified
Files written
1
Licence
AGPL-3.0
In the index
at or before 2026-08-13
Last confirmed
today

Go to the source

aurora.dinglebear.ai dinglebear-ai/aurora on GitHub Raw registry item This item as JSON

More from aurora

All 176 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Aurora AI Actionaurora-ai-actionauroraBlocksUnverified1 dep
Aurora AI Actionsaurora-ai-actionsauroraBlocksUnverified1 dep
Aurora AI Agentaurora-ai-agentauroraBlocksUnverified1 dep
Aurora AI Image Gridaurora-ai-ai-image-gridauroraBlocksUnverified1 dep
Aurora AI Attachmentsaurora-ai-attachmentsauroraBlocksUnverified1 dep
Aurora AI Audio Playeraurora-ai-audio-playerauroraBlocksUnverified1 dep
Aurora AI Branchaurora-ai-branchauroraBlocksUnverified1 dep
Aurora AI Canvasaurora-ai-canvasauroraBlocksUnverified1 dep

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex