-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
219 lines (219 loc) · 7.27 KB
/
Copy pathpackage.json
File metadata and controls
219 lines (219 loc) · 7.27 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
{
"name": "codex-commit-message",
"displayName": "Codex Commit Message",
"description": "Generate Git commit messages from the VS Code Source Control input box with Codex CLI.",
"version": "0.1.5",
"publisher": "vulkanfry",
"author": {
"name": "Vladimir Sidorenko",
"email": "vulkanfry@lunatic.cat",
"url": "https://github.com/vulkanfry"
},
"license": "UNLICENSED",
"private": true,
"packageManager": "bun@1.3.11",
"engines": {
"vscode": "^1.116.0"
},
"categories": [
"SCM Providers",
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#0f141b",
"theme": "dark"
},
"keywords": [
"codex",
"commit",
"commit-message",
"git",
"source-control"
],
"repository": {
"type": "git",
"url": "https://github.com/vulkanfry/vscode-codex-commit-message.git"
},
"homepage": "https://github.com/vulkanfry/vscode-codex-commit-message#readme",
"bugs": {
"url": "https://github.com/vulkanfry/vscode-codex-commit-message/issues"
},
"pricing": "Free",
"activationEvents": [
"onCommand:codexCommitMessage.generate",
"onCommand:codexCommitMessage.openConfig"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "codexCommitMessage.generate",
"title": "Generate Commit Message with Codex",
"category": "Codex",
"icon": "$(terminal)"
},
{
"command": "codexCommitMessage.openConfig",
"title": "Open Commit Message Config",
"category": "Codex",
"icon": "$(settings-gear)"
}
],
"menus": {
"scm/title": [
{
"command": "codexCommitMessage.generate",
"when": "scmProvider == git",
"group": "navigation@0"
}
],
"scm/sourceControl": [
{
"command": "codexCommitMessage.generate",
"when": "scmProvider == git",
"group": "3_codex@1"
}
],
"commandPalette": [
{
"command": "codexCommitMessage.generate",
"when": "scmProvider == git || workspaceFolderCount > 0"
},
{
"command": "codexCommitMessage.openConfig"
}
]
},
"configuration": {
"title": "Codex Commit Message",
"properties": {
"codexCommitMessage.codexPath": {
"type": "string",
"default": "codex",
"description": "Fallback path to the Codex CLI executable. TOML key: codex.path."
},
"codexCommitMessage.configPath": {
"type": "string",
"default": "",
"description": "Optional TOML config path. Supports ~. Empty uses ~/.config/codex-commit-message/config.toml plus workspace .codex-commit-message.toml."
},
"codexCommitMessage.model": {
"type": "string",
"default": "",
"description": "Fallback Codex model override. TOML key: codex.model."
},
"codexCommitMessage.timeoutMs": {
"type": "number",
"default": 120000,
"minimum": 10000,
"description": "Fallback maximum time to wait for Codex CLI commit-message generation. TOML key: codex.timeout_ms."
},
"codexCommitMessage.reasoningEffort": {
"type": "string",
"enum": [
"",
"low",
"medium",
"high",
"xhigh"
],
"default": "low",
"description": "Fallback model_reasoning_effort override passed to Codex CLI. TOML key: codex.reasoning_effort."
},
"codexCommitMessage.maxDiffBytes": {
"type": "number",
"default": 200000,
"minimum": 1000,
"description": "Fallback maximum diff size sent to Codex CLI. TOML key: codex.max_diff_bytes."
},
"codexCommitMessage.diffMode": {
"type": "string",
"enum": [
"stagedOrWorkingTree",
"staged",
"workingTree"
],
"default": "stagedOrWorkingTree",
"description": "Fallback Git diff selection. TOML key: codex.diff_mode."
},
"codexCommitMessage.ignoreRules": {
"type": "boolean",
"default": true,
"description": "Fallback value for passing --ignore-rules to Codex CLI. TOML key: codex.ignore_rules."
},
"codexCommitMessage.ignoreUserConfig": {
"type": "boolean",
"default": false,
"description": "Fallback value for passing --ignore-user-config to Codex CLI. TOML key: codex.ignore_user_config."
},
"codexCommitMessage.messageMode": {
"type": "string",
"enum": [
"summary",
"expanded"
],
"default": "summary",
"description": "Fallback commit-message mode. summary prefers a concise subject; expanded asks for a subject plus body. TOML key: message.mode."
},
"codexCommitMessage.conventionalCommits": {
"type": "boolean",
"default": true,
"description": "Fallback Conventional Commits preference. TOML key: message.conventional_commits."
},
"codexCommitMessage.language": {
"type": "string",
"default": "auto",
"description": "Fallback generated commit-message language, for example auto, en, or ru. TOML key: message.language."
},
"codexCommitMessage.includeBody": {
"type": "string",
"enum": [
"auto",
"always",
"never"
],
"default": "auto",
"description": "Fallback body policy for generated commit messages. TOML key: message.include_body."
},
"codexCommitMessage.maxSubjectChars": {
"type": "number",
"default": 72,
"minimum": 20,
"description": "Fallback preferred maximum subject length. TOML key: message.max_subject_chars."
},
"codexCommitMessage.generatedBy": {
"type": "boolean",
"default": false,
"description": "Fallback toggle for appending a generated-by footer. TOML key: message.generated_by."
},
"codexCommitMessage.generatedByAuthor": {
"type": "string",
"default": "git_author",
"description": "Fallback footer author. Use git_author, git_user, or a literal string like @vulkanfry. TOML key: message.generated_by_author."
},
"codexCommitMessage.generatedByFormat": {
"type": "string",
"default": "Generated via Codex Commit Message by {author}",
"description": "Fallback generated-by footer template. {author} is replaced with the resolved author. TOML key: message.generated_by_format."
},
"codexCommitMessage.additionalInstructions": {
"type": "string",
"default": "",
"description": "Fallback extra instructions appended to the Codex commit-message prompt. TOML key: codex.additional_instructions."
}
}
}
},
"scripts": {
"compile": "tsc -p .",
"test": "bun test src/**/*.test.ts",
"package": "bun run compile && vsce package --no-dependencies --allow-missing-repository"
},
"devDependencies": {
"@types/node": "20.19.24",
"@types/vscode": "1.116.0",
"@vscode/vsce": "3.9.1",
"typescript": "5.9.3"
}
}