diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 69c10cd..ced6dfb 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "code-please", - "version": "0.1.14", + "version": "0.1.15", "description": "MCP server and CLI tool for AI-assisted coding with auto-formatting and LSP diagnostics", "repository": "https://github.com/chatbot-pf/code-please", "author": { diff --git a/.claude/settings.json b/.claude/settings.json index 74312a7..6d172a8 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -41,11 +41,8 @@ ] }, "enabledPlugins": { - "hookify@claude-plugins-official": true, - "github@claude-plugins-official": true, "asana@claude-plugins-official": true, "typescript-lsp@claude-plugins-official": true, - "context7@claude-plugins-official": true, "plugin-dev@claude-plugins-official": true } } diff --git a/hooks/hooks.json b/hooks/hooks.json index cc49805..5ad762d 100644 --- a/hooks/hooks.json +++ b/hooks/hooks.json @@ -1,28 +1,12 @@ { "hooks": { - "SessionStart": [ - { - "hooks": [ - { - "type": "command", - "command": "bun $CLAUDE_PLUGIN_ROOT/hooks/scripts/ast-grep-context.ts", - "timeout": 5 - } - ] - } - ], "PostToolUse": [ { "matcher": "Write|Edit", "hooks": [ { "type": "command", - "command": "bun $CLAUDE_PLUGIN_ROOT/hooks/scripts/code-runner.ts format --stdin", - "timeout": 10 - }, - { - "type": "command", - "command": "bun $CLAUDE_PLUGIN_ROOT/hooks/scripts/code-runner.ts lsp --stdin", + "command": "bun $CLAUDE_PLUGIN_ROOT/hooks/scripts/code-runner.ts format --stdin || true", "timeout": 10 } ]