-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.51 KB
/
Copy pathpackage.json
File metadata and controls
147 lines (147 loc) · 4.51 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
{
"name": "clawdcommit",
"displayName": "ClawdCommit",
"description": "AI-powered git commit messages in the Source Control pane — analyzes staged changes using Claude Code CLI",
"version": "1.1.0",
"publisher": "ShiftinBits",
"license": "MIT",
"repository": "https://github.com/shiftinbits/clawdcommit",
"icon": "images/clawd-icon.png",
"galleryBanner": {
"color": "#1e1e1e",
"theme": "dark"
},
"preview": false,
"badges": [
{
"url": "https://img.shields.io/github/v/release/shiftinbits/clawdcommit",
"href": "https://marketplace.visualstudio.com/items?itemName=ShiftinBits.clawdcommit",
"description": "Current Release"
},
{
"url": "https://img.shields.io/github/actions/workflow/status/shiftinbits/clawdcommit/test.yml?branch=main&logo=jest&logoColor=white&label=tests",
"href": "https://github.com/shiftinbits/clawdcommit/actions/workflows/test.yml?query=branch%3Amain",
"description": "Test Results"
},
{
"url": "https://img.shields.io/codecov/c/github/shiftinbits/clawdcommit?logo=codecov&logoColor=white",
"href": "https://app.codecov.io/gh/shiftinbits/clawdcommit/",
"description": "Code Coverage"
},
{
"url": "https://img.shields.io/badge/security-monitored-8A2BE2?logo=snyk",
"href": "https://snyk.io/test/github/shiftinbits/clawdcommit",
"description": "Snyk Security Monitored"
},
{
"url": "https://img.shields.io/badge/license-MIT-3DA639?logo=opensourceinitiative&logoColor=white",
"href": "https://github.com/shiftinbits/clawdcommit/blob/main/LICENSE",
"description": "License: MIT"
}
],
"engines": {
"vscode": "^1.109.0"
},
"categories": [
"SCM Providers",
"Machine Learning"
],
"keywords": [
"git",
"commit message",
"claude",
"ai",
"anthropic"
],
"extensionKind": [
"workspace"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": false,
"description": "ClawdCommit executes the Claude Code CLI and reads workspace files to generate commit messages."
},
"virtualWorkspaces": false
},
"main": "./dist/extension.js",
"browser": "./dist/web/extension.js",
"contributes": {
"commands": [
{
"command": "clawdcommit.generateCommitMessage",
"title": "Generate Commit Message with Claude",
"icon": {
"dark": "images/clawd-icon.svg",
"light": "images/clawd-icon.svg"
},
"category": "ClawdCommit"
}
],
"menus": {
"scm/title": [
{
"command": "clawdcommit.generateCommitMessage",
"group": "navigation",
"when": "scmProvider == git"
}
]
},
"keybindings": [
{
"command": "clawdcommit.generateCommitMessage",
"key": "ctrl+shift+alt+c",
"mac": "cmd+shift+alt+c",
"when": "scmProvider == git"
}
],
"configuration": {
"title": "ClawdCommit",
"properties": {
"clawdCommit.model": {
"type": "string",
"enum": [
"haiku",
"sonnet",
"opus"
],
"default": "sonnet",
"enumDescriptions": [
"Fastest and most economical",
"Balanced capability and speed (recommended)",
"Most capable — best results, highest latency and cost"
],
"markdownDescription": "Claude model to use for commit message generation."
},
"clawdCommit.includeFileContext": {
"type": "boolean",
"default": true,
"markdownDescription": "Allow Claude to read files in the working directory for additional context beyond the diff. Disable to restrict analysis to the staged diff only."
}
}
}
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"compile": "npm run check-types && node esbuild.js",
"check-types": "tsc --noEmit",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"vscode:prepublish": "npm run package",
"package": "npm run check-types && node esbuild.js --production"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^25.2.3",
"@types/vscode": "^1.109.0",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.3",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}