Files
gh-nprbst-speck-market-speck/.claude-plugin/plugin.json
2025-11-30 08:44:37 +08:00

33 lines
696 B
JSON

{
"name": "speck",
"description": "Specification and planning workflow framework for Claude Code",
"version": "1.7.17",
"author": {
"name": "Nathan Prabst",
"email": "nathan@example.com"
},
"hooks": {
"PreToolUse": [
{
"matcher": "Bash",
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/dist/speck-hook.js --hook"
}
]
}
],
"UserPromptSubmit": [
{
"matcher": ".*",
"hooks": [
{
"type": "command",
"command": "bun ${CLAUDE_PLUGIN_ROOT}/dist/pre-prompt-submit-hook.js"
}
]
}
]
}
}