Check Shared Knowledge Base status and available updates
Checks Shared Knowledge Base installation status, version, entry count, last update, and available updates.
/plugin marketplace add ozand/shared-kb-commands/plugin install ozand-shared-kb-commands-shared-kb-commands@ozand/shared-kb-commandsCheck Shared Knowledge Base status in this project:
if [ -d ".kb/shared" ]; then
echo "✅ Installed: True"
else
echo "❌ Installed: False"
echo "💡 Run /kb-init to install Shared KB"
exit 0
fi
head -1 .kb/shared/CHANGELOG.md | grep -oP '(?<=\[)\d+\.\d+\.\d+(?=\])'
cd .kb/shared && python tools/kb.py stats | grep "Total Entries:" && cd -
git -C .kb/shared log -1 --format=%ci
git -C .kb/shared fetch origin
git -C .kb/shared log HEAD..origin/main --oneline | head -5
Execute these steps using the Bash tool and display the results in a formatted way.