/status
/status
Section titled “/status”Purpose
Section titled “Purpose”Get current project status including tasks, git state, and recent activity. Provides a comprehensive overview of where you are in your development workflow.
/statusWorkflow
Section titled “Workflow”1. Check Git Status
Section titled “1. Check Git Status”git statusgit log --oneline -5Provides:
- Current branch
- Modified/staged/untracked files
- Recent commits
2. Review Tasks
Section titled “2. Review Tasks”Shows:
- Tasks in progress
- Pending tasks
- Tasks completed today
3. Recent Activity
Section titled “3. Recent Activity”Displays:
- Recent commits (last 5)
- Open pull requests
- Open issues
Output
Section titled “Output”## 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 Commits1. feat: add JWT token generation2. test: add auth service tests3. refactor: extract validation logic4. fix: handle expired tokens5. 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)What It Shows
Section titled “What It Shows”| Section | Information |
|---|---|
| Git | Branch, uncommitted changes, sync status |
| Tasks | In-progress, pending, completed |
| Commits | Last 5 commits on current branch |
| PRs | Open pull requests (if GitHub integration) |
| Spawned Tasks | Active background tasks |
| Checkpoints | Recent session checkpoints |
Use Cases
Section titled “Use Cases”Daily Standup
Section titled “Daily Standup”# Quick overview before standup/status
# Shows what you worked on and what's in progressContext Recovery
Section titled “Context Recovery”# After coming back from a break/status
# Reminds you where you left offBefore Switching Branches
Section titled “Before Switching Branches”# Check status before switching work/status
# Ensure nothing uncommitted will be lostProject Overview
Section titled “Project Overview”# Quick snapshot of project state/status
# See all active work at a glanceIntegration with Other Commands
Section titled “Integration with Other Commands”With /checkpoint
Section titled “With /checkpoint”/status # See current state/checkpoint save progress # Save before switchingWith /spawn
Section titled “With /spawn”/spawn --list # See background tasks/status # See overall status including spawned tasksWith /load
Section titled “With /load”/status # See what's modified/load src/auth/ # Load the changed component- Use Regularly: Quick status check before starting work
- Before Commits: Verify what’s changed before committing
- Context Switches: Check status when switching tasks
- Team Coordination: Share status output in team discussions
Related Commands
Section titled “Related Commands”- /checkpoint - Save/restore session state
- /spawn - Check background tasks
- /help - Get command help