diff --git a/plugins/core/.claude-plugin/plugin.json b/plugins/core/.claude-plugin/plugin.json index 9bba024..14136b8 100644 --- a/plugins/core/.claude-plugin/plugin.json +++ b/plugins/core/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "core", - "version": "1.7.3", + "version": "1.8.0", "description": "Core Agents and skills that aid software development workflows", "author": { "name": "Adam Bulmer", diff --git a/plugins/core/hooks/hooks.json b/plugins/core/hooks/hooks.json new file mode 100644 index 0000000..49037cf --- /dev/null +++ b/plugins/core/hooks/hooks.json @@ -0,0 +1,15 @@ +{ + "description": "Core plugin hooks for auto-loading the expectations skill at session start", + "hooks": { + "SessionStart": [ + { + "hooks": [ + { + "type": "prompt", + "prompt": "This project uses the core:expectations skill. Load this skill now using the Skill tool to understand the project's TDD principles, code change guidelines, documentation framework, and communication standards. The expectations skill is essential for all work in this codebase." + } + ] + } + ] + } +}