From CAST — Claude Agent Specialist Team
Scans project repositories for yesterday's git commits and summarizes activity in a markdown table. Useful for standups, briefings, and reports.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cast:git-activityThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scan known project directories for git commits since yesterday.
Scan known project directories for git commits since yesterday.
Sourced from ~/.claude/config.sh. Edit that file to add or remove projects.
source ~/.claude/config.sh
for dir in "${PROJECTS[@]}"; do
if [ -d "$dir/.git" ]; then
count=$(git -C "$dir" log --since="yesterday" --oneline 2>/dev/null | wc -l | tr -d ' ')
if [ "$count" -gt 0 ]; then
remote=$(git -C "$dir" remote get-url origin 2>/dev/null || echo "local")
if echo "$remote" | grep -q "bitbucket"; then
host="Bitbucket"
elif echo "$remote" | grep -q "github"; then
host="GitHub"
else
host="local"
fi
echo "=== $(basename $dir) ($count commits) [$host] ==="
git -C "$dir" log --since="yesterday" --oneline 2>/dev/null
fi
fi
done
| Project | Host | Commits | Summary |
|---------|------|---------|---------|
| my-project | GitHub | 3 | feat: add chart, fix: tooltip, chore: deps |
If no activity at all: *No commits yesterday*
npx claudepluginhub ek33450505/claude-agent-team --plugin castProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Searches MemPalace before answering questions about past work, people, projects, or prior decisions. Returns verbatim stored content instead of guessing from model memory.