From fa2f1fe8380217be354e45f8552cc8616fc38d96 Mon Sep 17 00:00:00 2001 From: asepharyana Date: Sun, 26 Jul 2026 12:23:48 +0700 Subject: [PATCH] rename: hub-guide -> code-guide Change plugin name from 'hub-guide' to 'code-guide' to avoid AI interpreting it as Hub-specific. Skills now show as code-guide:skill-name. Universal best-practice, not limited to any specific project. --- .claude-plugin/plugin.json | 2 +- hooks/hooks.json | 2 +- install.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 9d1d969..e5b5af7 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,5 +1,5 @@ { - "name": "hub-guide", + "name": "code-guide", "version": "0.2.0", "description": "Comprehensive programming best-practice guide for all situations — monorepo, standalone, all languages and frameworks", "author": { diff --git a/hooks/hooks.json b/hooks/hooks.json index 9695057..b6eef3b 100644 --- a/hooks/hooks.json +++ b/hooks/hooks.json @@ -3,7 +3,7 @@ "Stop": [{ "hooks": [{ "type": "prompt", - "prompt": "Check if hub-guide MANDATORY skills are being applied where relevant: engineering-principles, clean-code, clean-architecture, testing, error-handling, security, git-workflow, api-design. If the assistant is using evidence from codebase/docs instead of guessing, and is not violating any of these principles, respond: {\"ok\": true}. Only respond {\"ok\": false, \"reason\": \"[hub-guide] Apply MANDATORY skills: engineering-principles, clean-code, clean-architecture, testing, error-handling, security, git-workflow, api-design.\"} if the assistant is clearly guessing or violating these principles." + "prompt": "Check if code-guide MANDATORY skills are being applied where relevant: engineering-principles, clean-code, clean-architecture, testing, error-handling, security, git-workflow, api-design. If the assistant is using evidence from codebase/docs instead of guessing, and is not violating any of these principles, respond: {\"ok\": true}. Only respond {\"ok\": false, \"reason\": \"[code-guide] Apply MANDATORY skills: engineering-principles, clean-code, clean-architecture, testing, error-handling, security, git-workflow, api-design.\"} if the assistant is clearly guessing or violating these principles." }] }] } diff --git a/install.sh b/install.sh index 63b9923..d5b588f 100755 --- a/install.sh +++ b/install.sh @@ -20,8 +20,8 @@ for arg in "$@"; do esac done -echo "hub-guide installer" -echo " target: ${SKILLS_DIR}/hub-guide/" +echo "code-guide installer" +echo " target: ${SKILLS_DIR}/code-guide/" echo " mode: $([ "$LINK_MODE" = true ] && echo 'symlink' || echo 'copy')" mkdir -p "$SKILLS_DIR"