aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Install a rule from the catalog
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/installContext preview
What this command does when you run it.
Install a rule from the catalog
name: install description: Install a rule from the catalog usage: | /hookify:install <category>:<rule-name> /hookify:install --category <name> /hookify:install --all /hookify:install --list examples: - /hookify:install git:block-force-push - /hookify:install python:warn-print-statements - /hookify:install --category security - /hookify:install --list
Install hookify rules from the rule catalog.
# Use the Python installer (recommended) python3 plugins/hookify/scripts/install_rule.py git:block-force-push # Or invoke the skill for Claude-assisted installation Skill(hookify:rule-catalog)
The installer uses `__file__` to locate rules, so it works regardless of where the plugin is installed.
python3 plugins/hookify/scripts/install_rule.py git:block-force-push
python3 plugins/hookify/scripts/install_rule.py --category git
python3 plugins/hookify/scripts/install_rule.py --all
python3 plugins/hookify/scripts/install_rule.py --list
| Rule | Action | Default | |------|--------|---------| | `block-force-push` | block | enabled | | `warn-large-commits` | warn | enabled |
| Rule | Action | Default | |------|--------|---------| | `block-dynamic-code` | block | enabled | | `warn-print-statements` | warn | enabled |
| Rule | Action | Default | |------|--------|---------| | `require-security-review` | block | enabled |
| Rule | Action | Default | |------|--------|---------| | `enforce-scope-guard` | warn | enabled | | `require-spec-before-code` | block | disabled |
| Rule | Action | Default | |------|--------|---------| | `warn-large-file-ops` | warn | enabled |
# Install with default status python3 plugins/hookify/scripts/install_rule.py git:block-force-push # Force overwrite existing python3 plugins/hookify/scripts/install_rule.py git:block-force-push --force # Install to custom directory python3 plugins/hookify/scripts/install_rule.py git:block-force-push --target /path/to/.claude
rm .claude/hookify.<rule-name>.local.md
Rules are stored in the skill catalog:
plugins/hookify/skills/rule-catalog/rules/ ├── git/ ├── python/ ├── security/ ├── workflow/ └── performance/
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.