-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcursor.ts
More file actions
224 lines (201 loc) · 7.55 KB
/
Copy pathcursor.ts
File metadata and controls
224 lines (201 loc) · 7.55 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import {
CreatePlan,
DestroyPlan,
ExampleConfig,
FileUtils,
Resource,
ResourceSettings,
SpawnStatus,
Utils,
getPty,
z,
} from '@codifycli/plugin-core';
import { OS } from '@codifycli/schemas';
import fs from 'node:fs/promises';
import os from 'node:os';
import path from 'node:path';
import { ExtensionsParameter } from './extensions-parameter.js';
import { McpServersParameter } from './mcp-servers-parameter.js';
import { SettingsParameter } from './settings-parameter.js';
export const CURSOR_APPLICATION_NAME = 'Cursor.app';
export const CURSOR_LOCAL_BIN = path.join(os.homedir(), '.local', 'bin');
const CURSOR_LOCAL_BIN_EXPORT = `export PATH="${CURSOR_LOCAL_BIN}:$PATH"`;
export const mcpServerSchema = z.object({
command: z.string().optional(),
args: z.array(z.string()).optional(),
env: z.record(z.string(), z.string()).optional(),
url: z.string().optional(),
});
export type McpServer = z.infer<typeof mcpServerSchema>;
export type McpServers = Record<string, McpServer>;
const schema = z.object({
directory: z
.string()
.describe('Installation directory. Defaults to /Applications on macOS, ~/.local/bin on Linux.')
.optional(),
extensions: z
.array(z.string())
.describe('Cursor extensions to install, e.g. ["ms-python.python", "eamodio.gitlens"].')
.optional(),
settings: z
.record(z.string(), z.unknown())
.describe('Cursor editor settings to merge into settings.json.')
.optional(),
mcpServers: z
.record(z.string(), mcpServerSchema)
.describe('MCP servers to configure in ~/.cursor/mcp.json.')
.optional(),
});
export type CursorConfig = z.infer<typeof schema>;
const defaultConfig: Partial<CursorConfig> = {
extensions: [],
};
const exampleAi: ExampleConfig = {
title: 'AI-powered development setup',
description: 'Install Cursor with popular development extensions and editor settings for productive AI-assisted coding.',
configs: [{
type: 'cursor',
extensions: ['ms-python.python', 'eamodio.gitlens', 'esbenp.prettier-vscode'],
settings: {
'editor.fontSize': 14,
'editor.formatOnSave': true,
'editor.tabSize': 2,
},
}],
};
const exampleWithMcp: ExampleConfig = {
title: 'Cursor with MCP servers',
description: 'Configure Cursor with MCP servers for extended AI capabilities including filesystem and GitHub access.',
configs: [{
type: 'cursor',
extensions: ['ms-python.python', 'eamodio.gitlens'],
mcpServers: {
filesystem: {
command: 'npx',
args: ['-y', '@modelcontextprotocol/server-filesystem', '/home/user/projects'],
},
github: {
command: 'npx',
args: ['-y', '@modelcontextprotocol/server-github'],
env: { GITHUB_PERSONAL_ACCESS_TOKEN: '<Replace me here!' },
},
},
}],
};
export class CursorResource extends Resource<CursorConfig> {
getSettings(): ResourceSettings<CursorConfig> {
return {
id: 'cursor',
operatingSystems: [OS.Darwin, OS.Linux],
schema,
defaultConfig,
exampleConfigs: {
example1: exampleAi,
example2: exampleWithMcp,
},
parameterSettings: {
directory: {
type: 'directory',
default: Utils.isMacOS() ? '/Applications' : CURSOR_LOCAL_BIN,
},
extensions: { type: 'stateful', definition: new ExtensionsParameter(), order: 1 },
settings: { type: 'stateful', definition: new SettingsParameter(), order: 2 },
mcpServers: { type: 'stateful', definition: new McpServersParameter(), order: 3 },
},
};
}
override async refresh(parameters: Partial<CursorConfig>): Promise<Partial<CursorConfig> | null> {
const isInstalled = await this.isCursorInstalled(parameters.directory);
return isInstalled ? parameters : null;
}
override async create(plan: CreatePlan<CursorConfig>): Promise<void> {
if (Utils.isMacOS()) {
await this.installMacOS();
} else if (Utils.isLinux()) {
await this.installLinux(plan);
} else {
throw new Error('Unsupported operating system');
}
}
override async destroy(plan: DestroyPlan<CursorConfig>): Promise<void> {
const $ = getPty();
if (Utils.isMacOS()) {
const directory = plan.currentConfig.directory ?? '/Applications';
await $.spawn(`rm -rf "${path.join(directory, CURSOR_APPLICATION_NAME)}"`);
} else if (Utils.isLinux()) {
const aptCheck = await $.spawnSafe('which apt-get');
const dnfCheck = await $.spawnSafe('which dnf');
const yumCheck = await $.spawnSafe('which yum');
if (aptCheck.status === SpawnStatus.SUCCESS || dnfCheck.status === SpawnStatus.SUCCESS || yumCheck.status === SpawnStatus.SUCCESS) {
await Utils.uninstallViaPkgMgr('cursor');
} else {
const directory = plan.currentConfig.directory ?? CURSOR_LOCAL_BIN;
await $.spawnSafe(`rm -f "${path.join(directory, 'cursor')}"`);
await FileUtils.removeLineFromShellRc(CURSOR_LOCAL_BIN_EXPORT);
}
}
}
private async isCursorInstalled(directory?: string | null): Promise<boolean> {
if (Utils.isMacOS()) {
try {
const files = await fs.readdir(directory ?? '/Applications');
return files.includes(CURSOR_APPLICATION_NAME);
} catch {
return false;
}
}
if (Utils.isLinux()) {
const $ = getPty();
const result = await $.spawnSafe('which cursor');
return result.status === SpawnStatus.SUCCESS;
}
return false;
}
private async installMacOS(): Promise<void> {
const $ = getPty();
await $.spawn('brew install --cask cursor', { interactive: true });
}
private async installLinux(plan: CreatePlan<CursorConfig>): Promise<void> {
const $ = getPty();
const aptCheck = await $.spawnSafe('which apt-get');
if (aptCheck.status === SpawnStatus.SUCCESS) {
await $.spawn(
'bash -c "curl -fsSL https://downloads.cursor.com/keys/anysphere.asc | gpg --dearmor | tee /etc/apt/keyrings/cursor.gpg > /dev/null"',
{ requiresRoot: true },
);
await $.spawn(
'bash -c "echo \\"deb [arch=amd64,arm64 signed-by=/etc/apt/keyrings/cursor.gpg] https://downloads.cursor.com/aptrepo stable main\\" | tee /etc/apt/sources.list.d/cursor.list > /dev/null"',
{ requiresRoot: true },
);
await Utils.installViaPkgMgr('cursor');
return;
}
const dnfCheck = await $.spawnSafe('which dnf');
const yumCheck = await $.spawnSafe('which yum');
if (dnfCheck.status === SpawnStatus.SUCCESS || yumCheck.status === SpawnStatus.SUCCESS) {
const pkgMgr = dnfCheck.status === SpawnStatus.SUCCESS ? 'dnf' : 'yum';
await $.spawn(
`${pkgMgr} config-manager --add-repo https://downloads.cursor.com/yumrepo/cursor.repo`,
{ requiresRoot: true },
);
await Utils.installViaPkgMgr('cursor');
return;
}
// Fallback: AppImage
const isArm = await Utils.isArmArch();
const downloadUrl = `https://api2.cursor.sh/updates/download/golden/linux-${isArm ? 'arm64' : 'x64'}/cursor/latest`;
const tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), 'cursor-'));
const tmpAppImage = path.join(tmpDir, 'cursor.AppImage');
try {
await FileUtils.downloadFile(downloadUrl, tmpAppImage);
const destDir = plan.desiredConfig.directory ?? CURSOR_LOCAL_BIN;
await fs.mkdir(destDir, { recursive: true });
const destPath = path.join(destDir, 'cursor');
await fs.rename(tmpAppImage, destPath);
await $.spawn(`chmod +x "${destPath}"`);
} finally {
await fs.rm(tmpDir, { recursive: true, force: true });
}
await FileUtils.addToShellRc(CURSOR_LOCAL_BIN_EXPORT);
}
}