8 lines
171 B
Bash
8 lines
171 B
Bash
|
|
#!/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
|