@@ -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
62134Here are some example tasks you can try with your agents:
0 commit comments