ginko log
ginko log [description] [options]Description
Section titled “Description”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.
Options
Section titled “Options”| Flag | Description |
|---|---|
-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, --show | Show current session log with quality score |
--validate | Check session log quality |
--quick | Skip interactive prompts |
--shared | Mark event for team visibility |
Examples
Section titled “Examples”# Log a fixginko log "Fixed race condition in session cleanup" -c fix -i high
# Log a decisionginko log -c decision "Chose bcrypt over argon2 for hashing"
# Log with affected filesginko log "Refactored auth middleware" -f "src/auth.ts,src/middleware.ts"
# View session logginko log --show
# Quick log without promptsginko log "Updated docs" --quickRelated Commands
Section titled “Related Commands”- ginko start — Logs are loaded at session start
- ginko health — Evaluates logging quality
- ginko insights — Analyzes log patterns