chore: exclude skills from core agent line count

This commit is contained in:
Re-bin
2026-03-10 10:13:46 +00:00
parent a3b617e602
commit 947ed508ad

View File

@@ -15,7 +15,7 @@ root=$(cat nanobot/__init__.py nanobot/__main__.py | wc -l)
printf " %-16s %5s lines\n" "(root)" "$root" printf " %-16s %5s lines\n" "(root)" "$root"
echo "" echo ""
total=$(find nanobot -name "*.py" ! -path "*/channels/*" ! -path "*/cli/*" ! -path "*/providers/*" | xargs cat | wc -l) total=$(find nanobot -name "*.py" ! -path "*/channels/*" ! -path "*/cli/*" ! -path "*/providers/*" ! -path "*/skills/*" | xargs cat | wc -l)
echo " Core total: $total lines" echo " Core total: $total lines"
echo "" echo ""
echo " (excludes: channels/, cli/, providers/)" echo " (excludes: channels/, cli/, providers/, skills/)"