-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "cursor-agent-sidebar",
"displayName": "Cursor Agent Sidebar",
"description": "Chat with the Cursor CLI Agent from the VS Code secondary sidebar using ACP.",
"version": "0.3.4",
"publisher": "yutat23",
"icon": "media/marketplace-icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yutat23/cursor-agent-sidebar.git"
},
"bugs": {
"url": "https://github.com/yutat23/cursor-agent-sidebar/issues"
},
"homepage": "https://github.com/yutat23/cursor-agent-sidebar#readme",
"keywords": [
"cursor",
"agent",
"acp",
"chat",
"sidebar"
],
"engines": {
"vscode": "^1.96.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:cursorAgent.chat"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"secondarySidebar": [
{
"id": "cursorAgent",
"title": "Cursor Agent",
"icon": "media/icon.svg"
}
]
},
"views": {
"cursorAgent": [
{
"type": "webview",
"id": "cursorAgent.chat",
"name": "Chat"
}
]
},
"commands": [
{
"command": "cursorAgent.newChat",
"title": "Cursor Agent: New Chat",
"icon": "$(add)"
},
{
"command": "cursorAgent.focus",
"title": "Cursor Agent: Focus Chat"
},
{
"command": "cursorAgent.stop",
"title": "Cursor Agent: Stop Agent",
"icon": "$(debug-stop)"
}
],
"configuration": {
"title": "Cursor Agent",
"properties": {
"cursorAgent.agentPath": {
"type": "string",
"default": "agent",
"scope": "machine",
"description": "Path to the Cursor CLI agent command. Use agent on PATH or an absolute path."
},
"cursorAgent.model": {
"type": "string",
"default": "",
"description": "Model to use. Leave empty to use the default model."
},
"cursorAgent.autoApprovePermissions": {
"type": "boolean",
"default": false,
"description": "Automatically approve tool requests (--yolo equivalent)."
}
}
}
},
"capabilities": {
"untrustedWorkspaces": {
"supported": false,
"description": "The Cursor CLI Agent can run tools and modify files, so Workspace Trust is required."
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "node ./node_modules/typescript/bin/tsc -p ./",
"watch": "node ./node_modules/typescript/bin/tsc -watch -p ./",
"package": "vsce package",
"publish:marketplace": "vsce publish"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/vscode": "^1.96.0",
"typescript": "^5.7.0",
"@vscode/vsce": "^3.6.0"
}
}