Move to a terminal driven integration to have better interactions
This commit is contained in:
+26
-93
@@ -2,7 +2,7 @@
|
||||
"identifier": "unsupervised.claudenova",
|
||||
"name": "Claude",
|
||||
"organization": "Unsupervised",
|
||||
"description": "Claude Code in Nova — a chat sidebar, a live transcript, and tool approvals you review in the editor.",
|
||||
"description": "Launch and resume Claude Code sessions for your project, and keep track of them from Nova's sidebar.",
|
||||
"version": "1.0",
|
||||
"min_runtime": "10",
|
||||
"categories": ["sidebars", "commands"],
|
||||
@@ -21,15 +21,9 @@
|
||||
|
||||
"commands": {
|
||||
"extensions": [
|
||||
{"title": "Ask Claude…", "command": "claudenova.ask", "shortcut": "cmd-shift-l"},
|
||||
{"title": "Plan with Claude…", "command": "claudenova.plan", "shortcut": "cmd-shift-p"},
|
||||
{"title": "Add Files to Context…", "command": "claudenova.addFiles"},
|
||||
{"title": "Show Transcript", "command": "claudenova.showTranscript"},
|
||||
{"separator": true},
|
||||
{"title": "New Session", "command": "claudenova.newSession"},
|
||||
{"title": "New Session…", "command": "claudenova.newSession", "shortcut": "cmd-shift-l"},
|
||||
{"title": "Resume Session…", "command": "claudenova.resumeSession"},
|
||||
{"title": "Stop Claude", "command": "claudenova.interrupt"},
|
||||
{"title": "End Session", "command": "claudenova.endSession"},
|
||||
{"title": "Refresh Sessions", "command": "claudenova.refreshSessions"},
|
||||
{"separator": true},
|
||||
{"title": "Set Model…", "command": "claudenova.setModel"},
|
||||
{"title": "Set Permission Mode…", "command": "claudenova.setPermissionMode"},
|
||||
@@ -41,8 +35,7 @@
|
||||
{"title": "Clear Stored API Key", "command": "claudenova.clearApiKey"}
|
||||
],
|
||||
"editor": [
|
||||
{"title": "Ask Claude About Selection…", "command": "claudenova.askAboutSelection", "shortcut": "cmd-ctrl-l"},
|
||||
{"title": "Add File to Claude's Context", "command": "claudenova.addFileContext"}
|
||||
{"title": "Copy File Reference for Claude", "command": "claudenova.copyFileReference"}
|
||||
]
|
||||
},
|
||||
|
||||
@@ -57,10 +50,10 @@
|
||||
{
|
||||
"key": "claudenova.model",
|
||||
"title": "Model",
|
||||
"description": "Model alias passed to Claude Code. “Default” uses whatever your Claude Code settings specify.",
|
||||
"description": "Passed as --model to sessions this extension launches.",
|
||||
"type": "enum",
|
||||
"values": [
|
||||
["", "Default"],
|
||||
["", "Claude Code default"],
|
||||
["opus", "Opus"],
|
||||
["sonnet", "Sonnet"],
|
||||
["haiku", "Haiku"],
|
||||
@@ -71,10 +64,10 @@
|
||||
{
|
||||
"key": "claudenova.effort",
|
||||
"title": "Effort",
|
||||
"description": "How much thinking and exploration Claude does per turn.",
|
||||
"description": "Passed as --effort to sessions this extension launches.",
|
||||
"type": "enum",
|
||||
"values": [
|
||||
["", "Default"],
|
||||
["", "Claude Code default"],
|
||||
["low", "Low"],
|
||||
["medium", "Medium"],
|
||||
["high", "High"],
|
||||
@@ -86,59 +79,22 @@
|
||||
{
|
||||
"key": "claudenova.permissionMode",
|
||||
"title": "Permission mode",
|
||||
"description": "How tool use is approved. “Manual” asks you before every tool that needs permission.",
|
||||
"description": "Passed as --permission-mode to sessions this extension launches.",
|
||||
"type": "enum",
|
||||
"values": [
|
||||
["", "Claude Code default"],
|
||||
["manual", "Manual — ask before each tool"],
|
||||
["acceptEdits", "Accept Edits — auto-approve file edits"],
|
||||
["plan", "Plan — research only, no changes"],
|
||||
["auto", "Auto — Claude decides what needs asking"],
|
||||
["bypassPermissions", "Bypass — approve everything (dangerous)"]
|
||||
],
|
||||
"default": "manual"
|
||||
},
|
||||
{
|
||||
"key": "claudenova.reviewEdits",
|
||||
"title": "Reviewing file changes",
|
||||
"description": "How Claude's edits are presented when they need approval.",
|
||||
"type": "enum",
|
||||
"values": [
|
||||
["editor", "Open the proposed file — save to apply, close to reject"],
|
||||
["panel", "Ask in a panel, with the diff on request"]
|
||||
],
|
||||
"default": "editor"
|
||||
},
|
||||
{
|
||||
"key": "claudenova.openTranscript",
|
||||
"title": "Open the transcript automatically",
|
||||
"description": "Open the transcript tab when a session starts.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"key": "claudenova.streamPartial",
|
||||
"title": "Stream text as it is generated",
|
||||
"description": "Show Claude's reply token by token instead of message by message.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"key": "claudenova.showThinking",
|
||||
"title": "Show thinking in the transcript",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"key": "claudenova.includeSelection",
|
||||
"title": "Include the editor selection with prompts",
|
||||
"description": "When text is selected, send the file, line range, and selected text along with your question.",
|
||||
"type": "boolean",
|
||||
"default": true
|
||||
"default": ""
|
||||
},
|
||||
{
|
||||
"key": "claudenova.extraArgs",
|
||||
"title": "Additional CLI arguments",
|
||||
"description": "Space-separated arguments appended to the `claude` command line. For advanced use.",
|
||||
"description": "Appended to the launch command. For advanced use.",
|
||||
"type": "string",
|
||||
"placeholder": "--add-dir ../shared"
|
||||
}
|
||||
@@ -182,61 +138,38 @@
|
||||
"largeImage": "claude-large",
|
||||
"sections": [
|
||||
{
|
||||
"id": "claude.session",
|
||||
"name": "Session",
|
||||
"id": "claude.status",
|
||||
"name": "Claude",
|
||||
"allowMultiple": false,
|
||||
"placeholderText": "No session yet.\nPress New Session to start one.",
|
||||
"placeholderText": "Checking Claude Code…",
|
||||
"placeholderImage": "claude-placeholder",
|
||||
"headerCommands": [
|
||||
{"title": "Ask Claude", "image": "__builtin.action", "tooltip": "Ask Claude…", "command": "claudenova.ask"},
|
||||
{"title": "New Session", "image": "__builtin.add", "tooltip": "Start a new session", "command": "claudenova.newSession"},
|
||||
{"title": "New Session", "image": "__builtin.add", "tooltip": "Copy a command to start a session", "command": "claudenova.newSession"},
|
||||
{"title": "Refresh", "image": "__builtin.refresh", "tooltip": "Refresh account status", "command": "claudenova.refreshStatus"}
|
||||
],
|
||||
"contextCommands": [
|
||||
{"title": "Set Model…", "command": "claudenova.setModel"},
|
||||
{"title": "Set Permission Mode…", "command": "claudenova.setPermissionMode"},
|
||||
{"separator": true},
|
||||
{"title": "Stop Claude", "command": "claudenova.interrupt"},
|
||||
{"title": "End Session", "command": "claudenova.endSession"}
|
||||
{"title": "Sign In…", "command": "claudenova.signIn"},
|
||||
{"title": "Show Account Status", "command": "claudenova.authStatus"}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "claude.approvals",
|
||||
"name": "Needs Approval",
|
||||
"id": "claude.sessions",
|
||||
"name": "Sessions",
|
||||
"allowMultiple": false,
|
||||
"placeholderText": "Nothing waiting on you.",
|
||||
"placeholderText": "No sessions yet.\nStart one to see it here.",
|
||||
"placeholderImage": "claude-placeholder",
|
||||
"contextCommands": [
|
||||
{"title": "Choose", "command": "claudenova.approvalAction", "when": "viewItem == 'approval-action'"},
|
||||
{"title": "Review…", "command": "claudenova.reviewApproval", "when": "viewItem == 'approval'"},
|
||||
{"title": "Allow", "command": "claudenova.allowApproval", "when": "viewItem == 'approval'"},
|
||||
{"title": "Allow for This Session", "command": "claudenova.allowApprovalAlways", "when": "viewItem == 'approval'"},
|
||||
{"title": "Deny", "command": "claudenova.denyApproval", "when": "viewItem == 'approval'"}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "claude.activity",
|
||||
"name": "Activity",
|
||||
"allowMultiple": false,
|
||||
"placeholderText": "Claude's tool use shows up here.",
|
||||
"headerCommands": [
|
||||
{"title": "Show Transcript", "image": "__builtin.path", "tooltip": "Show the transcript", "command": "claudenova.showTranscript"}
|
||||
{"title": "New Session", "image": "__builtin.add", "tooltip": "Copy a command to start a session", "command": "claudenova.newSession"},
|
||||
{"title": "Refresh", "image": "__builtin.refresh", "tooltip": "Rescan this project's sessions", "command": "claudenova.refreshSessions"}
|
||||
],
|
||||
"contextCommands": [
|
||||
{"title": "Open File", "command": "claudenova.openActivityFile", "when": "viewItem == 'activity-file'"},
|
||||
{"title": "Copy Details", "command": "claudenova.copyActivity"}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "claude.changes",
|
||||
"name": "Changed Files",
|
||||
"allowMultiple": true,
|
||||
"placeholderText": "Files Claude edits appear here.",
|
||||
"contextCommands": [
|
||||
{"title": "Open File", "command": "claudenova.openChangedFile"},
|
||||
{"title": "Show Change…", "command": "claudenova.showChangeDiff"},
|
||||
{"title": "Choose", "command": "claudenova.sessionAction", "when": "viewItem == 'session-action'"},
|
||||
{"title": "Copy Resume Command", "command": "claudenova.copyResume", "when": "viewItem == 'session'"},
|
||||
{"separator": true},
|
||||
{"title": "Clear List", "command": "claudenova.clearChanges"}
|
||||
{"title": "Refresh Sessions", "command": "claudenova.refreshSessions"}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user