You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+50-6Lines changed: 50 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,7 +106,7 @@ Subscribe to our [Github releases](https://github.com/RooVetGit/Roo-Cline/releas
106
106
107
107
Meet Cline, an AI assistant that can use your **CLI** a**N**d **E**ditor.
108
108
109
-
Thanks to[Claude 3.5 Sonnet's agentic coding capabilities](https://www-cdn.anthropic.com/fed9cc193a14b84131812372d8d5857f8f304c52/Model_Card_Claude_3_Addendum.pdf),Cline can handle complex software development tasks step-by-step. With tools that let him create & edit files, explore large projects, use the browser, and execute terminal commands (after you grant permission), he can assist you in ways that go beyond code completion or tech support. While autonomous AI scripts traditionally run in sandboxed environments, this extension provides a human-in-the-loop GUI to approve every file change and terminal command, providing a safe and accessible way to explore the potential of agentic AI.
109
+
Thanks to[Claude 3.5 Sonnet's agentic coding capabilities](https://www-cdn.anthropic.com/fed9cc193a14b84131812372d8d5857f8f304c52/Model_Card_Claude_3_Addendum.pdf),Cline can handle complex software development tasks step-by-step. With tools that let him create & edit files, explore large projects, use the browser, and execute terminal commands (after you grant permission), he can assist you in ways that go beyond code completion or tech support. Cline can even use the Model Context Protocol (MCP) to create new tools and extend his own capabilities. While autonomous AI scripts traditionally run in sandboxed environments, this extension provides a human-in-the-loop GUI to approve every file change and terminal command, providing a safe and accessible way to explore the potential of agentic AI.
110
110
111
111
1. Enter your task and add images to convert mockups into functional apps or fix bugs with screenshots.
112
112
2. Cline starts by analyzing your file structure &source code ASTs, running regex searches, and reading relevant files to get up to speed in existing projects. By carefully managing what information is added to context, Cline can provide valuable assistance even for large, complex projects without overwhelming the context window.
@@ -169,11 +169,55 @@ Try asking Cline to "test the app", and watch as he runs a command like `npm run
Thanks to the [Model Context Protocol](https://github.com/modelcontextprotocol), Cline can extend his capabilities through custom tools. While you can use [community-made servers](https://github.com/modelcontextprotocol/servers), Cline can instead create and install tools tailored to your specific workflow. Just ask Cline to "add a tool" and he will handle everything, from creating a new MCP server to installing it into the extension. These custom tools then become part of Cline's toolkit, ready to use in future tasks.
177
+
178
+
- "add a tool that fetches Jira tickets": Retrieve ticket ACs and put Cline to work
179
+
- "add a tool that manages AWS EC2s": Check server metrics and scale instances up or down
180
+
- "add a tool that pulls the latest PagerDuty incidents": Fetch details and ask Cline to fix bugs
181
+
182
+
<!-- Transparent pixel to create line break after floating image -->
- **`@url`:** Paste in a URL for the extension to fetch and convert to markdown, useful when you want to give Cline the latest docs
177
-
- **`@problems`:** Add workspace errors and warnings ('Problems' panel) for Cline to fix
178
-
- **`@file`:** Adds a file's contents so you don't have to waste API requests approving read file (+ type to search files)
179
-
- **`@folder`:** Adds folder's files all at once to speed up your workflow even more
190
+
**`@url`:** Paste in a URL for the extension to fetch and convert to markdown, useful when you want to give Cline the latest docs
191
+
192
+
**`@problems`:** Add workspace errors and warnings ('Problems' panel) for Cline to fix
193
+
194
+
**`@file`:** Adds a file's contents so you don't have to waste API requests approving read file (+ type to search files)
195
+
196
+
**`@folder`:** Adds folder's files all at once to speed up your workflow even more
197
+
198
+
## Contributing
199
+
200
+
To contribute to the project, start by exploring [open issues](https://github.com/cline/cline/issues) or checking our [feature request board](https://github.com/cline/cline/discussions/categories/feature-requests?discussions_q=is%3Aopen+category%3A%22Feature+Requests%22+sort%3Atop). We'd also love to have you join our [Discord](https://discord.gg/cline) to share ideas and connect with other contributors. If you're interested in joining the team, check out our [careers page](https://cline.bot/join-us)!
201
+
202
+
<details>
203
+
<summary>Local Development Instructions</summary>
204
+
205
+
1. Clone the repository _(Requires [git-lfs](https://git-lfs.com/))_:
206
+
```bash
207
+
git clone https://github.com/cline/cline.git
208
+
```
209
+
2. Open the project in VSCode:
210
+
```bash
211
+
code cline
212
+
```
213
+
3. Install the necessary dependencies for the extension and webview-gui:
214
+
```bash
215
+
npm run install:all
216
+
```
217
+
4. Launch by pressing `F5` (or `Run`->`Start Debugging`) to open a new VSCode window with the extension loaded. (You may need to install the [esbuild problem matchers extension](https://marketplace.visualstudio.com/items?itemName=connor4312.esbuild-problem-matchers) if you run into issues building the project.)
0 commit comments