Skip to content

Your First Session

Terminal window
ginko start

ginko loads context from your last session (if any) and presents a readiness summary:

Ready | Hot (10/10) | Think & Build mode
Last session: Set up project structure and API routes
Next up: e001_s01_t01 - Implement auth middleware (start)
Sprint: Auth System 20%
Follow: ADR-001, ADR-003
Branch: feature/auth (3 uncommitted files)

Your AI coding assistant reads this output and knows exactly where you left off.

Terminal window
ginko start --verbose # Full session details
ginko start --compact # Minimal output
ginko start --team # Include team events
ginko start --auto-progress # Auto-advance to next sprint when complete

During your session, ginko provides commands to maintain context:

Terminal window
ginko log "Implemented JWT validation middleware"
ginko log -c decision "Chose bcrypt over argon2 for password hashing"
ginko log -c insight -i high "Found race condition in session cleanup"
Terminal window
ginko status
Terminal window
ginko vibecheck

Opens a conversational check-in: “What are we actually trying to achieve?” Helps when you’ve drifted from the goal or feel uncertain.

Terminal window
ginko health

Shows a dashboard of your session quality — logging frequency, task tracking, decision recording.

When you’re done for now:

Terminal window
ginko handoff

This saves:

  • Current session state and progress
  • Uncommitted work context
  • A handoff summary for the next session
Terminal window
ginko handoff "Completed auth middleware, need to add rate limiting next"
ginko handoff --verbose # Show detailed sync info

The next time you (or a teammate) runs ginko start, the full context is restored.

ginko start → work → ginko log → work → ginko handoff
↑ |
└────────────────────────────────────────┘

Each cycle builds on the last. Your AI partner accumulates project understanding across sessions instead of starting from zero every time.