mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
Update vscode ignores; refactor analyze-project
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
# Default
|
||||||
.vscode/**
|
.vscode/**
|
||||||
.vscode-test/**
|
.vscode-test/**
|
||||||
out/**
|
out/**
|
||||||
@@ -14,5 +15,17 @@ vsc-extension-quickstart.md
|
|||||||
**/.vscode-test.*
|
**/.vscode-test.*
|
||||||
demo.gif
|
demo.gif
|
||||||
|
|
||||||
|
# Ignore all webview-ui files except the build directory (https://github.com/microsoft/vscode-webview-ui-toolkit-samples/blob/main/frameworks/hello-world-react-cra/.vscodeignore)
|
||||||
|
webview-ui/src/**
|
||||||
|
webview-ui/public/**
|
||||||
|
webview-ui/scripts/**
|
||||||
|
webview-ui/index.html
|
||||||
|
webview-ui/README.md
|
||||||
|
webview-ui/package.json
|
||||||
|
webview-ui/package-lock.json
|
||||||
|
webview-ui/node_modules/**
|
||||||
|
**/.gitignore
|
||||||
|
|
||||||
|
# Fix issue where codicons don't get packaged (https://github.com/microsoft/vscode-extension-samples/issues/692)
|
||||||
!node_modules/@vscode/codicons/dist/codicon.css
|
!node_modules/@vscode/codicons/dist/codicon.css
|
||||||
!node_modules/@vscode/codicons/dist/codicon.ttf
|
!node_modules/@vscode/codicons/dist/codicon.ttf
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "claude-dev",
|
"name": "claude-dev",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "claude-dev",
|
"name": "claude-dev",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@anthropic-ai/sdk": "^0.24.3",
|
"@anthropic-ai/sdk": "^0.24.3",
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
"name": "claude-dev",
|
"name": "claude-dev",
|
||||||
"displayName": "Claude Dev",
|
"displayName": "Claude Dev",
|
||||||
"description": "Autonomous software engineer right in your IDE, capable of reading/writing files, executing commands, and more with your permission every step of the way.",
|
"description": "Autonomous software engineer right in your IDE, capable of reading/writing files, executing commands, and more with your permission every step of the way.",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.84.0"
|
"vscode": "^1.84.0"
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import { ClaudeAskResponse } from "./shared/WebviewMessage"
|
|||||||
import { ClaudeDevProvider } from "./providers/ClaudeDevProvider"
|
import { ClaudeDevProvider } from "./providers/ClaudeDevProvider"
|
||||||
import { ClaudeRequestResult } from "./shared/ClaudeRequestResult"
|
import { ClaudeRequestResult } from "./shared/ClaudeRequestResult"
|
||||||
import os from "os"
|
import os from "os"
|
||||||
import { analyzeProject } from "./AnalyzeProject"
|
import { analyzeProject } from "./analyze-project"
|
||||||
|
|
||||||
const SYSTEM_PROMPT = `You are Claude Dev, a highly skilled software developer with extensive knowledge in many programming languages, frameworks, design patterns, and best practices.
|
const SYSTEM_PROMPT = `You are Claude Dev, a highly skilled software developer with extensive knowledge in many programming languages, frameworks, design patterns, and best practices.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user