Help us improve
Share bugs, ideas, or general feedback.
From hugin-cowork
This skill provides automatic semantic code review triggered after file modifications. It is hook-driven — logging file changes via PostToolUse and running the automatic-code-reviewer agent on Stop. It should not be invoked directly by the user; it is triggered automatically by lifecycle hooks.
npx claudepluginhub michelve/hugin-marketplace --plugin hugin-coworkHow this skill is triggered — by the user, by Claude, or both
Slash command
/hugin-cowork:automatic-code-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Hook-driven skill that performs semantic code review after Claude finishes modifying files.
Sets up DeepWork Reviews by creating or updating .deepreview YAML files for automated code review rules. Guides optimal placement, rule combination to minimize overhead, testing, and summaries.
Conducts tiered code reviews for security (OWASP top 10), performance, and quality on staged git changes, PRs, or files before commits or releases.
Performs professional code reviews with automatic CHANGELOG generation via Codex AI. Use for pre-commit checks, large-scale refactoring, or changelog updates.
Share bugs, ideas, or general feedback.
Hook-driven skill that performs semantic code review after Claude finishes modifying files.
Write, Edit, or MultiEdit operation to /tmp/event-log-{SESSION_ID}.jsonlautomatic-code-reviewer agentrulesFile and reviews only the changed filesSettings in .claude/settings.json:
{
"automaticCodeReview": {
"enabled": true,
"fileExtensions": ["ts", "tsx"],
"rulesFile": ".claude/automatic-code-review/rules.md"
}
}
Set "enabled": false to disable for a project.
../../agents/automatic-code-reviewer.md — Review agent (model: haiku, tools: Read, Grep, Glob) — lives at plugin root agents/../../hooks/hooks.json — Hook manifest (PostToolUse + Stop) — merged into plugin root hooks/../../scripts/automatic-code-review-plugin.sh — Shell script for logging and review triggering — lives at plugin root scripts/default-rules.md — Default semantic review rules (stays with skill)