Skip to content

Commit e2cc50a

Browse files
ouiliameclaude
andcommitted
docs(introduction): clarity pass on the rewritten intro
Five fixes beneath the rename: the How-you-build callout restated the lead paragraph and the bullets a third time (cut); the anatomy section opened with a negative strawman and claimed the sidebar mirrors a list containing non-sidebar items (positive framing, claim dropped); the Integrations section was a 25-name prose catalog duplicating the FAQ (now two sentences + the catalog link; the FAQ keeps the list as its single home); 'Deployment options' collided with Deployments-the-feature defined a section earlier (now 'Hosting'); the What-you-can-build bullets traded generic categories for concrete examples. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 80b7c5f commit e2cc50a

5 files changed

Lines changed: 96 additions & 17 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// @ts-nocheck
2+
/// <reference types="vite/client" />
3+
import { browser } from 'fumadocs-mdx/runtime/browser'
4+
import type * as Config from '../source.config'
5+
6+
const create = browser<
7+
typeof Config,
8+
import('fumadocs-mdx/runtime/types').InternalTypeConfig & {
9+
DocData: {}
10+
}
11+
>()
12+
const browserCollections = {
13+
docs: create.doc(
14+
'docs',
15+
import.meta.glob(['./**/*.{mdx,md}'], {
16+
base: './../content/docs',
17+
query: {
18+
collection: 'docs',
19+
},
20+
eager: false,
21+
})
22+
),
23+
}
24+
export default browserCollections
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// @ts-nocheck
2+
/// <reference types="vite/client" />
3+
import { dynamic } from 'fumadocs-mdx/runtime/dynamic'
4+
import * as Config from '../source.config'
5+
6+
const create = await dynamic<
7+
typeof Config,
8+
import('fumadocs-mdx/runtime/types').InternalTypeConfig & {
9+
DocData: {}
10+
}
11+
>(
12+
Config,
13+
{ configPath: 'source.config.ts', environment: 'vite', outDir: '.source' },
14+
{ doc: { passthroughs: ['extractedReferences'] } }
15+
)
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// @ts-nocheck
2+
/// <reference types="vite/client" />
3+
import { server } from 'fumadocs-mdx/runtime/server'
4+
import type * as Config from '../source.config'
5+
6+
const create = server<
7+
typeof Config,
8+
import('fumadocs-mdx/runtime/types').InternalTypeConfig & {
9+
DocData: {}
10+
}
11+
>({ doc: { passthroughs: ['extractedReferences'] } })
12+
13+
export const docs = await create.docs(
14+
'docs',
15+
'content/docs',
16+
import.meta.glob(['./**/*.{json,yaml}'], {
17+
base: './../content/docs',
18+
query: {
19+
collection: 'docs',
20+
},
21+
import: 'default',
22+
eager: true,
23+
}),
24+
import.meta.glob(['./**/*.{mdx,md}'], {
25+
base: './../content/docs',
26+
query: {
27+
collection: 'docs',
28+
},
29+
eager: true,
30+
})
31+
)
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// ../../../source.config.ts
2+
import { defineConfig, defineDocs, frontmatterSchema } from "fumadocs-mdx/config";
3+
import { z } from "zod";
4+
var docs = defineDocs({
5+
dir: "content/docs",
6+
docs: {
7+
schema: frontmatterSchema.extend({
8+
pageType: z.enum(["tutorial", "guide", "reference", "concept"]).optional()
9+
}),
10+
postprocess: {
11+
includeProcessedMarkdown: true
12+
}
13+
}
14+
});
15+
var source_config_default = defineConfig();
16+
export {
17+
source_config_default as default,
18+
docs
19+
};

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

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,10 @@ When you open Sim, the first thing you meet is **Chat**, a conversation over you
3131

3232
You can mix these on one system, scaffolding in Chat and then fine-tuning in the builder.
3333

34-
<Callout type="info">
35-
Sim generates the architecture, and you verify the execution. Even when you build conversationally, it helps to understand the resources Sim creates, so you can inspect, run, and improve them.
36-
</Callout>
3734

3835
## The anatomy of a workspace
3936

40-
A Sim system is not a single chat response. It is a set of resources that live in a **workspace** and connect to each other. The sidebar mirrors that anatomy, and these are its parts.
37+
A Sim system is a set of resources that live in a **workspace** and connect to each other. These are its parts:
4138

4239
- **[Chat](/chat)** is where you build conversationally. You describe what you want, and Sim builds and edits the resources for you.
4340
- **[Workflows](/workflows)** are visual programs made of blocks, where your logic runs. Most other resources become useful through a workflow.
@@ -54,25 +51,18 @@ A Sim system is not a single chat response. It is a set of resources that live i
5451

5552
## What you can build
5653

57-
- **AI assistants and chatbots.** Conversational agents that search the web, manage calendars, send email, and act on your business systems.
58-
- **Business process automation.** Data entry, report generation, customer responses, and content workflows.
59-
- **Data processing and analysis.** Extract from documents, analyze datasets, and sync data across platforms.
60-
- **API integration workflows.** Unified endpoints that orchestrate multi-service logic and event-driven automation.
54+
- **Assistants and chatbots.** A support agent that answers from your docs, or a Slack bot that searches the web and acts on your systems.
55+
- **Process automation.** Invoice extraction into a billing table, lead scoring and outreach, weekly report generation.
56+
- **Data pipelines.** Pull from a CRM, enrich each record with an agent, and write the results back to a table.
57+
- **Unified APIs.** One endpoint that orchestrates several services and models behind a single call.
6158

6259
## Integrations
6360

64-
Sim provides native integrations with 1,000+ services:
65-
66-
- **AI models.** OpenAI, Anthropic, Google Gemini, Groq, Cerebras, and local models via Ollama or VLLM.
67-
- **Communication.** Gmail, Slack, Microsoft Teams, Telegram, WhatsApp.
68-
- **Productivity.** Notion, Google Workspace, Airtable.
69-
- **Development.** GitHub, Jira, Linear, automated browser testing.
70-
- **Search and data.** Google Search, Perplexity, Firecrawl, Exa AI.
71-
- **Databases.** PostgreSQL, MySQL, Supabase, Pinecone, Qdrant.
61+
Sim has native integrations with 1,000+ services — every major AI model provider, and the communication, productivity, development, search, and database tools your work already runs on. Browse the full catalog at [Integrations](/integrations).
7262

7363
For anything not built in, [MCP support](/agents/mcp) connects any external service or tool.
7464

75-
## Deployment options
65+
## Hosting
7666

7767
- **Cloud-hosted.** Launch immediately at [sim.ai](https://sim.ai) with managed infrastructure, scaling, and observability.
7868
- **Self-hosted.** Deploy on your own infrastructure with Docker Compose or Kubernetes, with support for local models.

0 commit comments

Comments
 (0)