Thanks to visit codestin.com
Credit goes to github.com

Skip to content

ajramos/giztui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ“จ GizTUI - AI-Powered Gmail Terminal Client

A powerful terminal Gmail client built in Go that brings AI intelligence to your email workflow. Features local AI integration, advanced productivity tools, and seamless integrations with Slack, Obsidian, and more.

License Go Version Platform Release

โœจ Key Features

๐Ÿ“ฌ Complete Gmail Management

  • Full email operations: compose, reply, forward, archive, search, and label management
  • Advanced threading with conversation grouping and AI summaries
  • VIM-style navigation and bulk operations (d3d to delete 3, a5a to archive 5)
  • Powerful Gmail search with filters, date ranges, and size-based queries

๐Ÿง  AI-Powered Intelligence

  • Email summarization with streaming support (Ollama & Amazon Bedrock)
  • Smart label suggestions based on email content
  • Custom prompt library with variable substitution and bulk analysis
  • Local caching to avoid re-processing with SQLite storage

๐Ÿ”Œ Seamless Integrations

  • Slack forwarding - Send emails to configured channels with AI summaries
  • Obsidian ingestion - Transform emails into structured markdown notes (individual files or combined repopack)
  • Calendar integration - RSVP to meeting invitations directly from emails
  • Link & attachment management - Quick access to URLs and file downloads

๐ŸŽจ Professional UI/UX

  • Adaptive layout that responds to terminal size changes
  • Custom themes with runtime switching (Dracula, Slate Blue, Gmail Dark/Light)
  • 100% keyboard navigation with fully customizable shortcuts
  • Command system with auto-completion and command parity

๐Ÿš€ Quick Start

Installation

Download pre-built binaries (recommended):

# Linux
curl -L https://github.com/ajramos/giztui/releases/latest/download/giztui-linux-amd64.tar.gz | tar -xz
sudo mv giztui /usr/local/bin/

# macOS
curl -L https://github.com/ajramos/giztui/releases/latest/download/giztui-darwin-amd64.tar.gz | tar -xz
mv giztui /usr/local/bin/

# Windows: Download giztui-windows-amd64.zip from releases page

Or install with Go:

go install github.com/ajramos/giztui/cmd/giztui@latest

First Run

  1. Setup Gmail API credentials (detailed guide):

    • Enable Gmail API in Google Cloud Console (required first step)
    • Create OAuth2 desktop credentials
    • Save as ~/.config/giztui/credentials.json
  2. Run interactive setup:

    giztui --setup
  3. Launch GizTUI:

    giztui

Enable AI Features (Optional)

Local AI with Ollama:

# Install Ollama
curl -fsSL https://ollama.ai/install.sh | sh

# Pull a model
ollama pull llama2

# Configure GizTUI
echo '{
  "llm": {
    "provider": "ollama",
    "ollama": {
      "model": "llama2"
    }
  }
}' > ~/.config/giztui/config.json

Theme Configuration

GizTUI includes several built-in themes and supports custom themes:

Built-in themes: slate-blue (default), gmail-dark, gmail-light, dracula, custom-example

Configure theme:

{
  "theme": {
    "current": "gmail-dark",
    "custom_dir": "/path/to/your/custom/themes"
  }
}

Theme directory resolution (priority order):

  1. custom_dir - Your custom themes directory (if specified)
  2. ~/.config/giztui/themes/ - User themes directory
  3. Built-in themes (embedded in binary)

Runtime theme switching: Press H to open theme picker with live preview.

โš ๏ธ Important for go install users: If themes don't work, ensure your config has the correct theme.current parameter (not ui.theme). See the Configuration Guide for details.

๐ŸŽฏ Essential Shortcuts

Key Action Description
? Help Show complete shortcuts
s Search Gmail search with auto-complete
u Unread Show unread messages
a Archive Archive current message
d Trash Move to trash
c Compose Create new email
R Reply Reply to email
y AI Summary Generate email summary
p Prompts Open AI prompt library
K Slack Forward to Slack
Shift+O Obsidian Ingest to Obsidian
L Links Quick link access
A Attachments Download attachments
: Commands Enter command mode

Bulk operations: v to enter bulk mode, space to select, then use any action key.

VIM-style ranges: a5a archives 5 messages, d3d deletes 3, t2t toggles read on 2.

๐Ÿ“Š What Makes GizTUI Different

๐Ÿ—๏ธ Architecture

  • Service-oriented design with clean separation of UI and business logic
  • Thread-safe operations with proper error handling and recovery
  • Extensive testing with unit tests, integration tests, and CI/CD pipeline

๐Ÿ”’ Privacy First

  • No data leaves your machine (except to Gmail and your configured integrations)
  • Local AI processing with Ollama for complete privacy
  • Local SQLite caching for performance without cloud dependency

โšก Performance & Reliability

  • Efficient Gmail API usage with smart caching and batch operations
  • Responsive UI that handles large inboxes gracefully
  • Robust error handling with user-friendly feedback and recovery options

๐ŸŽฎ Inspired by the Best

  • k9s-style command interface with auto-completion and shortcuts
  • VIM-like navigation for power users who prefer keyboard efficiency
  • Modern terminal aesthetics with themes and adaptive layouts

๐Ÿ“š Documentation

๐Ÿ› ๏ธ Development & Contributing

๐Ÿ“ฆ Platform Support

  • Linux: AMD64, ARM64
  • macOS: Intel (AMD64), Apple Silicon (ARM64)
  • Windows: AMD64, ARM64

All platforms include:

  • Native file handling and browser integration
  • Cross-platform keyboard shortcuts
  • Consistent feature parity

๐ŸŽฏ Use Cases

๐Ÿ“ง Email Power Users

  • Process large volumes of email efficiently
  • Use AI to quickly understand and categorize messages
  • Bulk operations for newsletter management and cleanup

๐Ÿง  Knowledge Workers

  • Integrate email insights into your second brain (Obsidian)
  • Share important emails with teams via Slack
  • Use AI prompts for meeting prep and email analysis

๐Ÿ’ป Terminal Enthusiasts

  • Never leave the terminal for email management
  • VIM-style navigation and operations
  • Scriptable and automatable workflow integration

๐Ÿ”’ Privacy-Conscious Users

  • Local AI processing with Ollama
  • No cloud dependencies beyond Gmail API
  • Complete control over your data and processing

๐Ÿ†˜ Need Help?

๐Ÿ“„ License

Released under the MIT License. See LICENSE for details.

๐Ÿค– Context Priming

Read README.md, CLAUDE.md, docs/*, and run git ls-files to understand this codebase.


Ready to transform your Gmail workflow? ๐Ÿš€

Download GizTUI v1.0.0 | Get Started | View Features

About

Terminal Gmail client in Go with AI (Ollama & AWS Bedrock), Slack, and Obsidian integration.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages