-
Notifications
You must be signed in to change notification settings - Fork 58
feat(cursor): Add Cursor IDE module #290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
f07bc2f
Add Cursor IDE module with Terraform support
matifali 4a5c908
add biome lint suggestions
matifali 48d074e
Add cursor SVG icon file
matifali a1260f5
update logo
matifali 5ba919a
Rename resources and outputs for Cursor IDE module
matifali 7dea2a0
Bump Cursor module version in README to 1.0.18
matifali 7b32ac3
Update icon for Cursor IDE module
matifali f4d5b0c
Merge branch 'main' into cursor
matifali File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
display_name: Cursor IDE | ||
description: Add a one-click button to launch Cursor IDE | ||
icon: ../.icons/cursor.svg | ||
maintainer_github: coder | ||
verified: true | ||
tags: [ide, cursor, helper] | ||
--- | ||
|
||
# Cursor IDE | ||
|
||
Add a button to open any workspace with a single click in Cursor IDE. | ||
|
||
Uses the [Coder Remote VS Code Extension](https://github.com/coder/cursor-coder). | ||
|
||
```tf | ||
module "cursor" { | ||
source = "registry.coder.com/modules/cursor/coder" | ||
version = "1.0.18" | ||
agent_id = coder_agent.example.id | ||
} | ||
``` | ||
|
||
## Examples | ||
|
||
### Open in a specific directory | ||
|
||
```tf | ||
module "cursor" { | ||
source = "registry.coder.com/modules/cursor/coder" | ||
version = "1.0.18" | ||
agent_id = coder_agent.example.id | ||
folder = "/home/coder/project" | ||
} | ||
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import { describe, expect, it } from "bun:test"; | ||
import { | ||
executeScriptInContainer, | ||
runTerraformApply, | ||
runTerraformInit, | ||
testRequiredVariables, | ||
} from "../test"; | ||
|
||
describe("cursor", async () => { | ||
await runTerraformInit(import.meta.dir); | ||
|
||
testRequiredVariables(import.meta.dir, { | ||
agent_id: "foo", | ||
}); | ||
|
||
it("default output", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "foo", | ||
}); | ||
expect(state.outputs.cursor_url.value).toBe( | ||
"cursor://coder.coder-remote/open?owner=default&workspace=default&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
); | ||
|
||
const coder_app = state.resources.find( | ||
(res) => res.type === "coder_app" && res.name === "cursor", | ||
); | ||
|
||
expect(coder_app).not.toBeNull(); | ||
expect(coder_app?.instances.length).toBe(1); | ||
expect(coder_app?.instances[0].attributes.order).toBeNull(); | ||
}); | ||
|
||
it("adds folder", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "foo", | ||
folder: "/foo/bar", | ||
}); | ||
expect(state.outputs.cursor_url.value).toBe( | ||
"cursor://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
); | ||
}); | ||
|
||
it("adds folder and open_recent", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "foo", | ||
folder: "/foo/bar", | ||
open_recent: "true", | ||
}); | ||
expect(state.outputs.cursor_url.value).toBe( | ||
"cursor://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&openRecent&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
); | ||
}); | ||
|
||
it("adds folder but not open_recent", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "foo", | ||
folder: "/foo/bar", | ||
openRecent: "false", | ||
}); | ||
expect(state.outputs.cursor_url.value).toBe( | ||
"cursor://coder.coder-remote/open?owner=default&workspace=default&folder=/foo/bar&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
); | ||
}); | ||
|
||
it("adds open_recent", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "foo", | ||
open_recent: "true", | ||
}); | ||
expect(state.outputs.cursor_url.value).toBe( | ||
"cursor://coder.coder-remote/open?owner=default&workspace=default&openRecent&url=https://mydeployment.coder.com&token=$SESSION_TOKEN", | ||
); | ||
}); | ||
|
||
it("expect order to be set", async () => { | ||
const state = await runTerraformApply(import.meta.dir, { | ||
agent_id: "foo", | ||
order: "22", | ||
}); | ||
|
||
const coder_app = state.resources.find( | ||
(res) => res.type === "coder_app" && res.name === "cursor", | ||
); | ||
|
||
expect(coder_app).not.toBeNull(); | ||
expect(coder_app?.instances.length).toBe(1); | ||
expect(coder_app?.instances[0].attributes.order).toBe(22); | ||
}); | ||
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
terraform { | ||
required_version = ">= 1.0" | ||
|
||
required_providers { | ||
coder = { | ||
source = "coder/coder" | ||
version = ">= 0.23" | ||
} | ||
} | ||
} | ||
|
||
variable "agent_id" { | ||
type = string | ||
description = "The ID of a Coder agent." | ||
} | ||
|
||
variable "folder" { | ||
type = string | ||
description = "The folder to open in Cursor IDE." | ||
default = "" | ||
} | ||
|
||
variable "open_recent" { | ||
type = bool | ||
description = "Open the most recent workspace or folder. Falls back to the folder if there is no recent workspace or folder to open." | ||
default = false | ||
} | ||
|
||
variable "order" { | ||
type = number | ||
description = "The order determines the position of app in the UI presentation. The lowest order is shown first and apps with equal order are sorted by name (ascending order)." | ||
default = null | ||
} | ||
|
||
data "coder_workspace" "me" {} | ||
data "coder_workspace_owner" "me" {} | ||
|
||
resource "coder_app" "cursor" { | ||
agent_id = var.agent_id | ||
external = true | ||
icon = "/icon/cursor.svg" | ||
slug = "cursor" | ||
display_name = "Cursor IDE" | ||
order = var.order | ||
url = join("", [ | ||
"cursor://coder.coder-remote/open", | ||
"?owner=", | ||
data.coder_workspace_owner.me.name, | ||
"&workspace=", | ||
data.coder_workspace.me.name, | ||
var.folder != "" ? join("", ["&folder=", var.folder]) : "", | ||
var.open_recent ? "&openRecent" : "", | ||
"&url=", | ||
data.coder_workspace.me.access_url, | ||
"&token=$SESSION_TOKEN", | ||
]) | ||
} | ||
|
||
output "cursor_url" { | ||
value = coder_app.cursor.url | ||
description = "Cursor IDE Desktop URL." | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Requires the local Coder VSCode extension. You can import this extension into Cursor."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For me it auto prompts to install the extension if not installed already (Similar to VS Code).
