Skip to content

Commit 443d6e3

Browse files
committed
Update to agent links
1 parent 75b1b42 commit 443d6e3

File tree

1 file changed

+74
-2
lines changed

1 file changed

+74
-2
lines changed

docs/hub/agents/create-and-edit.mdx

Lines changed: 74 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,80 @@ sidebarTitle: "Create & Edit"
99
This ensures proper validation, versioning, and team collaboration features.
1010
</Card>
1111

12+
## Try an Agent First: Your 60-Second Challenge
13+
14+
Before creating your own agent, let's see one in action! The fastest way to experience the power of Continue agents is with our demo repository.
15+
16+
![Agent Mission Control](/docs/images/hub/assets/images/agent-mission-control.gif)
17+
18+
### See an Agent Create a Pull Request in Under 60 Seconds
19+
20+
<Steps>
21+
<Step title="🍴 Fork Our Demo Repository">
22+
Get a safe sandbox to experiment with:
23+
24+
**Option 1: GitHub Web Interface**
25+
Visit [github.com/continuedev/demo-project](https://github.com/continuedev/demo-project) and click **Fork**
26+
27+
**Option 2: GitHub CLI**
28+
```bash
29+
gh repo fork continuedev/demo-project
30+
```
31+
</Step>
32+
33+
<Step title="🎯 Access Mission Control">
34+
Go to [hub.continue.dev/agents](https://hub.continue.dev/agents) and:
35+
- **Connect GitHub** and authorize Continue when prompted
36+
- This gives agents access to create PRs in your repositories
37+
</Step>
38+
39+
<Step title="🚀 Run Your First Agent">
40+
**Target your forked demo repo** and try one of these commands:
41+
42+
<Tabs>
43+
<Tab title="Add New Feature">
44+
```
45+
Create a new function that calculates fibonacci numbers.
46+
```
47+
</Tab>
48+
49+
<Tab title="Fix Existing Bug">
50+
```
51+
Fix the TypeError in api/users.ts
52+
```
53+
</Tab>
54+
55+
<Tab title="Add Documentation">
56+
```
57+
Add comprehensive README documentation with setup instructions.
58+
```
59+
</Tab>
60+
</Tabs>
61+
</Step>
62+
63+
<Step title="✨ Watch the Magic">
64+
**Result:** A fully-formed Pull Request opens in your demo repo with:
65+
- Complete implementation or fix
66+
- Proper commit messages
67+
- Detailed PR description
68+
- Ready for review and merge
69+
</Step>
70+
</Steps>
71+
72+
<Info>
73+
**Why Use the Demo Repo?**
74+
- **Safe testing environment** - No risk to your production code
75+
- **Pre-configured issues** - Common bugs and features to practice with
76+
- **Immediate results** - See agents in action without setup complexity
77+
- **Learn by example** - Study the generated code and PR descriptions
78+
</Info>
79+
80+
<Tip>
81+
Once you see how agents work with the demo repo, you'll understand exactly how to create and customize your own for real projects!
82+
</Tip>
83+
84+
---
85+
1286
## Creating an Agent
1387

1488
![Create an agent gif](/docs/images/hub/create-an-agent.gif)
@@ -140,8 +214,6 @@ You can edit any agent you own or that belongs to your organization.
140214

141215
## Example Agent Configurations
142216

143-
Here are proven agent patterns you can adapt:
144-
145217
Here are proven agent configurations you can create or use as inspiration:
146218

147219
<CardGroup cols={2}>

0 commit comments

Comments
 (0)