-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.54 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
{
"name": "quick-agent-shifting",
"displayName": "Quick Agent Shifting",
"description": "VS Code-first handoff manager for switching between AI roles and models.",
"version": "0.1.0",
"publisher": "bigfoot-local",
"private": true,
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:quickAgentShift.pickRole",
"onCommand:quickAgentShift.generateSolReview",
"onCommand:quickAgentShift.generateTerraImplement",
"onCommand:quickAgentShift.generateFableReview",
"onCommand:quickAgentShift.generateOpusPlan",
"onCommand:quickAgentShift.generateCodexImplement",
"onCommand:quickAgentShift.openCurrentTask",
"onCommand:quickAgentShift.openSessionsFolder"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "quickAgentShift.pickRole",
"title": "Quick Shift: Pick Role"
},
{
"command": "quickAgentShift.generateSolReview",
"title": "Quick Shift: Sol Review"
},
{
"command": "quickAgentShift.generateTerraImplement",
"title": "Quick Shift: Terra Implement"
},
{
"command": "quickAgentShift.generateFableReview",
"title": "Quick Shift: Fable Final Review"
},
{
"command": "quickAgentShift.generateOpusPlan",
"title": "Quick Shift: Opus Plan"
},
{
"command": "quickAgentShift.generateCodexImplement",
"title": "Quick Shift: Codex Implement"
},
{
"command": "quickAgentShift.openCurrentTask",
"title": "Quick Shift: Open Current Task"
},
{
"command": "quickAgentShift.openSessionsFolder",
"title": "Quick Shift: Open Sessions Folder"
}
],
"keybindings": [
{
"command": "quickAgentShift.pickRole",
"key": "ctrl+alt+s",
"when": "workspaceFolderCount > 0"
},
{
"command": "quickAgentShift.generateSolReview",
"key": "ctrl+alt+r",
"when": "workspaceFolderCount > 0"
},
{
"command": "quickAgentShift.generateTerraImplement",
"key": "ctrl+alt+t",
"when": "workspaceFolderCount > 0"
}
],
"configuration": {
"title": "Quick Agent Shifting",
"properties": {
"quickAgentShift.hubPath": {
"type": "string",
"default": "O:\\Projects\\Personal\\Quick agent shifting",
"description": "Path to the shared Quick Agent Shifting hub folder."
},
"quickAgentShift.defaultTaskPrompt": {
"type": "string",
"default": "Describe the current task, goal, and next action.",
"description": "Default prompt shown when a task does not have a title yet."
}
}
},
"menus": {
"commandPalette": [
{
"command": "quickAgentShift.pickRole"
},
{
"command": "quickAgentShift.generateSolReview"
},
{
"command": "quickAgentShift.generateTerraImplement"
},
{
"command": "quickAgentShift.generateFableReview"
},
{
"command": "quickAgentShift.generateOpusPlan"
},
{
"command": "quickAgentShift.generateCodexImplement"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "npm run compile"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@types/vscode": "^1.85.0",
"typescript": "^5.4.5"
}
}