Skip to content

Commit 47a2653

Browse files
Add pics and videos for mothership
1 parent 6fd1767 commit 47a2653

File tree

14 files changed

+38
-28
lines changed

14 files changed

+38
-28
lines changed

apps/docs/components/ui/video.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ interface VideoProps {
1212
muted?: boolean
1313
playsInline?: boolean
1414
enableLightbox?: boolean
15+
width?: number
16+
height?: number
1517
}
1618

1719
export function Video({
@@ -22,6 +24,8 @@ export function Video({
2224
muted = true,
2325
playsInline = true,
2426
enableLightbox = true,
27+
width,
28+
height,
2529
}: VideoProps) {
2630
const [isLightboxOpen, setIsLightboxOpen] = useState(false)
2731

@@ -38,6 +42,8 @@ export function Video({
3842
loop={loop}
3943
muted={muted}
4044
playsInline={playsInline}
45+
width={width}
46+
height={height}
4147
className={`${className} ${enableLightbox ? 'cursor-pointer transition-opacity hover:opacity-95' : ''}`}
4248
src={getAssetUrl(src)}
4349
onClick={handleVideoClick}

apps/docs/content/docs/en/copilot/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description: Your per-workflow AI assistant for building and editing workflows.
55

66
import { Callout } from 'fumadocs-ui/components/callout'
77
import { Image } from '@/components/ui/image'
8+
import { Video } from '@/components/ui/video'
89
import { FAQ } from '@/components/ui/faq'
910

1011
Copilot is the AI assistant built into every workflow editor. It is scoped to the workflow you have open — it reads the current structure, makes changes directly, and saves checkpoints so you can revert if needed.
@@ -15,7 +16,7 @@ For workspace-wide tasks (managing multiple workflows, running research, working
1516
Copilot is a Sim-managed service. For self-hosted deployments, go to [sim.ai](https://sim.ai) → Settings → Copilot, generate a Copilot API key, then set `COPILOT_API_KEY` in your self-hosted environment.
1617
</Callout>
1718

18-
{/* TODO: Screenshot of the workflow editor with the Copilot panel open on the right side — showing a conversation with a workflow change applied. Ideally shows a message from the user, a response from Copilot, and the checkpoint icon visible on the message. */}
19+
<Video src="copilot/copilot.mp4" width={700} height={450} />
1920

2021
## What Copilot Can Do
2122

apps/docs/content/docs/en/mothership/files.mdx

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,17 @@ description: Upload, create, edit, and generate files — documents, presentatio
44
---
55

66
import { Image } from '@/components/ui/image'
7+
import { Video } from '@/components/ui/video'
78
import { FAQ } from '@/components/ui/faq'
89

9-
Describe a document, presentation, image, or visualization and Mothership creates it — streaming the content live into the resource panel as it writes. Attach any file to your message and Mothership reads it, processes it, and saves it to your workspace.
10+
<Video src="mothership/files-pipeline-deals-summarizer.mp4" width={700} height={450} />
1011

11-
{/* TODO: Screenshot of Mothership with the File Write subagent activefile content streaming into the resource panel in split or preview mode. Shows the live streaming preview experience as a document is being written. */}
12+
Describe a document, presentation, image, or visualization and Mothership creates itstreaming the content live into the resource panel as it writes. Attach any file to your message and Mothership reads it, processes it, and saves it to your workspace.
1213

1314
## Uploading Files to the Workspace
1415

1516
Attach any file directly to your Mothership message — drag it into the input, paste it, or click the attachment icon. Mothership reads the file as context and saves it to your workspace.
1617

17-
{/* TODO: Screenshot of the Mothership input area showing a file attached — e.g., a PDF or image thumbnail visible in the input before sending. */}
18-
1918
Use this to:
2019
- Hand Mothership a document and ask it to process, summarize, or extract data from it
2120
- Upload a CSV and have it create a table from it
@@ -48,6 +47,8 @@ Open a file using `@filename` or the **+** menu, then describe the change:
4847

4948
## Presentations
5049

50+
<Image src="/static/mothership/pptx-example.png" alt="Mothership resource panel showing a generated Mothership-Use-Cases.pptx file open with the title slide and first use case slide visible" width={900} height={500} />
51+
5152
Mothership can generate `.pptx` files:
5253

5354
- "Create a pitch deck for Q3 review — 8 slides covering growth, retention, and roadmap"
@@ -58,8 +59,6 @@ Mothership can generate `.pptx` files:
5859

5960
The file is saved to your workspace and can be downloaded.
6061

61-
{/* TODO: Screenshot of the resource panel with a generated .pptx file open or a download prompt visible, showing the file name and confirming it was saved to the workspace. */}
62-
6362
## Images
6463

6564
Mothership can generate images using AI, and can use an existing image as a reference to guide the output:
@@ -73,7 +72,7 @@ Mothership can generate images using AI, and can use an existing image as a refe
7372
- Attach an existing image to your message, then describe what you want: "Generate a new version of this banner with a blue color scheme instead of green"
7473
- "Create a variation of this diagram with the boxes rearranged horizontally [attach image]"
7574

76-
{/* TODO: Screenshot of the resource panel showing a generated image open as a file tab — ideally with the image rendered in the viewer panel. */}
75+
<Image src="/static/mothership/image-example.png" alt="Mothership resource panel showing a generated hero image of a Mothership-branded blimp flying over San Francisco at golden hour, alongside the chat response linking the file" width={900} height={500} />
7776

7877
Generated images are saved as workspace files.
7978

@@ -85,7 +84,7 @@ Mothership can generate charts and data visualizations from data you describe or
8584
- "Create a line chart of token usage over the past 30 days from this data [paste data]"
8685
- "Generate a pie chart showing the distribution of lead sources from the leads table"
8786

88-
{/* TODO: Screenshot of a chart or visualization rendered in the resource panel as a file. */}
87+
<Image src="/static/mothership/chart-example.png" alt="Mothership resource panel showing a generated chart file with bar charts for backend 5xx errors and error rate over time" width={900} height={500} />
8988

9089
Visualizations are saved as files and rendered in the resource panel.
9190

@@ -104,7 +103,7 @@ Results come back directly in the chat. Ask Mothership to save the output as a f
104103

105104
When a file opens in the resource panel, you can switch between three views:
106105

107-
{/* TODO: Screenshot of the file viewer in the resource panel showing the mode selector (editor/split/preview), ideally in split mode with a markdown file showing raw content on the left and rendered preview on the right. */}
106+
<Video src="mothership/toggle-file-view.mp4" width={700} height={450} />
108107

109108
| Mode | What it shows |
110109
|------|--------------|

apps/docs/content/docs/en/mothership/index.mdx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ description: Your AI command center. Build and manage your entire workspace in n
44
---
55

66
import { Image } from '@/components/ui/image'
7+
import { Video } from '@/components/ui/video'
78
import { FAQ } from '@/components/ui/faq'
89

9-
Describe what you want and Mothership handles it. Build a workflow, run research, generate a presentation, query a table, schedule a recurring job, send a Slack message — Mothership knows your entire workspace and takes action directly.
10+
<Video src="mothership/create-workflow.mp4" width={700} height={450} />
1011

11-
{/* TODO: Screenshot or GIF of the full Mothership home page — chat pane on the left with a conversation in progress, resource panel on the right with a workflow or file tab open. Hero shot for the page. */}
12+
Describe what you want and Mothership handles it. Build a workflow, run research, generate a presentation, query a table, schedule a recurring job, send a Slack message — Mothership knows your entire workspace and takes action directly.
1213

1314
## What You Can Do
1415

@@ -44,6 +45,8 @@ For complex tasks, Mothership delegates to specialized subagents automatically.
4445

4546
Bring any workspace object into the conversation via the **+** menu, `@`-mentions, or drag-and-drop from the sidebar. Mothership also opens resources automatically when it creates or modifies them.
4647

48+
<Video src="mothership/context-menu.mp4" width={700} height={450} />
49+
4750
{/* TODO: Screenshot of the resource panel with multiple tabs open — a workflow tab, a table tab, and a file tab — showing different resource types side by side. */}
4851

4952
| What to add | How it appears |
@@ -59,6 +62,8 @@ Bring any workspace object into the conversation via the **+** menu, `@`-mention
5962

6063
Mothership has two panes. On the left: the chat thread, where your messages and Mothership's responses appear. On the right: the resource panel, where workflows, tables, files, and knowledge bases open as tabs. The panel is resizable; tabs are draggable and closeable.
6164

65+
<Video src="mothership/split-view.mp4" width={700} height={450} />
66+
6267
<FAQ items={[
6368
{ question: "How is Mothership different from Copilot?", answer: "Copilot is scoped to a single workflow — it helps you build and edit that workflow. Mothership has access to your entire workspace and can build workflows, manage data, run research, schedule jobs, take actions across integrations, and more." },
6469
{ question: "What model does Mothership use?", answer: "Mothership always uses Claude Opus 4.6. There is no model selector." },

apps/docs/content/docs/en/mothership/knowledge.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ description: Create, populate, and query knowledge bases from Mothership.
44
---
55

66
import { Image } from '@/components/ui/image'
7+
import { Video } from '@/components/ui/video'
78
import { FAQ } from '@/components/ui/faq'
89

9-
Create a knowledge base, add documents to it, and query it in plain language — all through conversation. Knowledge bases you create in Mothership are immediately available to Agent blocks in any workflow.
10+
<Video src="mothership/kb.mp4" width={700} height={450} />
1011

11-
{/* TODO: Screenshot of Mothership with a knowledge base open in the resource panel — showing the knowledge base name, document list, and status of indexed documents. */}
12+
Create a knowledge base, add documents to it, and query it in plain language — all through conversation. Knowledge bases you create in Mothership are immediately available to Agent blocks in any workflow.
1213

1314
## Creating Knowledge Bases
1415

apps/docs/content/docs/en/mothership/research.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ description: Ask Mothership to research anything — it searches, reads, and syn
44
---
55

66
import { Image } from '@/components/ui/image'
7+
import { Video } from '@/components/ui/video'
78
import { FAQ } from '@/components/ui/faq'
89

9-
Ask Mothership to research anything and it figures out the best approach — searching the web, reading specific pages, crawling sites, looking up technical docs. Just describe what you want to know.
10+
<Video src="mothership/research-agent.mp4" width={700} height={450} />
1011

11-
{/* TODO: Screenshot of the Research subagent section in the Mothership chatexpanded, showing it working through a research task with the final report or answer appearing. Ideally with a file tab open in the resource panel showing the output. */}
12+
Ask Mothership to research anything and it figures out the best approachsearching the web, reading specific pages, crawling sites, looking up technical docs. Just describe what you want to know.
1213

1314
## Asking Questions
1415

apps/docs/content/docs/en/mothership/tables.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ description: Create, query, and manage workspace tables from Mothership.
66
import { Image } from '@/components/ui/image'
77
import { FAQ } from '@/components/ui/faq'
88

9-
Create a table from a description or a CSV, query it in plain language, add or update rows, and export the results — all through conversation. Tables open in the resource panel when created or referenced.
9+
<Image src="/static/mothership/table-example.png" alt="Mothership resource panel showing the pipeline_deals table with company, deal_owner, stage, and amount columns, alongside a chat summary of total pipeline value and breakdown by stage" width={900} height={500} />
1010

11-
{/* TODO: Screenshot of Mothership with a table open in the resource panel — ideally after a query or row operation, showing the table with data populated. */}
11+
Create a table from a description or a CSV, query it in plain language, add or update rows, and export the results — all through conversation. Tables open in the resource panel when created or referenced.
1212

1313
## Creating Tables
1414

apps/docs/content/docs/en/mothership/tasks.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@ description: Schedule recurring jobs, take immediate actions, connect integratio
55

66
import { Callout } from 'fumadocs-ui/components/callout'
77
import { Image } from '@/components/ui/image'
8+
import { Video } from '@/components/ui/video'
89
import { FAQ } from '@/components/ui/faq'
910

11+
<Video src="mothership/job-create.mp4" width={700} height={450} />
12+
1013
Mothership can act on your behalf right now — send a message, create an issue, call an API — or on a schedule, running a prompt automatically every hour, day, or week. It can also connect integrations, set environment variables, add MCP servers, and create custom tools.
1114

1215
## Scheduled Jobs
1316

1417
A scheduled job is a Mothership task that runs on a cron schedule. On each run, Mothership reads the current workspace state and executes the job's prompt as if you had just sent it.
1518

16-
{/* TODO: Screenshot of Mothership chat confirming a scheduled job was created — showing the job name, schedule, and what it will do. If there's a jobs list view in the sidebar, include that as a second screenshot here. */}
17-
1819
### Creating a Job
1920

2021
Describe the recurring task and how often it should run:

apps/docs/content/docs/en/mothership/workflows.mdx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ title: Workflows
33
description: Create, edit, run, debug, deploy, and organize workflows from Mothership.
44
---
55

6-
import { Callout } from 'fumadocs-ui/components/callout'
76
import { Image } from '@/components/ui/image'
7+
import { Video } from '@/components/ui/video'
88
import { FAQ } from '@/components/ui/faq'
99

10-
Describe a workflow and Mothership builds it. Reference an existing one by name and it edits it. No canvas navigation required — every change appears in the resource panel in real time.
10+
<Video src="mothership/create-workflow.mp4" width={700} height={450} />
1111

12-
{/* TODO: Screenshot of Mothership chat on the left with the Build subagent section visible, and a workflow open in the resource panel on the right. Shows the split-pane experience of building via natural language. */}
12+
Describe a workflow and Mothership builds it. Reference an existing one by name and it edits it. No canvas navigation required — every change appears in the resource panel in real time.
1313

1414
## Creating Workflows
1515

@@ -33,7 +33,7 @@ Open an existing workflow with `@workflow-name` or the **+** menu, then describe
3333

3434
## Running Workflows
3535

36-
{/* TODO: Screenshot or GIF of Mothership running a workflow — showing the chat streaming execution output on the left while the workflow canvas in the resource panel highlights blocks as they execute in real time. */}
36+
<Video src="mothership/run-workflow.mp4" width={700} height={450} />
3737

3838
Ask Mothership to run a workflow and it handles the execution:
3939

@@ -110,10 +110,6 @@ Variables set this way are available via `<variable.VARIABLE_NAME>` syntax insid
110110
- "Delete the old_api_prototype workflow"
111111
- "Delete all workflows in the deprecated folder"
112112

113-
<Callout type="warn">
114-
Workflow deletion is permanent. Deployed versions are also removed. There is no recycle bin.
115-
</Callout>
116-
117113
<FAQ items={[
118114
{ question: "Can Mothership edit a workflow while it's deployed?", answer: "Yes. Editing a workflow does not affect the live deployment. The deployed version is a snapshot — you need to ask Mothership to redeploy to push changes to production." },
119115
{ question: "Can I run a workflow with specific inputs from Mothership?", answer: "Yes. Describe the inputs in your message and Mothership passes them to the workflow's start block." },
562 KB
Loading

0 commit comments

Comments
 (0)