From 4a46b3ded6fa7cc4439542d6a830fd1b1741e20e Mon Sep 17 00:00:00 2001 From: Kailas Mahavarkar <66670953+KailasMahavarkar@users.noreply.github.com> Date: Tue, 16 Jun 2026 01:27:14 +0530 Subject: [PATCH] fix(plugin): drop duplicate hooks manifest ref, bump 1.1.1 plugin.json declared "hooks": "./hooks/hooks.json", but Claude Code auto-loads the standard hooks/hooks.json. The explicit reference made the plugin fail to load with "Duplicate hooks file detected", which killed the SessionStart bootstrap injection on 1.1.0. Remove the redundant manifest field (the file still auto-loads) and bump plugin.json + marketplace entries to 1.1.1. --- .claude-plugin/marketplace.json | 4 ++-- .claude-plugin/plugin.json | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 23186b3..85ef731 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -9,14 +9,14 @@ }, "metadata": { "description": "Disciplined MCP server + skill system. Iron Laws, 1% Rule, rationalization tables, SessionStart hook injection.", - "version": "1.1.0" + "version": "1.1.1" }, "plugins": [ { "name": "hyperstack", "source": "./", "description": "Disciplined MCP server + skill system. 12 plugins and 80 tools covering designer, shadcn/ui, design tokens, ui/ux, React Flow v12, Motion v12, Lenis, React 19, Echo, Go, Rust. 22 skills with adversarial enforcement.", - "version": "1.1.0", + "version": "1.1.1", "category": "productivity", "strict": true } diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index f000474..32f0972 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -2,7 +2,7 @@ "name": "hyperstack", "displayName": "Hyperstack", "description": "Disciplined MCP server + skill system. 12 plugins and 80 tools covering designer (6 personalities, 13 page templates, 9 presets), shadcn/ui, design tokens, ui/ux, React Flow v12, Motion v12, Lenis, React 19, Echo, Go, and Rust. 22 skills with adversarial enforcement: Iron Laws, 1% Rule, rationalization tables, and SessionStart hook injection. Forces your agent to use real docs, real DESIGN.md contracts, and real verification before shipping.", - "version": "1.1.0", + "version": "1.1.1", "author": { "name": "Orkait", "email": "orkaitsolutions@gmail.com" @@ -25,6 +25,5 @@ "engineering", "anti-slop" ], - "skills": "./skills/", - "hooks": "./hooks/hooks.json" + "skills": "./skills/" }