Skip to content

ginko log

Terminal window
ginko log [description] [options]

Records an event to the current session log. Events are categorized and can include impact level and affected files. The session log builds a timeline of decisions, fixes, and discoveries that persists across sessions.

FlagDescription
-c, --category <category>Event category: fix, feature, decision, insight, git, achievement, blocker
-i, --impact <impact>Impact level: high, medium, low
-f, --files <files>Comma-separated list of affected files
-s, --showShow current session log with quality score
--validateCheck session log quality
--quickSkip interactive prompts
--sharedMark event for team visibility
Terminal window
# Log a fix
ginko log "Fixed race condition in session cleanup" -c fix -i high
# Log a decision
ginko log -c decision "Chose bcrypt over argon2 for hashing"
# Log with affected files
ginko log "Refactored auth middleware" -f "src/auth.ts,src/middleware.ts"
# View session log
ginko log --show
# Quick log without prompts
ginko log "Updated docs" --quick