7 lines
171 B
Bash
Executable file
7 lines
171 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
cd "$repo"
|
|
find skills -name SKILL.md -not -path '*/node_modules/*' | sort
|