Skip to content

Commit 99d0fb0

Browse files
PaulDuvallclaude
andcommitted
chore: remove obsolete hybrid hook architecture
📋 Change summary: * Remove docs/hybrid-hook-architecture.md (obsolete with claude-dev-toolkit) * Update .github/workflows/test.yml to check claude-dev-toolkit/README.md instead * Replace hybrid architecture references with toolkit integration tests The hybrid hook architecture is now superseded by the integrated claude-dev-toolkit npm package which provides all the same functionality in a more maintainable and unified approach. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 4286635 commit 99d0fb0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -141,16 +141,16 @@ jobs:
141141
fi
142142
done
143143
144-
# Test documentation exists
145-
echo "📋 Testing hybrid architecture documentation..."
146-
if [ -f "docs/hybrid-hook-architecture.md" ]; then
147-
echo " ✅ hybrid-hook-architecture.md exists"
144+
# Test documentation exists
145+
echo "📋 Testing toolkit integration documentation..."
146+
if [ -f "claude-dev-toolkit/README.md" ]; then
147+
echo " ✅ claude-dev-toolkit README exists"
148148
else
149-
echo " ❌ hybrid-hook-architecture.md missing"
149+
echo " ❌ claude-dev-toolkit README missing"
150150
exit 1
151151
fi
152152
153-
echo "✅ Hybrid hook architecture validation completed"
153+
echo "✅ Toolkit integration validation completed"
154154
155155
- name: Run subagent hook integration tests
156156
run: |
@@ -233,7 +233,7 @@ jobs:
233233
done
234234
235235
# Test that key files exist
236-
key_files=("templates/basic-settings.json" "hooks/prevent-credential-exposure.sh" "specs/command-specifications.md" "hooks/pre-write-security.sh" "hooks/lib/config-constants.sh" "tests/test_subagent_hook_integration.sh" "docs/hybrid-hook-architecture.md")
236+
key_files=("templates/basic-settings.json" "hooks/prevent-credential-exposure.sh" "specs/command-specifications.md" "hooks/pre-write-security.sh" "hooks/lib/config-constants.sh" "tests/test_subagent_hook_integration.sh" "claude-dev-toolkit/README.md")
237237
for file in "${key_files[@]}"; do
238238
if [ -f "$file" ]; then
239239
echo " ✅ Key file $file exists"

0 commit comments

Comments
 (0)