This commit is contained in:
ray zhou
2026-05-29 17:23:17 +08:00
parent f71a5c59af
commit 1bcb6120dd
139 changed files with 4229 additions and 523 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "move_agent_to_root",
"description": "Move the current agent to a new root workspace directory. Use this after creating a worktree or whenever the conversation should continue from a different workspace root.",
"description": "Move the current agent to a new root workspace directory. Use this after creating a worktree or whenever the conversation should continue from a different workspace root. If the destination was just produced by `cursorfs-clone` (under `~/.cursor/cursorfs-clone/...`), use `move_agent_to_cloned_root` instead — this generic tool runs `git fetch origin <branch>` against the destination and will fail with \"Remote branch not found on origin\" on local-only branches.",
"arguments": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"anyOf": [

View File

@@ -0,0 +1,40 @@
{
"name": "open_automation",
"description": "Open the Glass Automations UI, optionally opening an existing automation by automationId or starting a new automation from a templateId and/or structured prefillWorkflowData. Use this instead of opening cursor.com automation URLs or putting raw prefill data in cursor:// URLs. Calls with prefillWorkflowData require tool approval before the data is trusted by the form, and prefill data is sent only to the active Glass view.",
"arguments": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"automationId": {
"description": "Optional existing automation id to open in the Automations UI.",
"type": "string",
"minLength": 1,
"maxLength": 512
},
"view": {
"description": "Which existing automation view to open. Defaults to edit. Requires automationId.",
"type": "string",
"enum": [
"edit",
"view",
"runs"
]
},
"templateId": {
"description": "Optional automation template id to preselect in the new automation form.",
"type": "string",
"minLength": 1,
"maxLength": 512
},
"prefillWorkflowData": {
"description": "Optional workflow data JSON object used to prefill the new automation form. The payload is sent only to the active Glass view and is not put in a URL or browser storage.",
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
}
},
"additionalProperties": false
}
}

View File

@@ -0,0 +1,20 @@
{
"name": "rename_chat",
"description": "Rename the current chat conversation tab title. Uses the active conversation when composerId is not provided by the caller.",
"arguments": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"title": {
"description": "New title for the current chat conversation.",
"type": "string",
"minLength": 1,
"maxLength": 200
}
},
"required": [
"title"
],
"additionalProperties": false
}
}