Interactively toggle enabled/disabled state of existing hookify rules in .claude/hookify files, updating them and confirming changes.
From hookifynpx claudepluginhub ghostkey316/claude-code-vaultfire- --plugin hookify/configureInteractively configures Claude HUD display options including layout, presets, language, and elements via guided questions, saving to config.json while preserving advanced overrides.
/configureInteractively toggle enabled/disabled state of existing hookify rules in .claude/hookify files, updating them and confirming changes.
/configureInteractively lists Hookify rules, prompts to select and enable, disable, or delete one, then updates the rule file immediately.
/configureInteractively toggle enable/disable state of Hookify rules in global (~/.claude) and project (.claude/) directories via multi-select interface.
/configureInteractively toggle hookify rules on or off: finds .claude/hookify.*.local.md files, lists rules with states, asks user selections, updates frontmatter enabled field, confirms changes.
/configureConfigure Rune — sets up Python environment, collects credentials, registers MCP servers
Load hookify:writing-rules skill first to understand rule format.
Enable or disable existing hookify rules using an interactive interface.
Use Glob tool to find all hookify rule files:
pattern: ".claude/hookify.*.local.md"
If no rules found, inform user:
No hookify rules configured yet. Use `/hookify` to create your first rule.
For each rule file:
name and enabled fields from frontmatterUse AskUserQuestion to let user select rules:
{
"questions": [
{
"question": "Which rules would you like to enable or disable?",
"header": "Configure",
"multiSelect": true,
"options": [
{
"label": "warn-dangerous-rm (currently enabled)",
"description": "Warns about rm -rf commands"
},
{
"label": "warn-console-log (currently disabled)",
"description": "Warns about console.log in code"
},
{
"label": "require-tests (currently enabled)",
"description": "Requires tests before stopping"
}
]
}
]
}
Option format:
{rule-name} (currently {enabled|disabled})For each selected rule:
For each rule to toggle:
enabled: true to enabled: false (or vice versa)Edit pattern for enabling:
old_string: "enabled: false"
new_string: "enabled: true"
Edit pattern for disabling:
old_string: "enabled: true"
new_string: "enabled: false"
Show user what was changed:
## Hookify Rules Updated
**Enabled:**
- warn-console-log
**Disabled:**
- warn-dangerous-rm
**Unchanged:**
- require-tests
Changes apply immediately - no restart needed
/hookify:list to see all configured rulesNo rules to configure:
/hookify to create rules firstUser selects no rules:
File read/write errors: