mirror of
https://github.com/cline/cline.git
synced 2025-06-03 03:59:07 +00:00
Update package script; add vscode extension link to README
This commit is contained in:
parent
e4710e8d2c
commit
30102f67fb
14
README.md
14
README.md
@ -12,6 +12,8 @@ Claude Dev bridges the gap between complex python scripting and simple chat webs
|
|||||||
- View the JSON of API requests when they are made and track individal API request costs
|
- 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
|
- 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
|
||||||
|
|
||||||
|
Download the VSCode extension here: [https://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev](https://marketplace.visualstudio.com/items?itemName=saoudrizwan.claude-dev)
|
||||||
|
|
||||||
This project was developed for Anthropic's [Build with Claude June 2024](https://docs.anthropic.com/en/build-with-claude-contest/overview) contest.
|
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
|
## How it works
|
||||||
@ -42,13 +44,13 @@ Claude always asks for your permission first before any tools are executed or in
|
|||||||
|
|
||||||
First, I asked Claude Dev to make me a game with loose requirements. He used chain-of-thought `<thinking>` tags to determine what steps he needed to take to accomplish the task.
|
First, I asked Claude Dev to make me a game with loose requirements. He used chain-of-thought `<thinking>` tags to determine what steps he needed to take to accomplish the task.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### 2. Powerful tools to accomplish anything
|
### 2. Powerful tools to accomplish anything
|
||||||
|
|
||||||
He used the tools built into the extension, such as creating new files, to build an entire website from scratch.
|
Then he iteratively used the tools built into the extension, such as creating new files, to build an entire website from scratch.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
### 3. Run the project with a click of a button
|
### 3. Run the project with a click of a button
|
||||||
|
|
||||||
@ -58,7 +60,7 @@ Claude Dev even offered to run a command that would open it in Chrome for me.
|
|||||||
|
|
||||||
### 4. Finished Product
|
### 4. Finished Product
|
||||||
|
|
||||||
Finished product. Thanks, Claude Dev!
|
From idea to functional website in seconds. Thanks, Claude Dev!
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
@ -68,7 +70,7 @@ To install Claude Dev, follow these steps:
|
|||||||
|
|
||||||
1. Clone the repository:
|
1. Clone the repository:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/yourusername/claude-dev.git
|
git clone https://github.com/saoudrizwan/claude-dev.git
|
||||||
```
|
```
|
||||||
2. Open the project in VSCode:
|
2. Open the project in VSCode:
|
||||||
```bash
|
```bash
|
||||||
@ -78,7 +80,7 @@ To install Claude Dev, follow these steps:
|
|||||||
```bash
|
```bash
|
||||||
npm run install:all
|
npm run install:all
|
||||||
```
|
```
|
||||||
4. Launch the extension:
|
5. Launch the extension:
|
||||||
- Press `F5` to open a new VSCode window with the extension loaded.
|
- Press `F5` to open a new VSCode window with the extension loaded.
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
|
@ -77,7 +77,7 @@
|
|||||||
"watch": "npm-run-all -p watch:*",
|
"watch": "npm-run-all -p watch:*",
|
||||||
"watch:esbuild": "node esbuild.js --watch",
|
"watch:esbuild": "node esbuild.js --watch",
|
||||||
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
|
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
|
||||||
"package": "npm run check-types && npm run lint && node esbuild.js --production",
|
"package": "npm run build:webview && npm run check-types && npm run lint && node esbuild.js --production",
|
||||||
"compile-tests": "tsc -p . --outDir out",
|
"compile-tests": "tsc -p . --outDir out",
|
||||||
"watch-tests": "tsc -p . -w --outDir out",
|
"watch-tests": "tsc -p . -w --outDir out",
|
||||||
"pretest": "npm run compile-tests && npm run compile && npm run lint",
|
"pretest": "npm run compile-tests && npm run compile && npm run lint",
|
||||||
|
Loading…
Reference in New Issue
Block a user