Files
supabase/apps/docs/features/ui/AgentSetup.tsx
Saxon Fletcher 36d2982af4 docs: add reusable monitoring agent setup components (#49506)
<!-- CURSOR_AGENT_PR_BODY_BEGIN -->
## Stack

Draft stack extracted from `docs/monitoring`. Merge bottom-up.
Troubleshooting / debugging-guide rewrite is out of scope.

1. #49503 move inspect and advisors
2. #49501 split Studio logs from ClickHouse queries
3. #49500 treat reports as signal dashboards
4. #49502 add Observe the data hub
5. **#49506** add agent setup components ← **this PR**
6. #49504 add hire-an-agent templates
7. #49505 restructure observability nav and overview

## I have read the
[CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md)
file.

YES

## What kind of change does this PR introduce?

Docs app feature (MDX components + markdown export). Fifth layer in the
observability stack.

## What is the current behavior?

There is no shared way to render a monitoring agent prompt, schedule,
and Claude/Codex/Cursor setup instructions in both HTML and generated
markdown.

## What is the new behavior?

- `AgentSetup` and `AgentWatchSchedule` MDX components, registered for
HTML and markdown export
- Shared `monitoring-agents` data (cadence, prompt ids, harness steps)
- Opt-in `AiPrompt` markdown export (`includeInMarkdown`) so quickstarts
stay HTML-only
- Optional content-listing `subtitle` for schedule labels on cards

No agent guide pages yet — those land in #49504 so this PR stays a
reviewable code change.

## Additional context

Markdown schema handlers share the same data module as the React
components.
<!-- CURSOR_AGENT_PR_BODY_END -->

<div><a
href="https://cursor.com/agents/bc-a3cb5ece-925b-4046-b58a-5d69e9a9d794?cursor_ref=pr_footer&cursor_cta=open_in_web"><picture><source
media="(prefers-color-scheme: dark)"
srcset="https://cursor.com/assets/images/open-in-web-dark.png"><source
media="(prefers-color-scheme: light)"
srcset="https://cursor.com/assets/images/open-in-web-light.png"><img
alt="Open in Web" width="114" height="28"
src="https://cursor.com/assets/images/open-in-web-dark.png"></picture></a>&nbsp;<a
href="https://cursor.com/background-agent?bcId=bc-a3cb5ece-925b-4046-b58a-5d69e9a9d794&cursor_ref=pr_footer&cursor_cta=open_in_cursor"><picture><source
media="(prefers-color-scheme: dark)"
srcset="https://cursor.com/assets/images/open-in-cursor-dark.png"><source
media="(prefers-color-scheme: light)"
srcset="https://cursor.com/assets/images/open-in-cursor-light.png"><img
alt="Open in Cursor" width="131" height="28"
src="https://cursor.com/assets/images/open-in-cursor-dark.png"></picture></a>&nbsp;</div>

---------

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: Saxon Fletcher <SaxonF@users.noreply.github.com>
2026-09-04 13:38:37 +10:00

112 lines
2.9 KiB
TypeScript

'use client'
import {
getMonitoringAgent,
getMonitoringAgentHarnesses,
type MonitoringAgentHarnessSetup,
} from '~/data/monitoring-agents.utils'
import { Sparkles } from 'lucide-react'
import { useTheme } from 'next-themes'
import { type ReactNode } from 'react'
import ReactMarkdown from 'react-markdown'
import { ConnectionIcon } from 'ui-patterns/McpUrlBuilder'
import { AiPrompt } from './AiPrompt'
import { TabPanel, Tabs } from './Tabs'
type AgentSetupProps = {
id: string
}
const markdownComponents = {
p: ({ children }: { children?: ReactNode }) => <>{children}</>,
a: ({ href, children }: { href?: string; children?: ReactNode }) => {
if (!href) return <>{children}</>
const external = /^(?:[a-z][a-z0-9+\-.]*:|\/\/)/i.test(href)
return (
<a
href={href}
className="text-brand-link hover:underline"
{...(external ? { target: '_blank', rel: 'noreferrer noopener' } : {})}
>
{children}
</a>
)
},
code: ({ children }: { children?: ReactNode }) => (
<code className="rounded bg-surface-200 px-1 py-0.5 font-mono text-xs text-foreground">
{children}
</code>
),
}
function HarnessBody({ harness }: { harness: MonitoringAgentHarnessSetup }) {
return (
<>
<p>{harness.intro}</p>
<ol>
{harness.steps.map((step) => (
<li key={step}>
<ReactMarkdown components={markdownComponents}>{step}</ReactMarkdown>
</li>
))}
</ol>
{harness.note && (
<p>
<ReactMarkdown components={markdownComponents}>{harness.note}</ReactMarkdown>
</p>
)}
<p>
<a
href={harness.docsUrl}
className="text-brand-link hover:underline"
target="_blank"
rel="noreferrer noopener"
>
{harness.label} docs
</a>
</p>
</>
)
}
function AgentSetup({ id }: AgentSetupProps) {
const agent = getMonitoringAgent(id)
const harnesses = getMonitoringAgentHarnesses(agent)
const { resolvedTheme } = useTheme()
const theme = resolvedTheme?.includes('dark') ? 'dark' : 'light'
return (
<Tabs
defaultActiveId="prompt"
type="underlined"
size="small"
wrappable
queryGroup="agent-setup"
>
<TabPanel id="prompt" label="Prompt" icon={<Sparkles size={14} />}>
<AiPrompt id={agent.promptId} />
</TabPanel>
{harnesses.map((harness) => (
<TabPanel
key={harness.key}
id={harness.key}
label={harness.label}
icon={
<ConnectionIcon
theme={theme}
connection={harness.icon}
hasDistinctDarkIcon={harness.hasDistinctDarkIcon}
/>
}
>
<HarnessBody harness={harness} />
</TabPanel>
))}
</Tabs>
)
}
export { AgentSetup }
export type { AgentSetupProps }