EveryDev.ai
Sign inSubscribe
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
Main Menu
  • Tools
  • Developers
  • Topics
  • Discussions
  • Communities
  • News
  • Podcasts
  • Blogs
  • Builds
  • Contests
  • Compare
  • Arena
  • Polls
Create
    Home
    Tools

    2,645+ AI tools

    • New
    • Trending
    • Featured
    • Compare
    • Arena
    Categories
    • Agents1666
    • Coding1214
    • Infrastructure542
    • Marketing451
    • Design437
    • Projects396
    • Research371
    • Analytics339
    • Testing233
    • MCP227
    • Data213
    • Security200
    • Integration170
    • Learning155
    • Communication148
    • Prompts144
    • Extensions137
    • Commerce125
    • Voice122
    • DevOps99
    • Web78
    • Finance21
    1. Home
    2. Tools
    3. lowfat
    lowfat icon

    lowfat

    Command Line Assistants

    A lightweight CLI tool that reduces AI token costs by filtering and compressing unnecessary command output before it reaches your AI agent.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under the Apache-2.0 license. Install via cargo or Homebrew.

    Engagement

    Available On

    Windows
    macOS
    Linux
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Command Line AssistantsAI Coding AssistantsCompute Optimization

    Alternatives

    RTK - Rust Token Killerai-cliAI Shell
    Developer
    zdk (Warachet Samtalee)zdk (Warachet Samtalee) builds open-source developer tools f…

    Listed Jun 2026

    About lowfat

    lowfat is an open-source CLI tool written in Rust that intercepts shell command output and strips noise before it reaches an AI coding agent. It is built by zdk (Warachet Samtalee) and released under the Apache-2.0 license. The project is installable via cargo install lowfat or Homebrew and ships pre-built binaries on GitHub Releases.

    What It Is

    lowfat sits between your shell and your AI agent, acting as a transparent filter that compresses verbose command output — such as git diff, git log, docker ps, and ls -la — before those outputs consume context-window tokens. It is not a cloud service; all processing happens locally with no telemetry. The tool is designed around UNIX-style composability: it works as a pipe, a shell hook, or a direct command prefix, and it supports custom user-written filter plugins.

    How the Filtering Pipeline Works

    lowfat applies named filter levels — lite, full, and ultra — to each supported command. The README documents measured output reductions on bundled samples:

    • git diff: -16% (lite), -38% (full), -96% (ultra)
    • git log: -53% (lite), -80% (full), -91% (ultra)
    • git status: -62% (lite), -62% (full), -74% (ultra)
    • docker ps: -38% (lite), -38% (full), -85% (ultra)
    • ls -la: -2% (lite), -75% (full), -87% (ultra)

    The README notes these percentages measure reduction of a single command's raw output, not end-to-end agent token usage, and advises users to verify their agent still has what it needs at higher compression levels.

    Agent Integration Paths

    lowfat supports several integration modes without requiring changes to the agent itself:

    • Claude Code hook — a PreToolUse hook in .claude/settings.json intercepts every Bash call
    • Shell integration — auto-activates inside agent environments (CLAUDECODE=1, CODEX_ENV) or via LOWFAT_ENABLE=1
    • OpenCode plugin — a single lowfat opencode install command writes a plugin file; uninstall is equally simple
    • Pi agent — configured via shellCommandPrefix in ~/.pi/agent/settings.json
    • Direct prefix — lowfat git status, lowfat docker ps, etc., with no setup required

    Plugin and Extensibility Model

    The core ships with six built-in command filters: git, docker, grep, find, ls, and tree. Users can scaffold new plugins with lowfat plugin new <name>, which creates a directory under ~/.lowfat/plugins/. Filters are written in the .lf DSL, with shell and Python (PEP 723 / uv) escape hatches available. The lowfat plugin doctor command checks plugins and pre-installs Python dependencies. Filters can be tested against sample files without installing them using lowfat filter --explain.

    Update: v0.6.8

    The latest release is v0.6.8, published on 2026-06-05. The repository was created in April 2026 and has seen active development, with the last push recorded on 2026-06-06. The project has accumulated 299 stars and 11 forks on GitHub as of the last recorded update, signaling early community traction for a recently launched tool.

    Design Philosophy and Tradeoffs

    The README explicitly positions lowfat as a "minimal core you extend yourself," contrasting it with the batteries-included approach of alternatives like rtk. lowfat covers fewer built-in commands (6 vs. 100+) but offers a local-only, no-telemetry guarantee and a composable plugin DSL. The README includes a head-to-head token savings comparison with rtk on the same repo, noting lowfat compresses git output harder while rtk edges out find at its default settings. The README frames this as directional rather than a definitive benchmark.

    Community Discussions

    Be the first to start a conversation about lowfat

    Share your experience with lowfat, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under the Apache-2.0 license. Install via cargo or Homebrew.

    • Six built-in command filters (git, docker, grep, find, ls, tree)
    • Three compression levels: lite, full, ultra
    • Claude Code, OpenCode, Pi agent integrations
    • Custom plugin system with .lf DSL
    • Local-only processing, no telemetry

    Capabilities

    Key Features

    • Filter and compress CLI command output before it reaches AI agents
    • Three compression levels: lite, full, ultra
    • Six built-in command filters: git, docker, grep, find, ls, tree
    • Claude Code PreToolUse hook integration
    • Shell integration with auto-activation in agent environments
    • OpenCode plugin support
    • Pi agent support
    • Custom plugin scaffolding with .lf DSL
    • Shell and Python (PEP 723/uv) plugin escape hatches
    • Local-only processing with no telemetry
    • Token savings analytics via lowfat stats and history
    • UNIX-style pipe composability
    • Single binary, small footprint
    • Plugin doctor for dependency checking
    • Filter testing against samples without installation

    Integrations

    Claude Code
    OpenCode
    Pi agent
    Bash
    Zsh
    Git
    Docker
    Homebrew
    cargo (Rust)
    Python (PEP 723 / uv)
    API Available
    View Docs

    Reviews & Ratings

    No ratings yet

    Be the first to rate lowfat and help others make informed decisions.

    Developer

    zdk (Warachet Samtalee)

    zdk (Warachet Samtalee) builds open-source developer tools focused on AI agent efficiency. The lowfat project reflects a local-first, composable philosophy — shipping a minimal Rust binary with no telemetry and a user-extensible plugin system. The project is released under the Apache-2.0 license and distributed via GitHub, Homebrew, and crates.io.

    Read more about zdk (Warachet Samtalee)
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    RTK - Rust Token Killer icon

    RTK - Rust Token Killer

    High-performance CLI proxy written in Rust that reduces LLM token consumption by 60-90% by filtering and compressing command outputs before they reach your AI coding assistant.

    ai-cli icon

    ai-cli

    A CLI tool by Vercel Labs that lets you generate anything from your terminal using AI.

    AI Shell icon

    AI Shell

    Open source CLI tool that converts natural language to shell commands.

    Browse all tools

    Related Topics

    Command Line Assistants

    AI-powered command-line assistants that help developers navigate, search, and execute terminal commands with intelligent suggestions and context awareness.

    147 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    509 tools

    Compute Optimization

    Tools for optimizing computational resources and performance.

    28 tools
    Browse all topics
    Back to all tools
    Discussions