diff --git a/.gitignore b/.gitignore
index d6d1bdc3..d45b1300 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
**/.DS_Store
-
-.env
\ No newline at end of file
+.env
+node_modules/
+.next/
diff --git a/kits/automation/meeting-action-agent/.env.example b/kits/automation/meeting-action-agent/.env.example
new file mode 100644
index 00000000..b68318e9
--- /dev/null
+++ b/kits/automation/meeting-action-agent/.env.example
@@ -0,0 +1,4 @@
+MEETING_ACTION_FLOW_ID="your-flow-id-here"
+LAMATIC_API_URL="https://your-org.lamatic.dev/graphql"
+LAMATIC_PROJECT_ID="your-project-id-here"
+LAMATIC_API_KEY="your-api-key-here"
\ No newline at end of file
diff --git a/kits/automation/meeting-action-agent/.gitignore b/kits/automation/meeting-action-agent/.gitignore
new file mode 100644
index 00000000..b28ea810
--- /dev/null
+++ b/kits/automation/meeting-action-agent/.gitignore
@@ -0,0 +1,27 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+.pnpm-debug.log*
+
+# env files
+.env
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
\ No newline at end of file
diff --git a/kits/automation/meeting-action-agent/README.md b/kits/automation/meeting-action-agent/README.md
new file mode 100644
index 00000000..53069090
--- /dev/null
+++ b/kits/automation/meeting-action-agent/README.md
@@ -0,0 +1,147 @@
+# π Meeting Action Items Agent
+
+> **Problem:** After meetings, notes live in one place while tasks, docs, and follow-up emails live in others β so owners, deadlines, and priorities get lost in manual cleanup.
+> **This kit:** One Lamatic flow + UI turns **pasted** notes or a transcript into **structured** decisions, **prioritized** action items (owner + deadline), a **markdown** summary, and a **ready-to-send** email draft β so youβre not re-typing the same meeting three times.
+
+Built with [Lamatic AgentKit](https://github.com/Lamatic/AgentKit) Β· [Lamatic Studio](https://studio.lamatic.ai) Β· Next.js
+
+**v1 scope:** text in (notes / pasted transcript). Audio file upload is out of scope for this kit.
+
+---
+
+## β¨ What It Does
+
+Paste any raw meeting notes, transcript, or summary and the agent will automatically extract:
+
+- β
**Key Decisions** β numbered list of decisions made in the meeting
+- π― **Action Items** β each with an owner, deadline, and priority (High / Medium / Low)
+- π **Meeting Summary** β a clean markdown report
+- π§ **Follow-up Email Draft** β ready to copy and send to your team
+
+---
+
+## ποΈ Architecture
+
+```
+User (pastes meeting notes)
+ β
+Next.js Frontend (app/page.tsx)
+ β
+Server Action (actions/orchestrate.ts)
+ β
+Lamatic Flow (API Request β LLM β API Response)
+ β
+Structured JSON output rendered in the UI
+```
+
+---
+
+## π Quick Start
+
+### Prerequisites
+
+| Tool | Version |
+|------|---------|
+| Node.js | 18+ |
+| npm | 9+ |
+| Lamatic Account | [lamatic.ai](https://lamatic.ai) |
+
+### 1. Clone the repo
+
+```bash
+git clone https://github.com/Lamatic/AgentKit.git
+cd AgentKit/kits/automation/meeting-action-agent
+```
+
+### 2. Set up environment variables
+
+```bash
+cp .env.example .env.local
+```
+
+Edit `.env.local` and fill in your values:
+
+```env
+MEETING_ACTION_FLOW_ID="your-flow-id"
+LAMATIC_API_URL="https://your-org.lamatic.dev/graphql"
+LAMATIC_PROJECT_ID="your-project-id"
+LAMATIC_API_KEY="your-api-key"
+```
+
+> **Where to find these values:**
+> - `MEETING_ACTION_FLOW_ID` β Flow URL in Lamatic Studio (the UUID)
+> - `LAMATIC_API_URL` β Settings β API Docs β Endpoint
+> - `LAMATIC_PROJECT_ID` β Settings β Project β Project ID
+> - `LAMATIC_API_KEY` β Settings β API Keys
+
+### 3. Install & run
+
+```bash
+npm install
+npm run dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) and paste your meeting notes!
+
+---
+
+## π§ Lamatic Flow Setup
+
+### Trigger
+- **Type:** API Request
+- **Input schema:** `{ "meeting_notes": "string" }`
+
+### LLM Node (Generate Text)
+- **Model:** GPT-4o / GPT-4o-mini / Gemini 1.5 Pro
+- **System prompt:** Instructs the model to extract decisions, action items, summary, and email as JSON
+- **User message:** `{{trigger.meeting_notes}}`
+
+### Response
+- **Output schema:** `{ "result": "{{LLMNode.output.generatedResponse}}" }`
+
+> See the exported flow files in the `flows/` folder.
+
+---
+
+## π Project Structure
+
+```
+kits/automation/meeting-action-agent/
+βββ .env.example # Environment variables template
+βββ .gitignore
+βββ README.md
+βββ config.json # Kit metadata
+βββ package.json
+βββ actions/
+β βββ orchestrate.ts # Server action calling Lamatic
+βββ app/
+β βββ globals.css
+β βββ layout.tsx
+β βββ page.tsx # Main UI
+βββ components/ # shadcn/ui components
+βββ flows/ # Exported Lamatic flow files
+βββ lib/
+β βββ lamatic-client.ts # Lamatic SDK client
+βββ hooks/
+```
+
+---
+
+## π Deploy to Vercel
+
+[](https://vercel.com/new/clone?repository-url=https://github.com/Lamatic/AgentKit&root-directory=kits/automation/meeting-action-agent&env=MEETING_ACTION_FLOW_ID,LAMATIC_API_URL,LAMATIC_PROJECT_ID,LAMATIC_API_KEY)
+
+1. Click the button above
+2. Set the **Root Directory** to `kits/automation/meeting-action-agent`
+3. Add all 4 environment variables
+4. Deploy!
+
+---
+
+## π€ Contributing
+
+This kit is part of [Lamatic AgentKit](https://github.com/Lamatic/AgentKit). See [CONTRIBUTING.md](../../CONTRIBUTING.md) for guidelines.
+
+## π License
+
+MIT β see [LICENSE](../../LICENSE)
diff --git a/kits/automation/meeting-action-agent/actions/orchestrate.ts b/kits/automation/meeting-action-agent/actions/orchestrate.ts
new file mode 100644
index 00000000..56553254
--- /dev/null
+++ b/kits/automation/meeting-action-agent/actions/orchestrate.ts
@@ -0,0 +1,94 @@
+"use server"
+
+import { lamaticClient } from "@/lib/lamatic-client"
+import { normalizePriority } from "@/lib/priority"
+
+type Priority = "High" | "Medium" | "Low"
+
+function extractParsed(resData: any): any {
+ // Try every possible path the Lamatic SDK might use
+ const candidates = [
+ resData?.result?.result, // {result: {result: {...}}}
+ resData?.result, // {result: {...}}
+ resData?.data?.result, // {data: {result: {...}}}
+ resData?.data, // {data: {...}}
+ resData, // top-level
+ ]
+ for (const c of candidates) {
+ if (c && typeof c === "object" && (c.decisions || c.action_items || c.summary_report)) {
+ return c
+ }
+ }
+ // If none matched, try parsing the first string candidate
+ for (const c of candidates) {
+ if (typeof c === "string") {
+ try {
+ const cleaned = c.replace(/```json\n?/g, "").replace(/```\n?/g, "").trim()
+ if (cleaned.startsWith("{")) {
+ return JSON.parse(cleaned)
+ }
+ } catch {}
+ }
+ }
+ return null
+}
+
+export async function analyzeMeeting(meetingNotes: string): Promise<{
+ success: boolean
+ data?: {
+ decisions: string[]
+ action_items: Array<{ task: string; owner: string; deadline: string; priority: Priority }>
+ summary_report: string
+ followup_email: string
+ }
+ rawResult?: string
+ error?: string
+}> {
+ try {
+ const flowId = process.env.MEETING_ACTION_FLOW_ID
+ if (!flowId) throw new Error("MEETING_ACTION_FLOW_ID is not set in environment variables.")
+
+ const resData = await lamaticClient.executeFlow(flowId, { meeting_notes: meetingNotes })
+ if (process.env.NODE_ENV !== "production") {
+ console.debug("[meeting-agent] SDK response received")
+ }
+
+ const parsed = extractParsed(resData)
+ if (process.env.NODE_ENV !== "production") {
+ console.debug("[meeting-agent] Parsed payload extracted:", Boolean(parsed))
+ }
+
+ if (!parsed) {
+ // Return raw so the UI can show something
+ return { success: true, rawResult: JSON.stringify(resData, null, 2) }
+ }
+
+ return {
+ success: true,
+ data: {
+ decisions: Array.isArray(parsed.decisions) ? parsed.decisions : [],
+ action_items: Array.isArray(parsed.action_items)
+ ? parsed.action_items.map((item: any) => ({
+ task: item.task ?? "",
+ owner: item.owner ?? "Unassigned",
+ deadline: item.deadline ?? "TBD",
+ priority: normalizePriority(item.priority ?? "medium"),
+ }))
+ : [],
+ summary_report: parsed.summary_report ?? "",
+ followup_email: parsed.followup_email ?? "",
+ },
+ }
+ } catch (error) {
+ console.error("[meeting-agent] Error during flow execution")
+ let errorMessage = "Unknown error occurred"
+ if (error instanceof Error) {
+ errorMessage = error.message
+ if (error.message.includes("fetch failed"))
+ errorMessage = "Network error: Cannot connect to the service."
+ else if (error.message.includes("API key"))
+ errorMessage = "Authentication error: Check your LAMATIC_API_KEY."
+ }
+ return { success: false, error: errorMessage }
+ }
+}
diff --git a/kits/automation/meeting-action-agent/app/globals.css b/kits/automation/meeting-action-agent/app/globals.css
new file mode 100644
index 00000000..f4a49a29
--- /dev/null
+++ b/kits/automation/meeting-action-agent/app/globals.css
@@ -0,0 +1,153 @@
+@import "tailwindcss";
+@import "tw-animate-css";
+
+@custom-variant dark (&:is(.dark *));
+
+:root {
+ --background: oklch(1 0 0);
+ --foreground: oklch(0.145 0 0);
+ --card: oklch(1 0 0);
+ --card-foreground: oklch(0.145 0 0);
+ --popover: oklch(1 0 0);
+ --popover-foreground: oklch(0.145 0 0);
+ --primary: oklch(0.205 0 0);
+ --primary-foreground: oklch(0.985 0 0);
+ --secondary: oklch(0.97 0 0);
+ --secondary-foreground: oklch(0.205 0 0);
+ --muted: oklch(0.97 0 0);
+ --muted-foreground: oklch(0.556 0 0);
+ --accent: oklch(0.97 0 0);
+ --accent-foreground: oklch(0.205 0 0);
+ --destructive: oklch(0.577 0.245 27.325);
+ --destructive-foreground: oklch(0.577 0.245 27.325);
+ --border: oklch(0.922 0 0);
+ --input: oklch(0.922 0 0);
+ --ring: oklch(0.708 0 0);
+ --chart-1: oklch(0.646 0.222 41.116);
+ --chart-2: oklch(0.6 0.118 184.704);
+ --chart-3: oklch(0.398 0.07 227.392);
+ --chart-4: oklch(0.828 0.189 84.429);
+ --chart-5: oklch(0.769 0.188 70.08);
+ --radius: 0.625rem;
+ --sidebar: oklch(0.985 0 0);
+ --sidebar-foreground: oklch(0.145 0 0);
+ --sidebar-primary: oklch(0.205 0 0);
+ --sidebar-primary-foreground: oklch(0.985 0 0);
+ --sidebar-accent: oklch(0.97 0 0);
+ --sidebar-accent-foreground: oklch(0.205 0 0);
+ --sidebar-border: oklch(0.922 0 0);
+ --sidebar-ring: oklch(0.708 0 0);
+}
+
+.dark {
+ --background: oklch(0.145 0 0);
+ --foreground: oklch(0.985 0 0);
+ --card: oklch(0.145 0 0);
+ --card-foreground: oklch(0.985 0 0);
+ --popover: oklch(0.145 0 0);
+ --popover-foreground: oklch(0.985 0 0);
+ --primary: oklch(0.985 0 0);
+ --primary-foreground: oklch(0.205 0 0);
+ --secondary: oklch(0.269 0 0);
+ --secondary-foreground: oklch(0.985 0 0);
+ --muted: oklch(0.269 0 0);
+ --muted-foreground: oklch(0.708 0 0);
+ --accent: oklch(0.269 0 0);
+ --accent-foreground: oklch(0.985 0 0);
+ --destructive: oklch(0.396 0.141 25.723);
+ --destructive-foreground: oklch(0.637 0.237 25.331);
+ --border: oklch(0.269 0 0);
+ --input: oklch(0.269 0 0);
+ --ring: oklch(0.439 0 0);
+ --chart-1: oklch(0.488 0.243 264.376);
+ --chart-2: oklch(0.696 0.17 162.48);
+ --chart-3: oklch(0.769 0.188 70.08);
+ --chart-4: oklch(0.627 0.265 303.9);
+ --chart-5: oklch(0.645 0.246 16.439);
+ --sidebar: oklch(0.205 0 0);
+ --sidebar-foreground: oklch(0.985 0 0);
+ --sidebar-primary: oklch(0.488 0.243 264.376);
+ --sidebar-primary-foreground: oklch(0.985 0 0);
+ --sidebar-accent: oklch(0.269 0 0);
+ --sidebar-accent-foreground: oklch(0.985 0 0);
+ --sidebar-border: oklch(0.269 0 0);
+ --sidebar-ring: oklch(0.439 0 0);
+}
+
+@theme inline {
+ --color-background: var(--background);
+ --color-foreground: var(--foreground);
+ --color-card: var(--card);
+ --color-card-foreground: var(--card-foreground);
+ --color-popover: var(--popover);
+ --color-popover-foreground: var(--popover-foreground);
+ --color-primary: var(--primary);
+ --color-primary-foreground: var(--primary-foreground);
+ --color-secondary: var(--secondary);
+ --color-secondary-foreground: var(--secondary-foreground);
+ --color-muted: var(--muted);
+ --color-muted-foreground: var(--muted-foreground);
+ --color-accent: var(--accent);
+ --color-accent-foreground: var(--accent-foreground);
+ --color-destructive: var(--destructive);
+ --color-destructive-foreground: var(--destructive-foreground);
+ --color-border: var(--border);
+ --color-input: var(--input);
+ --color-ring: var(--ring);
+ --color-chart-1: var(--chart-1);
+ --color-chart-2: var(--chart-2);
+ --color-chart-3: var(--chart-3);
+ --color-chart-4: var(--chart-4);
+ --color-chart-5: var(--chart-5);
+ --radius-sm: calc(var(--radius) - 4px);
+ --radius-md: calc(var(--radius) - 2px);
+ --radius-lg: var(--radius);
+ --radius-xl: calc(var(--radius) + 4px);
+ --color-sidebar: var(--sidebar);
+ --color-sidebar-foreground: var(--sidebar-foreground);
+ --color-sidebar-primary: var(--sidebar-primary);
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
+ --color-sidebar-accent: var(--sidebar-accent);
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
+ --color-sidebar-border: var(--sidebar-border);
+ --color-sidebar-ring: var(--sidebar-ring);
+}
+
+@layer base {
+ * {
+ @apply border-border outline-ring/50;
+ }
+ body {
+ @apply bg-background text-foreground;
+ }
+
+ .prose-invert {
+ color: rgb(255, 255, 255);
+ }
+
+ .prose-invert p,
+ .prose-invert ul,
+ .prose-invert ol,
+ .prose-invert li,
+ .prose-invert strong,
+ .prose-invert em,
+ .prose-invert span,
+ .prose-invert div {
+ color: rgb(229, 231, 235) !important;
+ }
+
+ .prose-invert strong {
+ color: rgb(255, 255, 255) !important;
+ font-weight: 600;
+ }
+
+ .prose-invert ul,
+ .prose-invert ol {
+ padding-left: 1.5rem;
+ margin: 0.5rem 0;
+ }
+
+ .prose-invert li {
+ margin: 0.25rem 0;
+ }
+}
diff --git a/kits/automation/meeting-action-agent/app/layout.tsx b/kits/automation/meeting-action-agent/app/layout.tsx
new file mode 100644
index 00000000..c10cf18b
--- /dev/null
+++ b/kits/automation/meeting-action-agent/app/layout.tsx
@@ -0,0 +1,28 @@
+import type { Metadata } from 'next'
+import { Geist, Geist_Mono } from 'next/font/google'
+import { Analytics } from '@vercel/analytics/next'
+import './globals.css'
+
+const _geist = Geist({ subsets: ["latin"] });
+const _geistMono = Geist_Mono({ subsets: ["latin"] });
+
+export const metadata: Metadata = {
+ title: 'Meeting Action Items Agent | Lamatic AgentKit',
+ description: 'Paste raw meeting notes and instantly extract prioritized action items, key decisions, and a follow-up email draft β powered by Lamatic AI.',
+ keywords: ['meeting', 'action items', 'AI', 'productivity', 'automation', 'lamatic'],
+}
+
+export default function RootLayout({
+ children,
+}: Readonly<{
+ children: React.ReactNode
+}>) {
+ return (
+
+
+ {children}
+
+
+
+ )
+}
diff --git a/kits/automation/meeting-action-agent/app/page.tsx b/kits/automation/meeting-action-agent/app/page.tsx
new file mode 100644
index 00000000..a7c8b98d
--- /dev/null
+++ b/kits/automation/meeting-action-agent/app/page.tsx
@@ -0,0 +1,376 @@
+"use client"
+
+import type React from "react"
+import { useState } from "react"
+import { Button } from "@/components/ui/button"
+import { Textarea } from "@/components/ui/textarea"
+import { Card } from "@/components/ui/card"
+import {
+ Loader2,
+ Sparkles,
+ ClipboardList,
+ Copy,
+ Check,
+ RotateCcw,
+ CheckCircle2,
+ AlertCircle,
+ Clock,
+ User,
+ Mail,
+ FileText,
+} from "lucide-react"
+import { analyzeMeeting } from "@/actions/orchestrate"
+import { normalizePriority } from "@/lib/priority"
+import ReactMarkdown from "react-markdown"
+import { Header } from "@/components/header"
+
+type Priority = "High" | "Medium" | "Low"
+
+type ActionItem = {
+ task: string
+ owner: string
+ deadline: string
+ priority: Priority
+}
+
+type MeetingResult = {
+ decisions: string[]
+ action_items: ActionItem[]
+ summary_report: string
+ followup_email: string
+}
+
+const priorityColors: Record = {
+ High: "bg-red-100 text-red-700 dark:bg-red-900/30 dark:text-red-400 border border-red-200 dark:border-red-800",
+ Medium:
+ "bg-yellow-100 text-yellow-700 dark:bg-yellow-900/30 dark:text-yellow-400 border border-yellow-200 dark:border-yellow-800",
+ Low: "bg-green-100 text-green-700 dark:bg-green-900/30 dark:text-green-400 border border-green-200 dark:border-green-800",
+}
+
+const SAMPLE_NOTES = `Team Sync - March 21, 2026
+
+Attendees: Alice (PM), Bob (Backend), Carol (Design), Dave (Frontend)
+
+Alice: We need to launch the new onboarding flow by April 5th. Agreed?
+All: Yes, that works.
+
+Bob: The API integration is done. Still need Carol to finish the UI mockups.
+Carol: I'll have the mockups ready by March 25th.
+Dave: Once I have the mockups I can build it in 3 days.
+
+Alice: Bob, can you also write unit tests for the new endpoints?
+Bob: Sure, I'll add those by March 28th.
+
+Alice: Dave, please also update the README with the new setup steps.
+Dave: Will do, I'll get that done by March 26th.
+
+Decision: We will use Stripe for payments instead of PayPal.
+Decision: The beta will be invite-only for the first 2 weeks.`
+
+export default function MeetingAgentPage() {
+ const [meetingNotes, setMeetingNotes] = useState("")
+ const [isLoading, setIsLoading] = useState(false)
+ const [result, setResult] = useState(null)
+ const [rawResult, setRawResult] = useState(null)
+ const [error, setError] = useState("")
+ const [copiedEmail, setCopiedEmail] = useState(false)
+ const [copiedReport, setCopiedReport] = useState(false)
+
+ const handleSubmit = async (e: React.FormEvent) => {
+ e.preventDefault()
+ if (!meetingNotes.trim()) {
+ setError("Please paste your meeting notes first.")
+ return
+ }
+ setIsLoading(true)
+ setError("")
+ setResult(null)
+ setRawResult(null)
+
+ try {
+ const response = await analyzeMeeting(meetingNotes)
+
+ if (response.success) {
+ if (response.data) {
+ // Best case: structured data parsed correctly
+ setResult(response.data)
+ } else if (response.rawResult) {
+ // rawResult may be a string or an object β try to extract data from it
+ const raw = response.rawResult as any
+ if (typeof raw === "object" && raw !== null) {
+ // It's already a parsed object β check nested shapes
+ const inner = raw?.result ?? raw
+ if (inner?.decisions || inner?.action_items) {
+ setResult({
+ decisions: Array.isArray(inner.decisions) ? inner.decisions : [],
+ action_items: Array.isArray(inner.action_items)
+ ? inner.action_items.map((item: any) => ({
+ task: item.task ?? "",
+ owner: item.owner ?? "Unassigned",
+ deadline: item.deadline ?? "TBD",
+ priority: normalizePriority(item.priority),
+ }))
+ : [],
+ summary_report: inner.summary_report ?? "",
+ followup_email: inner.followup_email ?? "",
+ })
+ } else {
+ setRawResult(JSON.stringify(raw, null, 2))
+ }
+ } else {
+ setRawResult(String(raw))
+ }
+ }
+ } else {
+ setError(response.error || "Analysis failed. Please try again.")
+ }
+ } catch (err) {
+ setError(err instanceof Error ? err.message : "An unexpected error occurred.")
+ } finally {
+ setIsLoading(false)
+ }
+ }
+
+ const handleReset = () => {
+ setResult(null)
+ setRawResult(null)
+ setMeetingNotes("")
+ setError("")
+ setCopiedEmail(false)
+ setCopiedReport(false)
+ }
+
+ const handleCopyEmail = async () => {
+ if (!result?.followup_email) return
+ await navigator.clipboard.writeText(result.followup_email)
+ setCopiedEmail(true)
+ setTimeout(() => setCopiedEmail(false), 2000)
+ }
+
+ const handleCopyReport = async () => {
+ if (!result?.summary_report) return
+ await navigator.clipboard.writeText(result.summary_report)
+ setCopiedReport(true)
+ setTimeout(() => setCopiedReport(false), 2000)
+ }
+
+ return (
+
+
+
+
+ {/* Input form β shown when no result yet */}
+ {!result && !rawResult && (
+
+
+
+
+
Meeting Action Agent
+
+ Paste your meeting notes and instantly get prioritized action items, decisions, and a follow-up email.
+
+
+
+
+
+
+
+
+ )}
+
+ {/* Results */}
+ {(result || rawResult) && (
+
+
+
Meeting Analysis
+
Here's what your AI assistant extracted from the meeting.
+
+
+ {/* Raw fallback */}
+ {rawResult && !result && (
+
+ Raw Output
+ {rawResult}
+
+ )}
+
+ {result && (
+ <>
+ {/* Decisions */}
+ {result.decisions.length > 0 && (
+
+
+
+
Key Decisions
+
+
+ {result.decisions.map((d, i) => (
+ -
+
+ {i + 1}
+
+ {d}
+
+ ))}
+
+
+ )}
+
+ {/* Action Items */}
+ {result.action_items.length > 0 && (
+
+
+
+
Action Items
+
+
+ {result.action_items.map((item, i) => (
+
+
+
{item.task}
+
+
+
+ {item.owner || "Unassigned"}
+
+
+
+ {item.deadline || "No deadline"}
+
+
+
+
+ {item.priority}
+
+
+ ))}
+
+
+ )}
+
+ {/* Summary Report */}
+ {result.summary_report && (
+
+
+
+
+
Meeting Summary
+
+
+
+
+ {result.summary_report}
+
+
+ )}
+
+ {/* Follow-up Email */}
+ {result.followup_email && (
+
+
+
+
+
Follow-up Email Draft
+
+
+
+
+ {result.followup_email}
+
+
+ )}
+ >
+ )}
+
+ {/* Reset button */}
+
+
+
+
+ )}
+
+
+ )
+}
diff --git a/kits/automation/meeting-action-agent/components.json b/kits/automation/meeting-action-agent/components.json
new file mode 100644
index 00000000..4ee62ee1
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components.json
@@ -0,0 +1,21 @@
+{
+ "$schema": "https://ui.shadcn.com/schema.json",
+ "style": "new-york",
+ "rsc": true,
+ "tsx": true,
+ "tailwind": {
+ "config": "",
+ "css": "app/globals.css",
+ "baseColor": "neutral",
+ "cssVariables": true,
+ "prefix": ""
+ },
+ "aliases": {
+ "components": "@/components",
+ "utils": "@/lib/utils",
+ "ui": "@/components/ui",
+ "lib": "@/lib",
+ "hooks": "@/hooks"
+ },
+ "iconLibrary": "lucide"
+}
diff --git a/kits/automation/meeting-action-agent/components/header.tsx b/kits/automation/meeting-action-agent/components/header.tsx
new file mode 100644
index 00000000..2c2fcc5a
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/header.tsx
@@ -0,0 +1,47 @@
+import Link from "next/link"
+import { FileText, Github } from "lucide-react"
+import Image from "next/image"
+
+export function Header() {
+ return (
+
+ )
+}
diff --git a/kits/automation/meeting-action-agent/components/theme-provider.tsx b/kits/automation/meeting-action-agent/components/theme-provider.tsx
new file mode 100644
index 00000000..55c2f6eb
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/theme-provider.tsx
@@ -0,0 +1,11 @@
+'use client'
+
+import * as React from 'react'
+import {
+ ThemeProvider as NextThemesProvider,
+ type ThemeProviderProps,
+} from 'next-themes'
+
+export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
+ return {children}
+}
diff --git a/kits/automation/meeting-action-agent/components/ui/accordion.tsx b/kits/automation/meeting-action-agent/components/ui/accordion.tsx
new file mode 100644
index 00000000..e538a33b
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/accordion.tsx
@@ -0,0 +1,66 @@
+'use client'
+
+import * as React from 'react'
+import * as AccordionPrimitive from '@radix-ui/react-accordion'
+import { ChevronDownIcon } from 'lucide-react'
+
+import { cn } from '@/lib/utils'
+
+function Accordion({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function AccordionItem({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AccordionTrigger({
+ className,
+ children,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ svg]:rotate-180',
+ className,
+ )}
+ {...props}
+ >
+ {children}
+
+
+
+ )
+}
+
+function AccordionContent({
+ className,
+ children,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ {children}
+
+ )
+}
+
+export { Accordion, AccordionItem, AccordionTrigger, AccordionContent }
diff --git a/kits/automation/meeting-action-agent/components/ui/alert-dialog.tsx b/kits/automation/meeting-action-agent/components/ui/alert-dialog.tsx
new file mode 100644
index 00000000..97044526
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/alert-dialog.tsx
@@ -0,0 +1,157 @@
+'use client'
+
+import * as React from 'react'
+import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog'
+
+import { cn } from '@/lib/utils'
+import { buttonVariants } from '@/components/ui/button'
+
+function AlertDialog({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+function AlertDialogTrigger({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogPortal({
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogOverlay({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogContent({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+
+
+
+ )
+}
+
+function AlertDialogHeader({
+ className,
+ ...props
+}: React.ComponentProps<'div'>) {
+ return (
+
+ )
+}
+
+function AlertDialogFooter({
+ className,
+ ...props
+}: React.ComponentProps<'div'>) {
+ return (
+
+ )
+}
+
+function AlertDialogTitle({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogDescription({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogAction({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AlertDialogCancel({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export {
+ AlertDialog,
+ AlertDialogPortal,
+ AlertDialogOverlay,
+ AlertDialogTrigger,
+ AlertDialogContent,
+ AlertDialogHeader,
+ AlertDialogFooter,
+ AlertDialogTitle,
+ AlertDialogDescription,
+ AlertDialogAction,
+ AlertDialogCancel,
+}
diff --git a/kits/automation/meeting-action-agent/components/ui/alert.tsx b/kits/automation/meeting-action-agent/components/ui/alert.tsx
new file mode 100644
index 00000000..e6751abe
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/alert.tsx
@@ -0,0 +1,66 @@
+import * as React from 'react'
+import { cva, type VariantProps } from 'class-variance-authority'
+
+import { cn } from '@/lib/utils'
+
+const alertVariants = cva(
+ 'relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current',
+ {
+ variants: {
+ variant: {
+ default: 'bg-card text-card-foreground',
+ destructive:
+ 'text-destructive bg-card [&>svg]:text-current *:data-[slot=alert-description]:text-destructive/90',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ },
+ },
+)
+
+function Alert({
+ className,
+ variant,
+ ...props
+}: React.ComponentProps<'div'> & VariantProps) {
+ return (
+
+ )
+}
+
+function AlertTitle({ className, ...props }: React.ComponentProps<'div'>) {
+ return (
+
+ )
+}
+
+function AlertDescription({
+ className,
+ ...props
+}: React.ComponentProps<'div'>) {
+ return (
+
+ )
+}
+
+export { Alert, AlertTitle, AlertDescription }
diff --git a/kits/automation/meeting-action-agent/components/ui/aspect-ratio.tsx b/kits/automation/meeting-action-agent/components/ui/aspect-ratio.tsx
new file mode 100644
index 00000000..40bb1208
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/aspect-ratio.tsx
@@ -0,0 +1,11 @@
+'use client'
+
+import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio'
+
+function AspectRatio({
+ ...props
+}: React.ComponentProps) {
+ return
+}
+
+export { AspectRatio }
diff --git a/kits/automation/meeting-action-agent/components/ui/avatar.tsx b/kits/automation/meeting-action-agent/components/ui/avatar.tsx
new file mode 100644
index 00000000..aa98465a
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/avatar.tsx
@@ -0,0 +1,53 @@
+'use client'
+
+import * as React from 'react'
+import * as AvatarPrimitive from '@radix-ui/react-avatar'
+
+import { cn } from '@/lib/utils'
+
+function Avatar({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AvatarImage({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+function AvatarFallback({
+ className,
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export { Avatar, AvatarImage, AvatarFallback }
diff --git a/kits/automation/meeting-action-agent/components/ui/badge.tsx b/kits/automation/meeting-action-agent/components/ui/badge.tsx
new file mode 100644
index 00000000..fc4126b7
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/badge.tsx
@@ -0,0 +1,46 @@
+import * as React from 'react'
+import { Slot } from '@radix-ui/react-slot'
+import { cva, type VariantProps } from 'class-variance-authority'
+
+import { cn } from '@/lib/utils'
+
+const badgeVariants = cva(
+ 'inline-flex items-center justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden',
+ {
+ variants: {
+ variant: {
+ default:
+ 'border-transparent bg-primary text-primary-foreground [a&]:hover:bg-primary/90',
+ secondary:
+ 'border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90',
+ destructive:
+ 'border-transparent bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60',
+ outline:
+ 'text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ },
+ },
+)
+
+function Badge({
+ className,
+ variant,
+ asChild = false,
+ ...props
+}: React.ComponentProps<'span'> &
+ VariantProps & { asChild?: boolean }) {
+ const Comp = asChild ? Slot : 'span'
+
+ return (
+
+ )
+}
+
+export { Badge, badgeVariants }
diff --git a/kits/automation/meeting-action-agent/components/ui/breadcrumb.tsx b/kits/automation/meeting-action-agent/components/ui/breadcrumb.tsx
new file mode 100644
index 00000000..1750ff26
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/breadcrumb.tsx
@@ -0,0 +1,109 @@
+import * as React from 'react'
+import { Slot } from '@radix-ui/react-slot'
+import { ChevronRight, MoreHorizontal } from 'lucide-react'
+
+import { cn } from '@/lib/utils'
+
+function Breadcrumb({ ...props }: React.ComponentProps<'nav'>) {
+ return
+}
+
+function BreadcrumbList({ className, ...props }: React.ComponentProps<'ol'>) {
+ return (
+
+ )
+}
+
+function BreadcrumbItem({ className, ...props }: React.ComponentProps<'li'>) {
+ return (
+
+ )
+}
+
+function BreadcrumbLink({
+ asChild,
+ className,
+ ...props
+}: React.ComponentProps<'a'> & {
+ asChild?: boolean
+}) {
+ const Comp = asChild ? Slot : 'a'
+
+ return (
+
+ )
+}
+
+function BreadcrumbPage({ className, ...props }: React.ComponentProps<'span'>) {
+ return (
+
+ )
+}
+
+function BreadcrumbSeparator({
+ children,
+ className,
+ ...props
+}: React.ComponentProps<'li'>) {
+ return (
+ svg]:size-3.5', className)}
+ {...props}
+ >
+ {children ?? }
+
+ )
+}
+
+function BreadcrumbEllipsis({
+ className,
+ ...props
+}: React.ComponentProps<'span'>) {
+ return (
+
+
+ More
+
+ )
+}
+
+export {
+ Breadcrumb,
+ BreadcrumbList,
+ BreadcrumbItem,
+ BreadcrumbLink,
+ BreadcrumbPage,
+ BreadcrumbSeparator,
+ BreadcrumbEllipsis,
+}
diff --git a/kits/automation/meeting-action-agent/components/ui/button-group.tsx b/kits/automation/meeting-action-agent/components/ui/button-group.tsx
new file mode 100644
index 00000000..09d44309
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/button-group.tsx
@@ -0,0 +1,83 @@
+import { Slot } from '@radix-ui/react-slot'
+import { cva, type VariantProps } from 'class-variance-authority'
+
+import { cn } from '@/lib/utils'
+import { Separator } from '@/components/ui/separator'
+
+const buttonGroupVariants = cva(
+ "flex w-fit items-stretch [&>*]:focus-visible:z-10 [&>*]:focus-visible:relative [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-md has-[>[data-slot=button-group]]:gap-2",
+ {
+ variants: {
+ orientation: {
+ horizontal:
+ '[&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:border-l-0 [&>*:not(:last-child)]:rounded-r-none',
+ vertical:
+ 'flex-col [&>*:not(:first-child)]:rounded-t-none [&>*:not(:first-child)]:border-t-0 [&>*:not(:last-child)]:rounded-b-none',
+ },
+ },
+ defaultVariants: {
+ orientation: 'horizontal',
+ },
+ },
+)
+
+function ButtonGroup({
+ className,
+ orientation,
+ ...props
+}: React.ComponentProps<'div'> & VariantProps) {
+ return (
+
+ )
+}
+
+function ButtonGroupText({
+ className,
+ asChild = false,
+ ...props
+}: React.ComponentProps<'div'> & {
+ asChild?: boolean
+}) {
+ const Comp = asChild ? Slot : 'div'
+
+ return (
+
+ )
+}
+
+function ButtonGroupSeparator({
+ className,
+ orientation = 'vertical',
+ ...props
+}: React.ComponentProps) {
+ return (
+
+ )
+}
+
+export {
+ ButtonGroup,
+ ButtonGroupSeparator,
+ ButtonGroupText,
+ buttonGroupVariants,
+}
diff --git a/kits/automation/meeting-action-agent/components/ui/button.tsx b/kits/automation/meeting-action-agent/components/ui/button.tsx
new file mode 100644
index 00000000..f64632d1
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/button.tsx
@@ -0,0 +1,60 @@
+import * as React from 'react'
+import { Slot } from '@radix-ui/react-slot'
+import { cva, type VariantProps } from 'class-variance-authority'
+
+import { cn } from '@/lib/utils'
+
+const buttonVariants = cva(
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive",
+ {
+ variants: {
+ variant: {
+ default: 'bg-primary text-primary-foreground hover:bg-primary/90',
+ destructive:
+ 'bg-destructive text-white hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60',
+ outline:
+ 'border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50',
+ secondary:
+ 'bg-secondary text-secondary-foreground hover:bg-secondary/80',
+ ghost:
+ 'hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50',
+ link: 'text-primary underline-offset-4 hover:underline',
+ },
+ size: {
+ default: 'h-9 px-4 py-2 has-[>svg]:px-3',
+ sm: 'h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5',
+ lg: 'h-10 rounded-md px-6 has-[>svg]:px-4',
+ icon: 'size-9',
+ 'icon-sm': 'size-8',
+ 'icon-lg': 'size-10',
+ },
+ },
+ defaultVariants: {
+ variant: 'default',
+ size: 'default',
+ },
+ },
+)
+
+function Button({
+ className,
+ variant,
+ size,
+ asChild = false,
+ ...props
+}: React.ComponentProps<'button'> &
+ VariantProps & {
+ asChild?: boolean
+ }) {
+ const Comp = asChild ? Slot : 'button'
+
+ return (
+
+ )
+}
+
+export { Button, buttonVariants }
diff --git a/kits/automation/meeting-action-agent/components/ui/calendar.tsx b/kits/automation/meeting-action-agent/components/ui/calendar.tsx
new file mode 100644
index 00000000..eaa373e2
--- /dev/null
+++ b/kits/automation/meeting-action-agent/components/ui/calendar.tsx
@@ -0,0 +1,213 @@
+'use client'
+
+import * as React from 'react'
+import {
+ ChevronDownIcon,
+ ChevronLeftIcon,
+ ChevronRightIcon,
+} from 'lucide-react'
+import { DayButton, DayPicker, getDefaultClassNames } from 'react-day-picker'
+
+import { cn } from '@/lib/utils'
+import { Button, buttonVariants } from '@/components/ui/button'
+
+function Calendar({
+ className,
+ classNames,
+ showOutsideDays = true,
+ captionLayout = 'label',
+ buttonVariant = 'ghost',
+ formatters,
+ components,
+ ...props
+}: React.ComponentProps & {
+ buttonVariant?: React.ComponentProps['variant']
+}) {
+ const defaultClassNames = getDefaultClassNames()
+
+ return (
+ svg]:rotate-180`,
+ String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`,
+ className,
+ )}
+ captionLayout={captionLayout}
+ formatters={{
+ formatMonthDropdown: (date) =>
+ date.toLocaleString('default', { month: 'short' }),
+ ...formatters,
+ }}
+ classNames={{
+ root: cn('w-fit', defaultClassNames.root),
+ months: cn(
+ 'flex gap-4 flex-col md:flex-row relative',
+ defaultClassNames.months,
+ ),
+ month: cn('flex flex-col w-full gap-4', defaultClassNames.month),
+ nav: cn(
+ 'flex items-center gap-1 w-full absolute top-0 inset-x-0 justify-between',
+ defaultClassNames.nav,
+ ),
+ button_previous: cn(
+ buttonVariants({ variant: buttonVariant }),
+ 'size-(--cell-size) aria-disabled:opacity-50 p-0 select-none',
+ defaultClassNames.button_previous,
+ ),
+ button_next: cn(
+ buttonVariants({ variant: buttonVariant }),
+ 'size-(--cell-size) aria-disabled:opacity-50 p-0 select-none',
+ defaultClassNames.button_next,
+ ),
+ month_caption: cn(
+ 'flex items-center justify-center h-(--cell-size) w-full px-(--cell-size)',
+ defaultClassNames.month_caption,
+ ),
+ dropdowns: cn(
+ 'w-full flex items-center text-sm font-medium justify-center h-(--cell-size) gap-1.5',
+ defaultClassNames.dropdowns,
+ ),
+ dropdown_root: cn(
+ 'relative has-focus:border-ring border border-input shadow-xs has-focus:ring-ring/50 has-focus:ring-[3px] rounded-md',
+ defaultClassNames.dropdown_root,
+ ),
+ dropdown: cn(
+ 'absolute bg-popover inset-0 opacity-0',
+ defaultClassNames.dropdown,
+ ),
+ caption_label: cn(
+ 'select-none font-medium',
+ captionLayout === 'label'
+ ? 'text-sm'
+ : 'rounded-md pl-2 pr-1 flex items-center gap-1 text-sm h-8 [&>svg]:text-muted-foreground [&>svg]:size-3.5',
+ defaultClassNames.caption_label,
+ ),
+ table: 'w-full border-collapse',
+ weekdays: cn('flex', defaultClassNames.weekdays),
+ weekday: cn(
+ 'text-muted-foreground rounded-md flex-1 font-normal text-[0.8rem] select-none',
+ defaultClassNames.weekday,
+ ),
+ week: cn('flex w-full mt-2', defaultClassNames.week),
+ week_number_header: cn(
+ 'select-none w-(--cell-size)',
+ defaultClassNames.week_number_header,
+ ),
+ week_number: cn(
+ 'text-[0.8rem] select-none text-muted-foreground',
+ defaultClassNames.week_number,
+ ),
+ day: cn(
+ 'relative w-full h-full p-0 text-center [&:first-child[data-selected=true]_button]:rounded-l-md [&:last-child[data-selected=true]_button]:rounded-r-md group/day aspect-square select-none',
+ defaultClassNames.day,
+ ),
+ range_start: cn(
+ 'rounded-l-md bg-accent',
+ defaultClassNames.range_start,
+ ),
+ range_middle: cn('rounded-none', defaultClassNames.range_middle),
+ range_end: cn('rounded-r-md bg-accent', defaultClassNames.range_end),
+ today: cn(
+ 'bg-accent text-accent-foreground rounded-md data-[selected=true]:rounded-none',
+ defaultClassNames.today,
+ ),
+ outside: cn(
+ 'text-muted-foreground aria-selected:text-muted-foreground',
+ defaultClassNames.outside,
+ ),
+ disabled: cn(
+ 'text-muted-foreground opacity-50',
+ defaultClassNames.disabled,
+ ),
+ hidden: cn('invisible', defaultClassNames.hidden),
+ ...classNames,
+ }}
+ components={{
+ Root: ({ className, rootRef, ...props }) => {
+ return (
+
+ )
+ },
+ Chevron: ({ className, orientation, ...props }) => {
+ if (orientation === 'left') {
+ return (
+
+ )
+ }
+
+ if (orientation === 'right') {
+ return (
+
+ )
+ }
+
+ return (
+
+ )
+ },
+ DayButton: CalendarDayButton,
+ WeekNumber: ({ children, ...props }) => {
+ return (
+
+
+ {children}
+
+ |
+ )
+ },
+ ...components,
+ }}
+ {...props}
+ />
+ )
+}
+
+function CalendarDayButton({
+ className,
+ day,
+ modifiers,
+ ...props
+}: React.ComponentProps) {
+ const defaultClassNames = getDefaultClassNames()
+
+ const ref = React.useRef(null)
+ React.useEffect(() => {
+ if (modifiers.focused) ref.current?.focus()
+ }, [modifiers.focused])
+
+ return (
+