Skip to content

Commit af63b06

Browse files
feat(agents/docs): replace terminal wrapper with Card component in Quick Start to align with UI design system and improve readability
🤖 Generated with Codebuff Co-Authored-By: Codebuff <noreply@codebuff.com>
1 parent 1e97574 commit af63b06

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

web/src/content/agents/overview.mdx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,24 @@ Agents can spawn other agents listed in their `spawnableAgents` field, creating
8181

8282
## Quick Start
8383

84+
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'
85+
86+
<Card className="not-prose">
87+
<CardHeader>
88+
<CardTitle className="flex items-center gap-2 text-lg">
89+
<span>🚀</span>
90+
<span>Ready to create your first agent?</span>
91+
</CardTitle>
92+
</CardHeader>
93+
<CardContent>
94+
<p className="mb-4">Start Codebuff in your project and run:</p>
95+
96+
```bash
97+
codebuff init-agents
98+
```
99+
</CardContent>
100+
</Card>
101+
84102
1. **[Customize existing agents](/docs/agents#customizing-agents)** - Modify prompts and tools
85103
2. **[Create new agents](/docs/agents#creating-new-agents)** - Build specialized functionality
86104
3. **[Reference guide](/docs/agents#agent-reference)** - Complete field documentation

0 commit comments

Comments
 (0)