v1.3.0 - Team Mode
Team Mode
Small teams (2-8 people) can now share decisions, findings, and blockers through a git-tracked append-only log. No server needed.
New: ccs team commands
ccs team init # Initialize team mode in your project
ccs team log d "chose RS256" # Log a decision (d/f/b/done/h shortcuts)
ccs team log b "CI fails on ARM" # Log a blocker
ccs team # Show recent team activity
ccs team search "auth" # Search the team log
ccs team sync # Commit + push team log in one stepNew: Slash commands
/team-standup- team standup from the shared log (pulls latest, shows activity, blockers, your status)/team-log- log a decision/finding/blocker through Claude
How it works
.team/log.jsonlin your project directory, tracked by git- Append-only format = no merge conflicts
- Auto-detects your name from
git config user.name - Entry types:
d(ecision),f(inding),b(locker),done,h(andoff) - Color-coded output grouped by team member
Also in this release
ccs team sync- replaces the 4-stepgit add / commit / pushdance- Short aliases for log types (
d,f,b,h) - Team Mode added to "What's in the Stack" table in README
- Cleaned up development artifacts from repo
- Bug fixes from v1.2.0
Upgrade
ccs update