Initial commit
This commit is contained in:
12
.claude-plugin/plugin.json
Normal file
12
.claude-plugin/plugin.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "claude-dev-helper",
|
||||
"description": "Git diff review integration for Claude Code with VSCode extension. Provides inline diff view, browser diff editor, and auto-open files.",
|
||||
"version": "1.4.0",
|
||||
"author": {
|
||||
"name": "Dev GOM",
|
||||
"url": "https://github.com/Dev-GOM/claude-code-marketplace"
|
||||
},
|
||||
"hooks": [
|
||||
"./hooks"
|
||||
]
|
||||
}
|
||||
3
README.md
Normal file
3
README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# claude-dev-helper
|
||||
|
||||
Git diff review integration for Claude Code with VSCode extension. Provides inline diff view, browser diff editor, and auto-open files.
|
||||
41
hooks/hooks.json
Normal file
41
hooks/hooks.json
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
"description": "Claude Dev Helper - Auto-open files in VSCode after Write/Edit",
|
||||
"version": "1.4.0",
|
||||
"author": "Dev GOM",
|
||||
"lastUpdated": "2025-10-29",
|
||||
"hooks": {
|
||||
"SessionStart": [
|
||||
{
|
||||
"description": "Initialize plugin configuration at session start",
|
||||
"priority": 100,
|
||||
"enabled": true,
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node ${CLAUDE_PLUGIN_ROOT}/scripts/init-config.js",
|
||||
"description": "Creates default configuration file if it doesn't exist",
|
||||
"continueOnError": true,
|
||||
"suppressOutput": true
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"PostToolUse": [
|
||||
{
|
||||
"description": "Auto-open modified files in VSCode without focus",
|
||||
"matcher": "Write|Edit",
|
||||
"priority": 50,
|
||||
"enabled": true,
|
||||
"hooks": [
|
||||
{
|
||||
"type": "command",
|
||||
"command": "node ${CLAUDE_PLUGIN_ROOT}/scripts/auto-open-file.js",
|
||||
"description": "Opens modified file in VSCode without focusing",
|
||||
"continueOnError": true,
|
||||
"suppressOutput": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
45
plugin.lock.json
Normal file
45
plugin.lock.json
Normal file
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"$schema": "internal://schemas/plugin.lock.v1.json",
|
||||
"pluginId": "gh:Dev-GOM/claude-code-marketplace:plugins/claude-dev-helper",
|
||||
"normalized": {
|
||||
"repo": null,
|
||||
"ref": "refs/tags/v20251128.0",
|
||||
"commit": "77fea105e56d4b632da79d9079ff8281f8df336d",
|
||||
"treeHash": "020cd19b933f26bd6bcfcb6854f593e02f1fbdbcd2b44e7c2f94ff9081a8c6af",
|
||||
"generatedAt": "2025-11-28T10:10:16.244973Z",
|
||||
"toolVersion": "publish_plugins.py@0.2.0"
|
||||
},
|
||||
"origin": {
|
||||
"remote": "git@github.com:zhongweili/42plugin-data.git",
|
||||
"branch": "master",
|
||||
"commit": "aa1497ed0949fd50e99e70d6324a29c5b34f9390",
|
||||
"repoRoot": "/Users/zhongweili/projects/openmind/42plugin-data"
|
||||
},
|
||||
"manifest": {
|
||||
"name": "claude-dev-helper",
|
||||
"description": "Git diff review integration for Claude Code with VSCode extension. Provides inline diff view, browser diff editor, and auto-open files.",
|
||||
"version": "1.4.0"
|
||||
},
|
||||
"content": {
|
||||
"files": [
|
||||
{
|
||||
"path": "README.md",
|
||||
"sha256": "863ac8a49b31a034e91788411d67dcc1a82c9a487e4bdff549e18efa8e43d8bb"
|
||||
},
|
||||
{
|
||||
"path": "hooks/hooks.json",
|
||||
"sha256": "9bac4c521034b640a9f847b1ab31cea89b699b92ec769d7e9f25f531fa8dffcd"
|
||||
},
|
||||
{
|
||||
"path": ".claude-plugin/plugin.json",
|
||||
"sha256": "881f1161b70ecc1bf22e1eaaf2588f508c863e02952f059b572fc6d704fa297b"
|
||||
}
|
||||
],
|
||||
"dirSha256": "020cd19b933f26bd6bcfcb6854f593e02f1fbdbcd2b44e7c2f94ff9081a8c6af"
|
||||
},
|
||||
"security": {
|
||||
"scannedAt": null,
|
||||
"scannerVersion": null,
|
||||
"flags": []
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user