Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 0 additions & 74 deletions docs/agents/create-and-edit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,80 +9,6 @@ sidebarTitle: "Create & Edit"
This ensures proper validation, versioning, and team collaboration features.
</Card>

## Try an Agent First: Your 60-Second Challenge

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.

![Agent Mission Control](/images/hub/assets/images/agent-mission-control.gif)

### See an Agent Create a Pull Request in Under 60 Seconds

<Steps>
<Step title="🍴 Fork Our Demo Repository">
Get a safe sandbox to experiment with:

**Option 1: GitHub Web Interface**
Visit [github.com/continuedev/demo-project](https://github.com/continuedev/demo-project) and click **Fork**

**Option 2: GitHub CLI**
```bash
gh repo fork continuedev/demo-project
```
</Step>

<Step title="🎯 Access Mission Control">
Go to [hub.continue.dev/agents](https://hub.continue.dev/agents) and:
- **Connect GitHub** and authorize Continue when prompted
- This gives agents access to create PRs in your repositories
</Step>

<Step title="🚀 Run Your First Agent">
**Target your forked demo repo** and try one of these commands:

<Tabs>
<Tab title="Add New Feature">
```
Create a new function that calculates fibonacci numbers.
```
</Tab>

<Tab title="Fix Existing Bug">
```
Fix the TypeError in api/users.ts
```
</Tab>

<Tab title="Add Documentation">
```
Add comprehensive README documentation with setup instructions.
```
</Tab>
</Tabs>
</Step>

<Step title="✨ Watch the Magic">
**Result:** A fully-formed Pull Request opens in your demo repo with:
- Complete implementation or fix
- Proper commit messages
- Detailed PR description
- Ready for review and merge
</Step>
</Steps>

<Info>
**Why Use the Demo Repo?**
- **Safe testing environment** - No risk to your production code
- **Pre-configured issues** - Common bugs and features to practice with
- **Immediate results** - See agents in action without setup complexity
- **Learn by example** - Study the generated code and PR descriptions
</Info>

<Tip>
Once you see how agents work with the demo repo, you'll understand exactly how to create and customize your own for real projects!
</Tip>

---

## Creating an Agent

![Create an agent gif](/images/hub/create-an-agent.gif)
Expand Down
72 changes: 72 additions & 0 deletions docs/agents/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,78 @@ Use Mission Control to kick off agents for:
**New to agents?** Check out our [pre-configured agents](/hub/agents/overview#pre-configured-agents) to test out a workflow immediately.
</Info>

## Try an Agent First: Your 60-Second Challenge

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.

![Agent Mission Control](/images/hub/assets/images/agent-mission-control.gif)

### See an Agent Create a Pull Request in Under 60 Seconds

<Steps>
<Step title="🍴 Fork Our Demo Repository">
Get a safe sandbox to experiment with:

**Option 1: GitHub Web Interface**
Visit [github.com/continuedev/demo-project](https://github.com/continuedev/demo-project) and click **Fork**

**Option 2: GitHub CLI**
```bash
gh repo fork continuedev/demo-project
```
</Step>

<Step title="🎯 Access Mission Control">
Go to [hub.continue.dev/agents](https://hub.continue.dev/agents) and:
- **Connect GitHub** and authorize Continue when prompted
- This gives agents access to create PRs in your repositories
</Step>

<Step title="🚀 Run Your First Agent">
**Target your forked demo repo** and try one of these commands:

<Tabs>
<Tab title="Add New Feature">
```
Create a new function that calculates fibonacci numbers.
```
</Tab>

<Tab title="Fix Existing Bug">
```
Fix the TypeError in api/users.ts
```
</Tab>

<Tab title="Add Documentation">
```
Add comprehensive README documentation with setup instructions.
```
</Tab>
</Tabs>
</Step>

<Step title="✨ Watch the Magic">
**Result:** A fully-formed Pull Request opens in your demo repo with:
- Complete implementation or fix
- Proper commit messages
- Detailed PR description
- Ready for review and merge
</Step>
</Steps>

<Info>
**Why Use the Demo Repo?**
- **Safe testing environment** - No risk to your production code
- **Pre-configured issues** - Common bugs and features to practice with
- **Immediate results** - See agents in action without setup complexity
- **Learn by example** - Study the generated code and PR descriptions
</Info>

<Tip>
Once you see how agents work with the demo repo, you'll understand exactly how to create and customize your own for real projects!
</Tip>

## Example Workflow Tasks

Here are some example tasks you can try with your agents:
Expand Down
Loading