Skip to content

Commit a5aae0c

Browse files
authored
Merge pull request #8770 from continuedev/docs/move-60-second-challenge-section
docs: move 60-second challenge section to intro page
2 parents d62f6d2 + 7f8ddcf commit a5aae0c

File tree

2 files changed

+72
-74
lines changed

2 files changed

+72
-74
lines changed

docs/agents/create-and-edit.mdx

Lines changed: 0 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -9,80 +9,6 @@ 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](/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-
8612
## Creating an Agent
8713

8814
![Create an agent gif](/images/hub/create-an-agent.gif)

docs/agents/intro.mdx

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,78 @@ Use Mission Control to kick off agents for:
5757
**New to agents?** Check out our [pre-configured agents](/hub/agents/overview#pre-configured-agents) to test out a workflow immediately.
5858
</Info>
5959

60+
## Try an Agent First: Your 60-Second Challenge
61+
62+
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.
63+
64+
![Agent Mission Control](/images/hub/assets/images/agent-mission-control.gif)
65+
66+
### See an Agent Create a Pull Request in Under 60 Seconds
67+
68+
<Steps>
69+
<Step title="🍴 Fork Our Demo Repository">
70+
Get a safe sandbox to experiment with:
71+
72+
**Option 1: GitHub Web Interface**
73+
Visit [github.com/continuedev/demo-project](https://github.com/continuedev/demo-project) and click **Fork**
74+
75+
**Option 2: GitHub CLI**
76+
```bash
77+
gh repo fork continuedev/demo-project
78+
```
79+
</Step>
80+
81+
<Step title="🎯 Access Mission Control">
82+
Go to [hub.continue.dev/agents](https://hub.continue.dev/agents) and:
83+
- **Connect GitHub** and authorize Continue when prompted
84+
- This gives agents access to create PRs in your repositories
85+
</Step>
86+
87+
<Step title="🚀 Run Your First Agent">
88+
**Target your forked demo repo** and try one of these commands:
89+
90+
<Tabs>
91+
<Tab title="Add New Feature">
92+
```
93+
Create a new function that calculates fibonacci numbers.
94+
```
95+
</Tab>
96+
97+
<Tab title="Fix Existing Bug">
98+
```
99+
Fix the TypeError in api/users.ts
100+
```
101+
</Tab>
102+
103+
<Tab title="Add Documentation">
104+
```
105+
Add comprehensive README documentation with setup instructions.
106+
```
107+
</Tab>
108+
</Tabs>
109+
</Step>
110+
111+
<Step title="✨ Watch the Magic">
112+
**Result:** A fully-formed Pull Request opens in your demo repo with:
113+
- Complete implementation or fix
114+
- Proper commit messages
115+
- Detailed PR description
116+
- Ready for review and merge
117+
</Step>
118+
</Steps>
119+
120+
<Info>
121+
**Why Use the Demo Repo?**
122+
- **Safe testing environment** - No risk to your production code
123+
- **Pre-configured issues** - Common bugs and features to practice with
124+
- **Immediate results** - See agents in action without setup complexity
125+
- **Learn by example** - Study the generated code and PR descriptions
126+
</Info>
127+
128+
<Tip>
129+
Once you see how agents work with the demo repo, you'll understand exactly how to create and customize your own for real projects!
130+
</Tip>
131+
60132
## Example Workflow Tasks
61133

62134
Here are some example tasks you can try with your agents:

0 commit comments

Comments
 (0)