6f9801a46b
## Thinking Path
> - Paperclip is the open source app people use to manage AI agents for
work
> - The first-run experience (onboarding wizard) and the chat surfaces
(conference-room/board chat, task threads, composers) are the product's
front door — they decide whether a new operator understands "hire
agents, give them work, review results" in the first five minutes
> - Today those surfaces feel ticket-y and form-like: the wizard is a
static multi-step form that ends in an anticlimactic "Launch" screen,
the task composer and board chat behave differently from each other, and
agent-feed issue quicklooks misbehave (multiple flyouts open at once,
cards jump on hover)
> - We wanted to iterate toward a conversational, team-centric NUX — but
without risking the workflows of everyone already running Paperclip
> - This PR reworks the NUX behind a new default-OFF
`enableConferenceRoomChat` experimental flag: a capsule-motif onboarding
wizard that builds your team as you answer, a conference-room chat
surface, one shared ChatComposer across surfaces, brand-accurate status
chips, and feed-quicklook fixes — with the pre-existing UI
fork-and-frozen as `*Classic` components that flag-OFF users keep
> - The benefit is a complete, testable modern NUX that anyone can opt
into from Settings → Experimental, with zero default behavior change and
a clean path to either graduate or drop the experiment
## Linked Issues or Issue Description
No pre-existing GitHub issue — feature description per
`feature_request.yml`:
- **Problem / motivation:** Paperclip's onboarding wizard and chat
surfaces grew up as separate ticket-centric forms. New users get a
form-filling experience rather than the feeling of standing up a team;
the board chat and task threads use different composers with different
affordances; the agent feed's issue quicklook can stack multiple
popovers and shifts cards on hover.
- **Proposed solution:** A coherent NUX experiment behind one
experimental flag (`enableConferenceRoomChat`, Settings → Experimental,
default OFF): capsule onboarding wizard with an evolving team capsule,
conference-room chat, unified `ChatComposer`, team-centric copy, brand
status chips, quicklook single-flight fix. Flag-OFF users get the exact
pre-experiment UI via frozen `*Classic` forks, verified by an on/off
parity test matrix.
- **Alternatives considered:** (a) incremental unflagged restyling —
rejected: the changes interlock across surfaces and would drip risk into
every release; (b) a separate app shell / route for the new NUX —
rejected: too much divergence, the flag + classic-fork pattern keeps the
diff reviewable and reversible.
- **Roadmap alignment:** `ROADMAP.md` lists **CEO Chat** ("a
lighter-weight way to talk to leadership agents... should still resolve
to real work objects"). This experiment is groundwork in that direction
(conference-room chat resolves to issues/tasks via the same composer
used in task threads) and does not change the core task-and-comments
model.
Related PRs found in the dedup search (same area, none duplicate this
work — they target the classic wizard, which this PR intentionally
leaves intact and mergeable):
- #5385 — Coach-driven onboarding: conversational entry +
agent-companies package import
- #5378 — Onboarding wizard: reusable adapter picker + probe card
- #6636 — ui(onboarding): friendly error surface + retry for the wizard
- #7005 — fix(onboarding): explicitly await first-task wake
- #2616 — fix: restore workspace directory config in onboarding wizard
## What Changed
- **Experimental flag plumbing** — `enableConferenceRoomChat` in shared
types/validators, server instance-settings service + API, Settings →
Experimental card with explicit enable/disable copy
- **Onboarding wizard** — classic wizard forked and frozen
(`OnboardingWizardClassic`); flag-ON variant is a 5-step capsule wizard
with a persistent evolving `AgentCapsule` (gradient/glow motif),
team-centric reframed copy, and a typing-dots intro (hardened with
fake-timer tests)
- **Conference-room chat** — flag-ON board-chat surface with agent
bubble name/icon headers and copy/vote/timestamp action rows
(`AgentBubbleActionRow`)
- **Unified composer** — shared `ChatComposer` adopted across surfaces;
translucent surface + scroll-mask removal; "Agent mode"/"Plan mode"
relabels; no-assignee confirmation `AlertDialog` (new
`ui/alert-dialog.tsx` primitive); `@task` reference picker +
linkification in mentions
- **Agent feed** — single-flight issue-quicklook store (one popover at a
time), flyouts open to the left, removed hover translate-y jitter
- **Status chips** — brand-accurate task status chips behind the flag
(light/dark, 1px borders per paperclip.ing/brand)
- **Tests** — flag on/off parity matrix across IssueDetail,
NewIssueDialog, Sidebar, wizard, gate components; component tests for
all new pieces
- **Merge with `master`** — one conflict in
`ui/src/components/IssueChatThread.tsx`, resolved by keeping master's
new `AssigneeChip`/`HandoffWakeRow`/`RunStatusBadge` components inside
the flag-gated metadata-row chrome (details in commit `21a5642a`);
post-merge fixes: vitest 4 mock typing in `MarkdownEditor.test.tsx`,
flag hook made safe for provider-less mounts (master's new isolated
component tests)
- **Branch hygiene** — internal design wireframes/mockups stripped
before the PR (they live in the Paperclip issue threads)
- No user-facing documentation changes required: the flag is
intentionally experimental and self-described in the Settings card; no
existing docs reference the affected surfaces
## Verification
- `pnpm run typecheck` — green across the workspace (ui, server, shared,
plugins)
- Full UI suite (`vitest run` in `ui/`, clean worktree at this HEAD):
**1593/1595 passing, 223/224 files** — the 2 remaining failures are in
`src/components/artifacts/ArtifactCard.test.tsx` and **fail identically
on pristine `origin/master`** (pre-existing upstream, unrelated to this
branch)
- Full server suite (`vitest run` in `server/`, same clean worktree):
results in PR checks; flag plumbing covered by instance-settings tests
- Targeted post-merge resolution check: `IssueChatThread`,
`IssueChatThreadSystemNotice`, `IssueDetail`, `Sidebar`,
`ConferenceRoomChatGate`, `OnboardingWizardVariant`, `NewIssueDialog`,
`InstanceExperimentalSettings`, `MarkdownEditor` — 172/172 passing
- Manual walkthrough: flag OFF (default) → onboarding wizard, task
thread, board chat, composer all render the classic UI; flag ON via
Settings → Experimental → capsule wizard, conference-room chat, unified
composer, status chips active
- Screenshots: see below
**Flag on/off screenshots** (committed on this branch under
`screenshots/PR-8000-*`):
| Surface | Flag OFF (classic, default) | Flag ON (experimental) |
| --- | --- | --- |
| Settings → Experimental | 
| 
|
| Task thread | 
| 
|
| Home / nav | 
| 
|
| Conference Room (flag-ON only surface) | — | 
|
Capsule onboarding wizard walkthrough screenshots (flag ON) are attached
to the Paperclip design/implementation threads; the wizard requires a
fresh instance so it is captured via the e2e harness
(`tests/e2e/nux-phase4-screenshots.spec.ts`).
## Risks
- **Large surface, but gated:** all new behavior sits behind
`enableConferenceRoomChat`, default OFF; flag-OFF rendering is locked by
frozen `*Classic` forks plus an on/off parity test suite
- **Classic forks are frozen at the fork point (`e3aada1d`):** master
features added to the live thread component after that point (assignee
handoff chips, run status badge, composer mention coach) render in the
flag-ON path; the flag-OFF task thread keeps the fork-point behavior
until the experiment graduates (forks deleted) or is dropped (forks
restored as canonical). Called out for reviewer attention.
- **Merge-conflict resolution in `IssueChatThread.tsx`** (commit
`21a5642a`) deserves reviewer eyes: master's new handoff/run-status
components were kept; the base toast-style no-assignee flow remains
replaced by the AlertDialog flow introduced on this branch
- Schema/server changes are additive (one optional boolean instance
setting); no migrations of existing data
## Model Used
- Claude (Anthropic) via Claude Code running in the Paperclip agent
harness (agent: ClaudeCoder)
- Branch implemented across multiple agent sessions on Claude Opus-class
models with extended thinking + tool use (file edits, shell, Playwright
screenshots); merge/PR session model ID as reported by the harness:
`claude-fable-5` (Claude Code CLI)
- All code was agent-authored and board-reviewed through Paperclip issue
threads (plans, wireframes, confirmations) before merging
## Checklist
- [x] I have included a thinking path that traces from project context
to this change
- [x] I have specified the model used (with version and capability
details)
- [x] I have checked ROADMAP.md and confirmed this PR does not duplicate
planned core work
- [x] I have searched GitHub for duplicate or related PRs and linked
them above
- [x] I have either (a) linked existing issues with `Fixes: #` / `Closes
#` / `Refs #` OR (b) described the issue in-PR following the relevant
issue template
- [x] I have run tests locally and they pass
- [x] I have added or updated tests where applicable
- [x] If this change affects the UI, I have included before/after
screenshots
- [x] I have updated relevant documentation to reflect my changes (none
required — experimental flag, self-documenting Settings card; noted
above)
- [x] I have considered and documented any risks above
- [x] All Paperclip CI gates are green (run 3 on `8af3041a`: all 16
gates SUCCESS, incl. e2e and all 4 serialized-suite shards)
- [x] Greptile is 5/5 with no open P2s, recommendations, or follow-ups
(re-review verdict: Confidence 5/5, “Safe to merge”; all 4 round-1
findings fixed + confirmed resolved; both summary notes addressed in
`8af3041a`)
- [x] I will address all Greptile and reviewer comments before
requesting merge
---------
Co-authored-by: Paperclip <noreply@paperclip.ing>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
482 lines
16 KiB
TypeScript
482 lines
16 KiB
TypeScript
import { useState, useRef, useEffect, useCallback, useMemo } from "react";
|
|
import { useQuery, useQueryClient } from "@tanstack/react-query";
|
|
import type { IssueComment } from "@paperclipai/shared";
|
|
import { issuesApi } from "../api/issues";
|
|
import { heartbeatsApi } from "../api/heartbeats";
|
|
import { queryKeys } from "../lib/queryKeys";
|
|
import { Button } from "@/components/ui/button";
|
|
import { MarkdownBody } from "./MarkdownBody";
|
|
import { cn } from "../lib/utils";
|
|
import { Loader2, Send, CheckCircle2, ArrowRight } from "lucide-react";
|
|
|
|
interface OnboardingChatProps {
|
|
taskId: string;
|
|
agentId: string;
|
|
agentName: string;
|
|
companyName: string;
|
|
companyGoal: string;
|
|
onPlanDetected?: (planMarkdown: string) => void;
|
|
onReviewPlan?: () => void;
|
|
}
|
|
|
|
/**
|
|
* Detects whether a comment body contains a structured hiring plan.
|
|
* Looks for markdown headers or bullet lists that mention roles/positions.
|
|
*/
|
|
function detectHiringPlan(body: string): boolean {
|
|
const planPatterns = [
|
|
/##?\s*(hiring|team|org|roles|plan)/i,
|
|
/##?\s*(proposed|recommended)\s*(roles|hires|team)/i,
|
|
/\n-\s+\*\*[^*]+\*\*/g, // bullet list with bold items (role names)
|
|
/\|\s*role\s*\|/i, // markdown table with "Role" header
|
|
];
|
|
return planPatterns.some((pattern) => pattern.test(body));
|
|
}
|
|
|
|
const QUEUED_MESSAGES = [
|
|
"Heartbeat triggered, waking up...",
|
|
"Initializing...",
|
|
"Getting ready...",
|
|
];
|
|
|
|
const RUNNING_MESSAGES = [
|
|
"Working on a response...",
|
|
"Reading the conversation...",
|
|
"Thinking through the plan...",
|
|
"Drafting a response...",
|
|
"Still working...",
|
|
"Almost there...",
|
|
];
|
|
|
|
const WAITING_MESSAGES = [
|
|
"Waiting to wake up...",
|
|
"Heartbeat pending...",
|
|
"Should wake up soon...",
|
|
];
|
|
|
|
function getCyclingMessage(messages: string[], elapsed: number, agentName: string): string {
|
|
// Cycle through messages every 5 seconds
|
|
const idx = Math.floor(elapsed / 5) % messages.length;
|
|
return `${agentName} · ${messages[idx]}`;
|
|
}
|
|
|
|
function getRunStatusMessage(status: string, agentName: string, elapsed: number): string {
|
|
switch (status) {
|
|
case "queued":
|
|
return getCyclingMessage(QUEUED_MESSAGES, elapsed, agentName);
|
|
case "running":
|
|
return getCyclingMessage(RUNNING_MESSAGES, elapsed, agentName);
|
|
case "succeeded":
|
|
return `${agentName} finished`;
|
|
case "failed":
|
|
return `${agentName} encountered an error`;
|
|
case "cancelled":
|
|
return `${agentName}'s run was cancelled`;
|
|
case "timed_out":
|
|
return `${agentName}'s run timed out`;
|
|
default:
|
|
return `${agentName} is thinking...`;
|
|
}
|
|
}
|
|
|
|
export function OnboardingChat({
|
|
taskId,
|
|
agentId,
|
|
agentName,
|
|
companyName,
|
|
companyGoal,
|
|
onPlanDetected,
|
|
onReviewPlan,
|
|
}: OnboardingChatProps) {
|
|
const queryClient = useQueryClient();
|
|
const [input, setInput] = useState("");
|
|
const [sending, setSending] = useState(false);
|
|
const [detectedPlanCommentId, setDetectedPlanCommentId] = useState<
|
|
string | null
|
|
>(null);
|
|
// Track the comment ID after which we should ignore old plan detections
|
|
// (set when user sends a new message to request revisions)
|
|
const [ignoreBeforeCommentId, setIgnoreBeforeCommentId] = useState<
|
|
string | null
|
|
>(null);
|
|
const scrollRef = useRef<HTMLDivElement>(null);
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
|
|
const {
|
|
data: rawComments,
|
|
isLoading,
|
|
} = useQuery({
|
|
queryKey: queryKeys.issues.comments(taskId),
|
|
queryFn: () => issuesApi.listComments(taskId),
|
|
refetchInterval: 4000,
|
|
});
|
|
|
|
// Poll for active heartbeat run on this task
|
|
const { data: activeRun } = useQuery({
|
|
queryKey: queryKeys.issues.activeRun(taskId),
|
|
queryFn: () => heartbeatsApi.activeRunForIssue(taskId),
|
|
refetchInterval: 3000,
|
|
});
|
|
|
|
// Sort comments chronologically (oldest first) for chat-style display
|
|
const comments = useMemo(
|
|
() =>
|
|
rawComments
|
|
? [...rawComments].sort(
|
|
(a, b) =>
|
|
new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime(),
|
|
)
|
|
: undefined,
|
|
[rawComments],
|
|
);
|
|
|
|
// Auto-scroll to bottom when new comments arrive
|
|
useEffect(() => {
|
|
if (scrollRef.current) {
|
|
scrollRef.current.scrollTop = scrollRef.current.scrollHeight;
|
|
}
|
|
}, [comments?.length]);
|
|
|
|
// Detect hiring plan in agent comments.
|
|
// Only considers agent comments newer than the user's last message AND
|
|
// newer than any "ignore" marker (set when user asks for revisions).
|
|
useEffect(() => {
|
|
if (!comments || !onPlanDetected || detectedPlanCommentId) return;
|
|
|
|
// Find the cutoff — the later of the user's last message or the ignore marker
|
|
let cutoffIdx = -1;
|
|
for (let i = comments.length - 1; i >= 0; i--) {
|
|
if (comments[i].authorUserId) { cutoffIdx = i; break; }
|
|
}
|
|
if (ignoreBeforeCommentId) {
|
|
const ignoreIdx = comments.findIndex((c) => c.id === ignoreBeforeCommentId);
|
|
if (ignoreIdx >= 0) cutoffIdx = Math.max(cutoffIdx, ignoreIdx);
|
|
}
|
|
|
|
// Only scan agent comments after the cutoff
|
|
for (let i = comments.length - 1; i > cutoffIdx; i--) {
|
|
const c = comments[i];
|
|
if (c.authorAgentId && detectHiringPlan(c.body)) {
|
|
setDetectedPlanCommentId(c.id);
|
|
// Fetch the full plan document — it has richer role descriptions
|
|
issuesApi.getDocument(taskId, "plan").then((doc) => {
|
|
onPlanDetected(doc.body ?? c.body);
|
|
}).catch(() => {
|
|
onPlanDetected(c.body);
|
|
});
|
|
break;
|
|
}
|
|
}
|
|
}, [comments, onPlanDetected, detectedPlanCommentId, ignoreBeforeCommentId, taskId]);
|
|
|
|
const sendMessage = useCallback(async (body: string) => {
|
|
const trimmed = body.trim();
|
|
if (!trimmed || sending) return;
|
|
setSending(true);
|
|
try {
|
|
// Ensure the task is assigned to the CEO and in_progress before commenting.
|
|
try {
|
|
await issuesApi.update(taskId, { assigneeUserId: null });
|
|
} catch { /* may already be null */ }
|
|
try {
|
|
await issuesApi.update(taskId, {
|
|
assigneeAgentId: agentId,
|
|
status: "in_progress",
|
|
});
|
|
} catch { /* may already be assigned */ }
|
|
|
|
await issuesApi.addComment(taskId, trimmed, true, true);
|
|
setInput("");
|
|
// Clear detected plan — user is asking for revisions
|
|
const latestId = comments?.[comments.length - 1]?.id ?? null;
|
|
setIgnoreBeforeCommentId(latestId);
|
|
setDetectedPlanCommentId(null);
|
|
queryClient.invalidateQueries({
|
|
queryKey: queryKeys.issues.comments(taskId),
|
|
});
|
|
} finally {
|
|
setSending(false);
|
|
inputRef.current?.focus();
|
|
}
|
|
}, [sending, taskId, agentId, queryClient, comments]);
|
|
|
|
const handleSend = useCallback(() => {
|
|
sendMessage(input);
|
|
}, [input, sendMessage]);
|
|
|
|
const handleKeyDown = useCallback(
|
|
(e: React.KeyboardEvent) => {
|
|
if (e.key === "Enter" && !e.shiftKey) {
|
|
e.preventDefault();
|
|
handleSend();
|
|
}
|
|
},
|
|
[handleSend],
|
|
);
|
|
|
|
// Determine if we should show a status indicator
|
|
const lastComment = comments?.[comments.length - 1];
|
|
const isWaitingForAgent =
|
|
lastComment && lastComment.authorUserId && !lastComment.authorAgentId;
|
|
const hasActiveRun = activeRun && (activeRun.status === "queued" || activeRun.status === "running");
|
|
const showStatus = isWaitingForAgent || hasActiveRun;
|
|
|
|
// Elapsed timer — ticks every second while waiting
|
|
const [elapsed, setElapsed] = useState(0);
|
|
const waitingSince = useMemo(() => {
|
|
if (!showStatus || !lastComment) return null;
|
|
// Use the user's last message timestamp as the start time
|
|
if (lastComment.authorUserId) return new Date(lastComment.createdAt).getTime();
|
|
// If an active run exists, use its creation time
|
|
if (hasActiveRun && activeRun.createdAt) return new Date(activeRun.createdAt).getTime();
|
|
return null;
|
|
}, [showStatus, lastComment, hasActiveRun, activeRun]);
|
|
|
|
useEffect(() => {
|
|
if (!waitingSince) { setElapsed(0); return; }
|
|
setElapsed(Math.floor((Date.now() - waitingSince) / 1000));
|
|
const interval = setInterval(() => {
|
|
setElapsed(Math.floor((Date.now() - waitingSince) / 1000));
|
|
}, 1000);
|
|
return () => clearInterval(interval);
|
|
}, [waitingSince]);
|
|
|
|
const elapsedStr = elapsed >= 60
|
|
? `${Math.floor(elapsed / 60)}m ${elapsed % 60}s`
|
|
: `${elapsed}s`;
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className="flex items-center justify-center py-8 text-muted-foreground text-sm">
|
|
<Loader2 className="h-4 w-4 mr-2 animate-spin" />
|
|
Loading conversation...
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="flex flex-col h-full">
|
|
{/* Messages */}
|
|
<div
|
|
ref={scrollRef}
|
|
className="flex-1 overflow-y-auto space-y-3 mb-3 min-h-[180px] max-h-[320px] pr-1"
|
|
>
|
|
{/* CEO welcome message + chips — delayed reveal */}
|
|
<WelcomeMessage
|
|
agentName={agentName}
|
|
companyName={companyName}
|
|
companyGoal={companyGoal}
|
|
hasComments={Boolean(comments?.length)}
|
|
onDiscuss={() => {
|
|
setInput("I want to discuss the plan before you get started.");
|
|
inputRef.current?.focus();
|
|
}}
|
|
onStart={() => sendMessage("Yes, get started on the hiring plan!")}
|
|
/>
|
|
{comments?.map((comment) => {
|
|
const isAgent = Boolean(comment.authorAgentId);
|
|
const isPlan =
|
|
detectedPlanCommentId === comment.id;
|
|
return (
|
|
<div
|
|
key={comment.id}
|
|
className={cn(
|
|
"rounded-md px-3 py-2 text-sm",
|
|
isAgent
|
|
? "bg-muted/50 border border-border mr-8"
|
|
: "bg-accent/50 border border-accent ml-8",
|
|
)}
|
|
>
|
|
<div className="flex items-center gap-1.5 mb-1">
|
|
<span
|
|
className={cn(
|
|
"text-[10px] font-medium uppercase tracking-wide",
|
|
isAgent
|
|
? "text-muted-foreground"
|
|
: "text-foreground/70",
|
|
)}
|
|
>
|
|
{isAgent ? agentName : "You"}
|
|
</span>
|
|
{isPlan && (
|
|
<span className="inline-flex items-center gap-0.5 text-[10px] text-green-600 dark:text-green-400 font-medium">
|
|
<CheckCircle2 className="h-3 w-3" />
|
|
Hiring plan detected
|
|
</span>
|
|
)}
|
|
</div>
|
|
<div className="prose prose-sm dark:prose-invert max-w-none [&>*:first-child]:mt-0 [&>*:last-child]:mb-0">
|
|
<MarkdownBody>
|
|
{isAgent
|
|
? comment.body.replace(/\[([^\]]+)\]\([^)]+\)/g, "$1")
|
|
: comment.body}
|
|
</MarkdownBody>
|
|
</div>
|
|
</div>
|
|
);
|
|
})}
|
|
|
|
{/* Status indicator — shows real heartbeat run status */}
|
|
{showStatus && (
|
|
<div className="flex items-center justify-between text-sm text-muted-foreground px-3 py-2">
|
|
<div className="flex items-center gap-2">
|
|
{hasActiveRun ? (
|
|
<>
|
|
<span className="relative flex h-2.5 w-2.5 shrink-0">
|
|
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-cyan-400 opacity-75" />
|
|
<span className="relative inline-flex rounded-full h-2.5 w-2.5 bg-cyan-500" />
|
|
</span>
|
|
{getRunStatusMessage(activeRun.status, agentName, elapsed)}
|
|
</>
|
|
) : (
|
|
<>
|
|
<Loader2 className="h-3.5 w-3.5 animate-spin shrink-0" />
|
|
{getCyclingMessage(WAITING_MESSAGES, elapsed, agentName)}
|
|
</>
|
|
)}
|
|
</div>
|
|
<span className="text-[11px] text-muted-foreground/60 tabular-nums shrink-0">
|
|
{elapsedStr}
|
|
</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
{/* Plan ready CTA */}
|
|
{detectedPlanCommentId && onReviewPlan && (
|
|
<div className="rounded-md border border-green-500/30 bg-green-500/5 px-3 py-3 mb-3">
|
|
<div className="flex items-center justify-between gap-3">
|
|
<div className="flex items-center gap-2">
|
|
<CheckCircle2 className="h-4 w-4 text-green-500 shrink-0" />
|
|
<div>
|
|
<p className="text-sm font-medium">
|
|
{agentName} has prepared a hiring plan
|
|
</p>
|
|
<p className="text-[11px] text-muted-foreground">
|
|
Review it, make edits, then approve.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<Button size="sm" onClick={onReviewPlan}>
|
|
Review plan
|
|
<ArrowRight className="h-3.5 w-3.5 ml-1" />
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Input area */}
|
|
<div className="flex items-center gap-2 border-t border-border pt-3">
|
|
<input
|
|
ref={inputRef}
|
|
type="text"
|
|
className="flex-1 rounded-md border border-border bg-transparent px-3 py-2 text-sm outline-none focus:ring-1 focus:ring-ring placeholder:text-muted-foreground/50"
|
|
placeholder={detectedPlanCommentId ? `Ask ${agentName} to revise the plan...` : `Message ${agentName}...`}
|
|
value={input}
|
|
onChange={(e) => setInput(e.target.value)}
|
|
onKeyDown={handleKeyDown}
|
|
autoFocus={!detectedPlanCommentId}
|
|
/>
|
|
<Button
|
|
size="sm"
|
|
disabled={!input.trim() || sending}
|
|
onClick={handleSend}
|
|
className="shrink-0"
|
|
>
|
|
{sending ? (
|
|
<Loader2 className="h-3.5 w-3.5 animate-spin" />
|
|
) : (
|
|
<Send className="h-3.5 w-3.5" />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function WelcomeMessage({
|
|
agentName,
|
|
companyName,
|
|
companyGoal,
|
|
hasComments,
|
|
onDiscuss,
|
|
onStart,
|
|
}: {
|
|
agentName: string;
|
|
companyName: string;
|
|
companyGoal: string;
|
|
hasComments: boolean;
|
|
onDiscuss: () => void;
|
|
onStart: () => void;
|
|
}) {
|
|
const [phase, setPhase] = useState<"waking" | "composing" | "message" | "chips">("waking");
|
|
|
|
useEffect(() => {
|
|
const t1 = setTimeout(() => setPhase("composing"), 2500);
|
|
const t2 = setTimeout(() => setPhase("message"), 5500);
|
|
const t3 = setTimeout(() => setPhase("chips"), 6500);
|
|
return () => { clearTimeout(t1); clearTimeout(t2); clearTimeout(t3); };
|
|
}, []);
|
|
|
|
const showMessage = phase === "message" || phase === "chips";
|
|
const showChips = phase === "chips" && !hasComments;
|
|
|
|
return (
|
|
<>
|
|
{/* Message — appears after typing indicator */}
|
|
{showMessage && (
|
|
<div className="rounded-md px-3 py-2 text-sm bg-muted/50 border border-border mr-8 animate-in fade-in duration-300">
|
|
<div className="flex items-center gap-1.5 mb-1">
|
|
<span className="text-[10px] font-medium uppercase tracking-wide text-muted-foreground">
|
|
{agentName}
|
|
</span>
|
|
</div>
|
|
<p>
|
|
Hi! Thanks for bringing me on to lead <strong>{companyName}</strong>.
|
|
</p>
|
|
<p className="mt-1">
|
|
Our mission is: <em>{companyGoal}</em>
|
|
</p>
|
|
<p className="mt-1">
|
|
I'm ready to put together a plan for who we should bring on. Want me to get started?
|
|
</p>
|
|
</div>
|
|
)}
|
|
|
|
{/* Chips — fade in after message */}
|
|
{showChips && (
|
|
<div className="flex gap-2 ml-auto justify-end animate-in fade-in duration-500">
|
|
<button
|
|
className="rounded-full border border-border px-3 py-1 text-xs hover:bg-accent/50 transition-colors text-muted-foreground hover:text-foreground"
|
|
onClick={onDiscuss}
|
|
>
|
|
Let's discuss first
|
|
</button>
|
|
<button
|
|
className="rounded-full border border-foreground bg-foreground text-background px-3 py-1 text-xs hover:opacity-90 transition-opacity"
|
|
onClick={onStart}
|
|
>
|
|
Yes, get started!
|
|
</button>
|
|
</div>
|
|
)}
|
|
|
|
{/* Typing indicator — anchored at bottom of scroll area, before real status messages */}
|
|
{!showMessage && (
|
|
<div className="flex-1" />
|
|
)}
|
|
{!showMessage && (
|
|
<div className="flex items-center gap-2 text-sm text-muted-foreground px-3 py-2">
|
|
<span className="relative flex h-2.5 w-2.5 shrink-0">
|
|
<span className="animate-ping absolute inline-flex h-full w-full rounded-full bg-cyan-400 opacity-75" />
|
|
<span className="relative inline-flex rounded-full h-2.5 w-2.5 bg-cyan-500" />
|
|
</span>
|
|
{phase === "waking"
|
|
? `${agentName} is waking up...`
|
|
: `${agentName} is composing a message...`}
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
}
|