From hookify
Interactively toggle enabled/disabled state of existing hookify rules in .claude/hookify files, updating them and confirming changes.
npx claudepluginhub mjj0001/open-claudecode-fufu --plugin hookify# Configure Hookify Rules
**Load hookify:writing-rules skill first** to understand rule format.
Enable or disable existing hookify rules using an interactive interface.
## Steps
### 1. Find Existing Rules
Use Glob tool to find all hookify rule files:
If no rules found, inform user:
### 2. Read Current State
For each rule file:
- Read the file
- Extract `name` and `enabled` fields from frontmatter
- Build list of rules with current state
### 3. Ask User Which Rules to Toggle
Use AskUserQuestion to let user select rules:
**Option format:**
- Label: `{rule-name} (currently {enab.../configureInteractively configures Claude HUD via guided questions on layout, presets, language, and display elements, 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 all Hookify rules, prompts to select one, then enables, disables, or deletes it while updating the rule file immediately.
/configureCreates or updates KARIMO configuration in .karimo/config.yaml via basic/advanced/auto modes or flags like --greptile, --reset, --preview.
/configureInteractively toggle enable/disable state of Hookify rules in global (~/.claude) and project (.claude/) directories via multi-select interface.
/configureSets up Rune plugin: installs Python environment, collects Vault endpoint/token/TLS details, generates config, registers MCP servers. Quick update mode for vault fields via --vault-token or --vault-endpoint.
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: