chore: Remove dss-claude-plugin directory
Some checks failed
DSS Project Analysis / dss-context-update (push) Has been cancelled

Removing obsolete plugin directory after consolidation.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-10 15:38:10 -03:00
parent 6ade12b2fe
commit 72cb7319f5
50 changed files with 0 additions and 10243 deletions

View File

@@ -1,111 +0,0 @@
{
"description": "DSS Developer Hooks - React/UI Development & QA Tools",
"version": "1.0.0",
"author": "DSS Team",
"hooks": {
"PreToolUse": [
{
"description": "Security pattern validation for file edits",
"matcher": "Edit|Write",
"priority": 100,
"enabled": true,
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/security-check.py",
"timeout": 5000,
"continueOnError": true
}
]
},
{
"description": "Design token compliance validation",
"matcher": "Edit|Write",
"priority": 90,
"enabled": true,
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/token-validator.py",
"timeout": 5000,
"continueOnError": true
}
]
}
],
"PostToolUse": [
{
"description": "React component best practices and accessibility",
"matcher": "Edit|Write",
"priority": 80,
"enabled": true,
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/component-checker.py",
"timeout": 5000,
"continueOnError": true
}
]
},
{
"description": "Code complexity tracking",
"matcher": "Edit|Write",
"priority": 70,
"enabled": true,
"hooks": [
{
"type": "command",
"command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/complexity-monitor.js",
"timeout": 5000,
"continueOnError": true
}
]
},
{
"description": "Storybook coverage reminder for components",
"matcher": "Edit|Write",
"priority": 60,
"enabled": true,
"hooks": [
{
"type": "command",
"command": "python3 ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/storybook-reminder.py",
"timeout": 3000,
"continueOnError": true
}
]
}
],
"SessionEnd": [
{
"description": "Generate session summary report",
"priority": 100,
"enabled": true,
"hooks": [
{
"type": "command",
"command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/session-summary.js",
"timeout": 10000,
"continueOnError": true
}
]
}
],
"Stop": [
{
"description": "Auto-backup changes to git",
"priority": 100,
"enabled": true,
"hooks": [
{
"type": "command",
"command": "node ${CLAUDE_PLUGIN_ROOT}/hooks/scripts/git-backup.js",
"timeout": 10000,
"continueOnError": false
}
]
}
]
}
}