feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#!/bin/bash
Return_unit_line ()
{
pjson=$(cat ./package.json)
echo $pjson | sed -r "s/^.*\"scripts\" :(.*)$/\1/" | while read line; do
if [[ $line =~ \"unit\" ]]; then
echo $line
fi
done
}
Return_test_list ()
{
for t in $1; do
echo $t | sed -n "/test\/\w/p"
done
}
OIFS=$IFS; IFS=,
str=$(echo $(Return_unit_line) | sed "s/\"//g")
IFS=$OIFS
echo $(Return_test_list "$str")