Armory
Source

Browse

Search and filter by type across the catalog

172 results in Identity, Hooks · page 3 of 8

IdentityExperimental

paymanai-sigilum

Use when an agent's identity has to leave an auditable trail rather than just gate a request.

54.89 stars
Harnessclaudecodexcursorgeminiopencode
cp138-seedidentity
No one-command install · SourceDetails
IdentityExperimental

omnidotdev-persona-json

Use when a non-human actor needs a portable, machine-readable identity document that travels with it between systems.

38.43 stars
Harnessclaudecodexcursorgeminiopencode
cp138-seedidentity
No one-command install · SourceDetails
HooksPreview

agents-md-loader

Automatically loads AGENTS.md configuration file content at session start to ensure Claude Code follows project-specific agent behavior. Only loads if AGENTS.md exists, otherwise passes empty context. Supports the universal AGENTS.md standard for cross-platform AI assistant compatibility.

UnrankedNo signals yet
Harnessclaude
automationhooks
Details
HooksPreview

ai-bash-guard

AI-powered bash command security guard. Before any Bash command runs, a lightweight Claude subagent evaluates it for destructive or irreversible patterns — recursive deletes, force pushes to protected branches, database drops, and credential exposure — and blocks execution with a clear explanation if flagged. Uses PreToolUse with type:agent, which is the only hook pattern that can block tool execution via AI reasoning.

UnrankedNo signals yet
Harnessclaude
securityhooks
Details
HooksPreview

auto-git-add

Automatically stage modified files with git add after editing. Helps maintain a clean git workflow by staging changes as they're made.

UnrankedNo signals yet
Harnessclaude
git-workflowhooks
Details
HooksPreview

backup-before-edit

Create automatic backup of files before any Edit operation for safety. This hook creates a timestamped backup copy (filename.backup.timestamp) of any existing file before Claude modifies it. Provides a safety net to recover previous versions if needed. Only backs up existing files, includes error suppression to handle edge cases gracefully.

UnrankedNo signals yet
Harnessclaude
pre-toolhooks
Details
HooksPreview

bash-quality-dispatcher

PreToolUse Bash dispatcher that runs quality, tmux, push, and GateGuard checks before a Bash command executes.

UnrankedNo signals yet
Harnessclaudecodexcursorgeminiopencode
hooksbashquality
Details
HooksPreview

build-on-change

Automatically trigger build processes when source files change. Detects common build tools and runs appropriate build commands.

UnrankedNo signals yet
Harnessclaude
automationhooks
Details
HooksPreview

change-logger

Log every file mutation to CSV for demo prep. Records timestamp, tool, file path, action, and details for Edit, MultiEdit, Write, and Bash operations. Output: .claude/critical_log_changes.csv

UnrankedNo signals yet
Harnessclaude
automationhooks
Details
HooksPreview

change-logger-2

Change Logger Hook Logs every file mutation (Edit, Write, Bash) to a CSV file for demo prep and session review. Output: .claude/critical_log_changes.csv

UnrankedNo signals yet
Harnessclaude
automationhooks
Details
HooksPreview

change-tracker

Track file changes in a simple log. Records which files were modified and when for easy tracking of Claude Code activity.

UnrankedNo signals yet
Harnessclaude
development-toolshooks
Details
HooksPreview

check-package-age

Claude Code Hook: Prevent installation of outdated packages.

UnrankedNo signals yet
Harnessclaude
hookdecider
Details
HooksPreview

command-logger

Log all Claude Code commands to a file for audit and debugging purposes. Simple logging that records tool usage with timestamps.

UnrankedNo signals yet
Harnessclaude
development-toolshooks
Details
HooksPreview

console-log-cleaner

Warns about console.log statements when editing files on production branches (main/master). Helps prevent debug code from reaching production.

UnrankedNo signals yet
Harnessclaude
pre-toolhooks
Details
HooksPreview

context-timeline

Real-time browser visualization of Claude Code's context window and subagent/tool execution as a git-graph timeline. Opens http://localhost:7878 on SessionStart with a vertical timeline (most recent on top), one column per agent (main + subagents branching from their Task tool call). Tool calls are color-coded by type (Read=green, Edit/Write=orange, Bash=red, Grep/Glob=cyan, Task=purple, Web=yellow, MCP=gray). Right sidebar shows context-window usage (tokens/200K) with cache_read/cache_creation/input/output breakdown plus per-subagent mini-context. Reads ~/.claude/projects/<encoded-cwd>/<session_id>.jsonl directly — no data replication, no network calls. Pure stdlib Python, zero pip dependencies. Persistent daemon HTTP server on port 7878 (auto-fallback 7879-7888 if busy; override with CONTEXT_TIMELINE_PORT env var). Watchdog auto-shutdown after 1h of inactivity. Disable browser auto-open with CONTEXT_TIMELINE_NO_BROWSER=1. Manual shutdown: python3 .claude/hooks/context-timeline.py --shutdown

UnrankedNo signals yet
Harnessclaude
monitoringhooks
Details
HooksPreview

context-timeline-2

context-timeline: Claude Code session visualizer. Modes (called by Claude Code hooks via stdin JSON): --server-start SessionStart hook — launch daemon + open browser --event <NAME> PreToolUse / PostToolUse / Stop hook — notify server --shutdown Kill daemon manually --run-server <PORT> Internal: daemon entry point (do not call directly)

UnrankedNo signals yet
Harnessclaude
monitoringhooks
Details
HooksPreview

conventional-commits

Enforce conventional commit message format for all git commits. Validates commit messages follow the pattern: type(scope): description. Supported types: feat, fix, docs, style, refactor, perf, test, chore, ci, build, revert. Ensures consistent commit history for changelog generation and semantic versioning.

UnrankedNo signals yet
Harnessclaude
githooks
Details
HooksPreview

conventional-commits-2

❌ Invalid commit message format Your message: {commit_msg} Commit messages must follow Conventional Commits: type(scope): description Types: feat: New feature fix: Bug fix docs: Documentation changes style: Code style changes (formatting) refactor: Code refactoring perf: Performance improvements test: Adding or updating tests chore: Maintenance tasks ci: CI/CD changes build: Build system changes revert: Revert previous commit Examples: ✅ feat: add user authentication ✅ feat(auth): implement JWT tokens ✅ fix: resolve memory leak in parser ✅ fix(api): handle null responses ✅ docs: update API documentation Invalid: ❌ Added new feature (no type) ❌ feat:add feature (missing space after colon) ❌ feature: add login (wrong type, use 'feat') 💡 Tip: Start your message with one of the types above followed by a colon and space.

UnrankedNo signals yet
Harnessclaude
githooks
Details
HooksPreview

dangerous-command-blocker

Advanced protection against dangerous shell commands with multi-level security. Blocks catastrophic operations (rm -rf /, dd, mkfs), protects critical paths (.claude/, .git/, node_modules/), and warns about suspicious patterns. Features: catastrophic command blocking, critical path protection, smart pattern detection, and detailed safety messages.

UnrankedNo signals yet
Harnessclaude
securityhooks
Details
HooksPreview

dangerous-command-blocker-2

Dangerous Command Blocker Hook Multi-level security system for blocking dangerous shell commands

UnrankedNo signals yet
Harnessclaude
securityhooks
Details
HooksPreview

debug-window

Auto Debug Log Viewer. Opens a live-tailing debug log window when Claude Code starts with --debug or -d flag. The window closes automatically on session end. To keep the debug window open after session ends, set DEBUG_WINDOW_AUTO_CLOSE_DISABLE=1 in your settings.json. Tested on Intel Mac. Supports macOS, Linux, and Windows (Git Bash/Cygwin). Contributions from other platform users are welcome.

UnrankedNo signals yet
Harnessclaude
development-toolshooks
Details
HooksPreview

debug-window-2

Session Hook: Auto Debug Log Viewer

UnrankedNo signals yet
Harnessclaude
development-toolshooks
Details
HooksPreview

dependency-checker

Advanced dependency analysis and security checking. Monitors for outdated packages, security vulnerabilities, and license compatibility.

UnrankedNo signals yet
Harnessclaude
automationhooks
Details
HooksPreview

deployment-health-monitor

Monitor deployment status, error rates, and performance metrics, sending notifications for failed deployments or performance degradation. Tracks Vercel deployment health, monitors build success/failure rates, and provides alerts for deployment issues. Setup: Export 'export VERCEL_TOKEN=your_token' and 'export VERCEL_PROJECT_ID=your_project_id' (get from vercel.com/account/tokens and Vercel dashboard).

UnrankedNo signals yet
Harnessclaude
automationhooks
Details
Browse · Armory