mirror of
https://github.com/PawanOsman/ChatGPT.git
synced 2026-07-18 08:05:57 +02:00
76993e645b
- Added per-tool hard timeouts and abort-signal support for long-running tools to enhance responsiveness. - Introduced configurable timeout settings in the agent's configuration. - Implemented GPU-accelerated local embeddings with fallback options, along with detailed indexing page information. - Expanded ignored directories for tools and indexing to improve performance and efficiency.
155 lines
3.8 KiB
JSON
155 lines
3.8 KiB
JSON
{
|
|
"name": "ocursor",
|
|
"displayName": "OpenCursor Agent",
|
|
"description": "AI coding agent chat inside VS Code",
|
|
"version": "0.0.4",
|
|
"publisher": "pkrd",
|
|
"license": "MIT",
|
|
"icon": "media/icon.png",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/PawanOsman/OpenCursor.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/PawanOsman/OpenCursor/issues"
|
|
},
|
|
"homepage": "https://github.com/PawanOsman/OpenCursor#readme",
|
|
"engines": {
|
|
"vscode": "^1.125.0"
|
|
},
|
|
"categories": [
|
|
"AI",
|
|
"Chat",
|
|
"Programming Languages"
|
|
],
|
|
"keywords": [
|
|
"ai",
|
|
"agent",
|
|
"chat",
|
|
"copilot",
|
|
"assistant"
|
|
],
|
|
"activationEvents": [],
|
|
"main": "./dist/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "ocursor.openSettings",
|
|
"title": "Open OpenCursor Settings"
|
|
},
|
|
{
|
|
"command": "ocursor.addToChat",
|
|
"title": "OpenCursor: Add Selection to Chat"
|
|
}
|
|
],
|
|
"keybindings": [
|
|
{
|
|
"command": "ocursor.addToChat",
|
|
"key": "ctrl+l",
|
|
"mac": "cmd+l",
|
|
"when": "editorTextFocus"
|
|
}
|
|
],
|
|
"viewsContainers": {
|
|
"activitybar": [
|
|
{
|
|
"id": "ocursor-sidebar",
|
|
"title": "OpenCursor",
|
|
"icon": "media/icon.svg"
|
|
}
|
|
]
|
|
},
|
|
"views": {
|
|
"ocursor-sidebar": [
|
|
{
|
|
"type": "webview",
|
|
"id": "ocursor.chatView",
|
|
"name": "OpenCursor Agent"
|
|
}
|
|
]
|
|
},
|
|
"configuration": [
|
|
{
|
|
"title": "OpenCursor Settings",
|
|
"properties": {
|
|
"ocursor.model": {
|
|
"type": "string",
|
|
"default": "auto",
|
|
"description": "The AI model to use"
|
|
},
|
|
"ocursor.maxResponseLength": {
|
|
"type": "integer",
|
|
"default": 0,
|
|
"description": "Maximum response length in tokens (0 = let the model decide)"
|
|
},
|
|
"ocursor.enableWorkspaceContext": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Enable workspace context for the AI agent"
|
|
},
|
|
"ocursor.enableFileReading": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Enable file reading/glob/grep tools"
|
|
},
|
|
"ocursor.enableTerminalSuggestions": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Enable run terminal command suggestions tool"
|
|
},
|
|
"ocursor.systemPrompt": {
|
|
"type": "string",
|
|
"default": "You are a professional coding assistant extension named OpenCursor.",
|
|
"description": "System prompt or custom instruction field"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "pnpm run package",
|
|
"compile": "pnpm run check-types && pnpm run lint && node esbuild.js",
|
|
"watch": "npm-run-all -p watch:*",
|
|
"watch:esbuild": "node esbuild.js --watch",
|
|
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
|
|
"package": "pnpm run check-types && pnpm run lint && node esbuild.js --production",
|
|
"compile-tests": "tsc -p . --outDir out",
|
|
"watch-tests": "tsc -p . -w --outDir out",
|
|
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
|
|
"check-types": "tsc --noEmit && tsc --noEmit -p tsconfig.webview.json",
|
|
"lint": "eslint src",
|
|
"test": "vscode-test",
|
|
"vsix": "pnpm run package && pnpm dlx @vscode/vsce package --no-dependencies"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^10.0.10",
|
|
"@types/node": "24.x",
|
|
"@types/pdf-parse": "^1.1.5",
|
|
"@types/react": "^19.2.17",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@types/vscode": "^1.125.0",
|
|
"@vscode/test-cli": "^0.0.15",
|
|
"@vscode/test-electron": "^3.0.0",
|
|
"esbuild": "^0.28.1",
|
|
"eslint": "^10.5.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"typescript": "^6.0.3",
|
|
"typescript-eslint": "^8.61.1"
|
|
},
|
|
"overrides": {
|
|
"diff": "^8.0.4",
|
|
"serialize-javascript": "^7.0.6"
|
|
},
|
|
"dependencies": {
|
|
"@huggingface/hub": "^2.13.2",
|
|
"@huggingface/transformers": "^4.2.0",
|
|
"lucide-react": "^1.21.0",
|
|
"marked": "^18.0.5",
|
|
"onnxruntime-node": "^1.27.0",
|
|
"pdf-parse": "^2.4.5",
|
|
"react": "^19.2.7",
|
|
"react-dom": "^19.2.7",
|
|
"sharp": "^0.35.2"
|
|
}
|
|
}
|