Skip to content

Commit 0fd9335

Browse files
committed
Add descriptions to sandbox tutorials
1 parent 93f36b6 commit 0fd9335

File tree

5 files changed

+6
-48
lines changed

5 files changed

+6
-48
lines changed

src/content/docs/sandbox/tutorials/ai-code-executor.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Build an AI code executor
33
pcx_content_type: tutorial
44
sidebar:
55
order: 1
6+
description: Use Claude to generate Python code from natural language and execute it securely in sandboxes.
67
---
78

89
import { Render, PackageManagers } from "~/components";

src/content/docs/sandbox/tutorials/analyze-data-with-ai.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Analyze data with AI
33
pcx_content_type: tutorial
44
sidebar:
55
order: 2
6+
description: Upload CSV files, generate analysis code with Claude, and return visualizations.
67
---
78

89
import { Render, PackageManagers } from "~/components";

src/content/docs/sandbox/tutorials/automated-testing-pipeline.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Automated testing pipeline
33
pcx_content_type: tutorial
44
sidebar:
55
order: 4
6+
description: Build a testing pipeline that clones Git repositories, installs dependencies, runs tests, and reports results.
67
---
78

89
import { Render, PackageManagers } from "~/components";

src/content/docs/sandbox/tutorials/code-review-bot.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Build a code review bot
33
pcx_content_type: tutorial
44
sidebar:
55
order: 3
6+
description: Clone repositories, analyze code with Claude, and post review comments to GitHub PRs.
67
---
78

89
import { Render, PackageManagers } from "~/components";

src/content/docs/sandbox/tutorials/index.mdx

Lines changed: 2 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -5,57 +5,11 @@ sidebar:
55
order: 3
66
---
77

8-
import { LinkTitleCard, CardGrid } from "~/components";
8+
import { ResourcesBySelector } from "~/components";
99

1010
Learn how to build applications with Sandbox SDK through step-by-step tutorials. Each tutorial takes 20-30 minutes.
1111

12-
<CardGrid>
13-
14-
<LinkTitleCard
15-
title="AI code executor"
16-
href="/sandbox/tutorials/ai-code-executor/"
17-
icon="pen"
18-
>
19-
Use Claude to generate Python code from natural language and execute it securely in sandboxes.
20-
</LinkTitleCard>
21-
22-
<LinkTitleCard
23-
title="Analyze data with AI"
24-
href="/sandbox/tutorials/analyze-data-with-ai/"
25-
icon="document"
26-
>
27-
Upload CSV files, generate analysis code with Claude, and return visualizations.
28-
</LinkTitleCard>
29-
30-
<LinkTitleCard
31-
title="Code review bot"
32-
href="/sandbox/tutorials/code-review-bot/"
33-
icon="star"
34-
>
35-
Clone repositories, analyze code with Claude, and post review comments to GitHub PRs.
36-
</LinkTitleCard>
37-
38-
<LinkTitleCard
39-
title="Automated testing pipeline"
40-
href="/sandbox/tutorials/automated-testing-pipeline/"
41-
icon="checkmark"
42-
>
43-
Clone repositories, install dependencies, run tests, and report results.
44-
</LinkTitleCard>
45-
46-
</CardGrid>
47-
48-
## What you'll learn
49-
50-
These tutorials cover real-world applications:
51-
52-
- **AI Code Execution** - Integrate Claude with secure code execution
53-
- **Data Analysis** - Generate and run analysis code on uploaded datasets
54-
- **Code Review Automation** - Clone repositories and analyze code changes
55-
- **CI/CD Pipelines** - Automated testing workflows
56-
- **File Operations** - Work with files and directories
57-
- **Error Handling** - Validation and error management
58-
- **Deployment** - Deploy Workers with containers
12+
<ResourcesBySelector directory="sandbox/tutorials/" types={["tutorial"]} />
5913

6014
## Before you start
6115

0 commit comments

Comments
 (0)