mirror of
https://github.com/mattpocock/skills.git
synced 2026-04-30 22:13:54 +07:00
8 lines
168 B
Bash
Executable File
8 lines
168 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
REPO="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
cd "$REPO"
|
|
find . -name SKILL.md -not -path '*/node_modules/*' | sed 's|^\./||' | sort
|