Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Agent File Validator
# Validates agent markdown files for correct structure and content

set -euo pipefail
set -uo pipefail

# Usage
if [ $# -eq 0 ]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Hook Linter
# Checks hook scripts for common issues and best practices

set -euo pipefail
set -uo pipefail

# Usage
if [ $# -eq 0 ]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Hook Schema Validator
# Validates hooks.json structure and checks for common issues

set -euo pipefail
set -uo pipefail

# Usage
if [ $# -eq 0 ]; then
Expand Down