mirror of
https://github.com/boshu2/agentops.git
synced 2026-09-14 15:08:13 +08:00
20 lines
498 B
Bash
Executable File
20 lines
498 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
cd "$REPO_ROOT"
|
|
|
|
echo "=== Skill runtime format validation ==="
|
|
|
|
echo "--- Claude/cloud skill format ---"
|
|
bash ./tests/skills/lint-skills.sh
|
|
|
|
echo "--- Codex skill format ---"
|
|
bash ./scripts/lint-codex-native.sh --strict
|
|
|
|
echo "--- Codex runtime sections ---"
|
|
bash ./scripts/validate-codex-runtime-sections.sh
|
|
|
|
echo "Skill runtime format validation passed."
|