mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
Add user_feedback message type; update README; fix colors on other themes
This commit is contained in:
20
README.md
20
README.md
@@ -2,23 +2,33 @@
|
||||
|
||||
Thanks to [Claude 3.5 Sonnet's agentic coding capabilities](https://www-cdn.anthropic.com/fed9cc193a14b84131812372d8d5857f8f304c52/Model_Card_Claude_3_Addendum.pdf) Claude Dev can handle complex software development tasks step-by-step. With tools that let him read & write files, create entire projects from scratch, and execute terminal commands (after you grant permission), he can assist you in ways that go beyond simple code completion or tech support.
|
||||
|
||||
This project was developed for the [Build with Claude June 2024](https://docs.anthropic.com/en/build-with-claude-contest/overview) contest by Anthropic.
|
||||
Claude Dev bridges the gap between complex python scripting and simple chat websites. With its intuitive GUI, it offers a safe and accessible platform for exploring the potential of agentic AI.
|
||||
|
||||
- Keep track of total tokens and API usage cost for the current task loop
|
||||
- View edit diffs or new files in beautifully syntax highlighted previews
|
||||
- Streams command execution output into the chat, so you never have to open a terminal yourself
|
||||
- Presents permission buttons (i.e. 'Approve CLI command') before tool use or sending information to the API
|
||||
- Set a maximum # of API requests allowed for a task before being prompted for permission to proceed
|
||||
- View the JSON of API requests when they are made and track individal API request costs
|
||||
- When a task is completed, Claude Dev determines if he can present the result to you with a CLI command like `open -a "Google Chrome" index.html`, which you run with a click of a button
|
||||
|
||||
This project was developed for Anthropic's [Build with Claude June 2024](https://docs.anthropic.com/en/build-with-claude-contest/overview) contest.
|
||||
|
||||
## How it works
|
||||
|
||||
Claude Dev uses an agentic loop style implementation with chain-of-thought prompting and access to powerful tools that give him the ability to accomplish nearly any task. From building software projects to running system operations, Claude Dev is only limited by your imagination.
|
||||
Claude Dev uses an agentic loop style implementation with chain-of-thought prompting and access to powerful tools that give him the ability to accomplish nearly any task. From building software projects to running system operations, Claude Dev is only limited by your imagination. Start by providing a task and the agentic loop fires off, where it might use certain tools (with your permission) to accomplish each step in its thought process.
|
||||
|
||||
|
||||
### Tools
|
||||
|
||||
Claude Dev has access to the following tools:
|
||||
Claude Dev has access to the following capabilities:
|
||||
|
||||
1. **execute_command**: Execute CLI commands on the system.
|
||||
2. **list_files**: List all files and directories at the top level of the specified directory.
|
||||
3. **read_file**: Read the contents of a file at the specified path.
|
||||
4. **write_to_file**: Write content to a file at the specified path.
|
||||
5. **ask_followup_question**: Ask the user a question to gather additional information needed to complete a task.
|
||||
6. **attempt_completion**: Present the result to the user after completing a task.
|
||||
6. **attempt_completion**: Present the result to the user after completing a task, potentially with a CLI command to kickoff a demonstration.
|
||||
|
||||
### Only With Your Permission
|
||||
|
||||
@@ -26,7 +36,7 @@ Claude always asks for your permission first before any tools are executed or in
|
||||
|
||||

|
||||
|
||||
## Screenshots
|
||||
## Demo
|
||||
|
||||
### 1. Give Claude Dev any task!
|
||||
|
||||
|
||||
Reference in New Issue
Block a user