-
Notifications
You must be signed in to change notification settings - Fork 588
/
Copy pathlint.sh
executable file
·61 lines (47 loc) · 1.6 KB
/
lint.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
set -e
echo "Running code formatters and linters..."
# Check if running in CI mode (no fixes)
if [ "$1" = "ci" ]; then
echo "Running in CI mode - checking only, not fixing..."
poetry run ruff format --check
poetry run ruff check
else
poetry run ruff format
poetry run ruff check --fix
fi
echo "Validating JSON schema files..."
# Function to validate a JSON schema file using Python with Poetry
validate_schema() {
local schema_file=$1
echo "Validating $schema_file..."
# Use Python to validate both JSON syntax and schema validity through Poetry
poetry run python -c "import json, jsonschema; schema = json.load(open('$schema_file')); jsonschema.Draft7Validator.check_schema(schema)" 2>/dev/null
if [ $? -ne 0 ]; then
echo "Error: $schema_file is not a valid JSON schema"
return 1
fi
return 0
}
# Validate the main agent schema
if ! validate_schema "models/agent_schema.json"; then
exit 1
fi
# Validate all schema.json files in skills subdirectories
echo "Validating schema.json files in skills subdirectories..."
find_exit_code=0
# Find all schema.json files and store them in a temporary file
find skills -name "schema.json" > /tmp/schema_files.txt
# Read each line from the temporary file
while IFS= read -r schema_file; do
if ! validate_schema "$schema_file"; then
find_exit_code=1
fi
done < /tmp/schema_files.txt
# Clean up the temporary file
rm -f /tmp/schema_files.txt
if [ $find_exit_code -ne 0 ]; then
echo "Error: Some schema files are not valid"
exit 1
fi
echo "All JSON schema files are valid!"