Skip to content

/status

Get current project status including tasks, git state, and recent activity. Provides a comprehensive overview of where you are in your development workflow.

Terminal window
/status
Terminal window
git status
git log --oneline -5

Provides:

  • Current branch
  • Modified/staged/untracked files
  • Recent commits

Shows:

  • Tasks in progress
  • Pending tasks
  • Tasks completed today

Displays:

  • Recent commits (last 5)
  • Open pull requests
  • Open issues
## Project Status
### Git
- Branch: `feature/oauth-integration`
- Status: 3 modified files, 1 staged
- Ahead of origin by 2 commits
### Tasks
- In Progress: 2
- Implement token refresh
- Add OAuth callback
- Pending: 5
- Completed Today: 3
### Recent Commits
1. feat: add JWT token generation
2. test: add auth service tests
3. refactor: extract validation logic
4. fix: handle expired tokens
5. docs: update API documentation
### Open Pull Requests
- #123: Add OAuth2 authentication
- #119: Fix session timeout issue
### Active Spawned Tasks
- #1: Research auth patterns (running)
- #2: Security scan (completed)
### Checkpoints
- feature-auth (2h ago)
- oauth-progress (1d ago)
SectionInformation
GitBranch, uncommitted changes, sync status
TasksIn-progress, pending, completed
CommitsLast 5 commits on current branch
PRsOpen pull requests (if GitHub integration)
Spawned TasksActive background tasks
CheckpointsRecent session checkpoints
Terminal window
# Quick overview before standup
/status
# Shows what you worked on and what's in progress
Terminal window
# After coming back from a break
/status
# Reminds you where you left off
Terminal window
# Check status before switching work
/status
# Ensure nothing uncommitted will be lost
Terminal window
# Quick snapshot of project state
/status
# See all active work at a glance
Terminal window
/status # See current state
/checkpoint save progress # Save before switching
Terminal window
/spawn --list # See background tasks
/status # See overall status including spawned tasks
Terminal window
/status # See what's modified
/load src/auth/ # Load the changed component
  1. Use Regularly: Quick status check before starting work
  2. Before Commits: Verify what’s changed before committing
  3. Context Switches: Check status when switching tasks
  4. Team Coordination: Share status output in team discussions