Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
},
{
"name": "git-commit-assistant",
"version": "1.0.0",
"version": "1.0.1",
"description": "Intelligent git commit helper with semantic commit message generation, change analysis, and atomic commit guidance using conventional commits format",
"author": {
"name": "Daniel Hofheinz",
Expand Down
24 changes: 13 additions & 11 deletions plugins/git-commit-assistant/hooks/hooks.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/suggest-commit.sh"
}
]
}
]
"hooks": {
"PostToolUse": [
{
"matcher": "Write|Edit",
"hooks": [
{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/scripts/suggest-commit.sh"
}
]
}
]
}
}
7 changes: 2 additions & 5 deletions plugins/git-commit-assistant/plugin.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
{
"name": "git-commit-assistant",
"version": "1.0.0",
"version": "1.0.1",
"description": "Intelligent git commit helper with semantic commit message generation, change analysis, and atomic commit guidance using conventional commits format",
"author": {
"name": "Daniel Hofheinz",
"email": "daniel@danielhofheinz.com",
"url": "https://github.com/dhofheinz/open-plugins"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dhofheinz/open-plugins"
},
"repository": "https://github.com/dhofheinz/open-plugins",
"homepage": "https://github.com/dhofheinz/open-plugins/tree/main/plugins/git-commit-assistant",
"keywords": [
"git",
Expand Down