33 lines
696 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
} |