-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
169 lines (169 loc) · 4.47 KB
/
Copy pathpackage.json
File metadata and controls
169 lines (169 loc) · 4.47 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
{
"name": "shipit",
"displayName": "ShipIt",
"description": "Runs Copilot Agent Mode in a loop to implement tasks from your PRD",
"version": "3.0.1",
"publisher": "emanuelebartolesi",
"icon": "img/logo.png",
"sponsor": {
"url": "https://github.com/sponsors/kasuken"
},
"repository": {
"type": "git",
"url": "https://github.com/kasuken/vscode-shipit.git"
},
"license": "MIT",
"homepage": "https://github.com/kasuken/vscode-shipit",
"engines": {
"vscode": "^1.93.0"
},
"categories": [
"AI",
"Chat",
"Other"
],
"keywords": [
"copilot",
"ai",
"agent",
"prd",
"development",
"loop",
"shipit",
"autonomous"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "shipit",
"title": "ShipIt",
"icon": "$(package)"
}
]
},
"views": {
"shipit": [
{
"type": "webview",
"id": "shipit.sidebar",
"name": "ShipIt",
"icon": "$(package)"
}
]
},
"commands": [
{
"command": "shipit.showPanel",
"title": "ShipIt: Open Control Panel",
"icon": "$(package)"
},
{
"command": "shipit.start",
"title": "ShipIt: Start Loop"
},
{
"command": "shipit.stop",
"title": "ShipIt: Stop Loop"
},
{
"command": "shipit.pause",
"title": "ShipIt: Pause Loop"
},
{
"command": "shipit.resume",
"title": "ShipIt: Resume Loop"
},
{
"command": "shipit.next",
"title": "ShipIt: Run Single Step"
},
{
"command": "shipit.generatePrd",
"title": "ShipIt: Generate PRD from Description"
},
{
"command": "shipit.generateUserStories",
"title": "ShipIt: Generate User Stories for Task"
},
{
"command": "shipit.generateAllUserStories",
"title": "ShipIt: Generate All User Stories"
},
{
"command": "shipit.viewLogs",
"title": "ShipIt: View Logs"
}
],
"configuration": {
"title": "ShipIt",
"properties": {
"shipit.files.prdPath": {
"type": "string",
"default": ".shipit/PRD.md",
"description": "Path to the PRD (Product Requirements Document) file"
},
"shipit.files.progressPath": {
"type": "string",
"default": ".shipit/progress.txt",
"description": "Path to the progress tracking file"
},
"shipit.prompt.customTemplate": {
"type": "string",
"default": "",
"editPresentation": "multilineText",
"description": "Custom prompt template to override the default. Use {{task}} for the task description, {{prd}} for PRD contents, {{progress}} for progress log, {{requirements}} for requirement steps, and {{workspace}} for workspace path."
},
"shipit.prompt.customPrdGenerationTemplate": {
"type": "string",
"default": "",
"editPresentation": "multilineText",
"description": "Custom PRD generation prompt template. Use {{task}} for user's request and {{workspace}} for workspace path."
},
"shipit.models.prdGeneration": {
"type": "string",
"default": "gpt-5.2",
"description": "Model to use for PRD generation"
},
"shipit.models.userStoriesGeneration": {
"type": "string",
"default": "gpt-5.2",
"description": "Model to use for user stories generation"
},
"shipit.models.taskImplementation": {
"type": "string",
"default": "gpt-5-mini",
"description": "Model to use for task/user story implementation"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/vscode": "^1.93.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
},
"extensionDependencies": [
"github.copilot-chat"
],
"dependencies": {
"@github/copilot-sdk": "^0.1.21"
}
}