EveryDev.ai
Sign inSubscribe
Explore AI Tools
  • 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
Create
    Home
    Tools

    2,490+ AI tools

    • New
    • Trending
    • Featured
    • Compare
    • Arena
    Categories
    • Agents1659
    • Coding1210
    • Infrastructure537
    • Marketing449
    • Design434
    • Projects392
    • Research369
    • Analytics338
    • Testing232
    • MCP226
    • Data211
    • Security200
    • Integration169
    • Learning155
    • Communication148
    • Prompts144
    • Extensions137
    • Commerce125
    • Voice122
    • DevOps99
    • Web78
    • Finance21
    1. Home
    2. Tools
    3. Fluegel
    Fluegel icon

    Fluegel

    Autonomous Systems

    A macOS menu bar app that lets automation agents run approved CLI tools through a GUI process that owns macOS privacy permissions.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free and open source under the MIT License. Build from source and use freely.

    Engagement

    Available On

    macOS
    API
    CLI

    Resources

    WebsiteGitHubllms.txt

    Topics

    Autonomous SystemsCommand Line AssistantsAccess Control

    Alternatives

    CodexRMUXServal
    Developer
    steipetesteipete is an independent macOS and iOS developer known for…

    Listed May 2026

    About Fluegel

    Fluegel is a small macOS menu bar app built by steipete that solves a specific problem for local AI agents: macOS TCC (Transparency, Consent, and Control) permissions are tied to the process that requests them, which makes headless automation awkward. Fluegel gives those permissions a stable, auditable home in a GUI app, then bridges approved CLI tools through it. The project is open source under the MIT License and was created in May 2026.

    What It Is

    Fluegel sits in the macOS menu bar and acts as a permission proxy for CLI tools that need system-level access — specifically, access to resources like Apple Reminders that macOS only grants to trusted GUI processes. A headless agent (running from Codex, SSH, Ghostty, launchd, or any transient shell) can ask Fluegel to execute a whitelisted command, and macOS sees the request as coming from Fluegel.app rather than from the agent's ephemeral process. The first supported use case is Apple Reminders automation via the rem CLI tool.

    The Problem It Solves

    macOS TCC permissions are intentionally process-scoped, which is good for user privacy but creates friction for local AI agents:

    • Agents may run from many different transient callers, none of which have a stable TCC identity.
    • Apple Reminders has no official automation-friendly API or CLI.
    • Tools like rem work correctly only from a process that already holds the right TCC grant.
    • Granting every possible caller Reminders access is brittle and hard to audit.

    Fluegel centralizes the grant in one stable app and enforces a strict whitelist of exact full-path commands that are allowed to use it.

    Security Model

    The project describes itself as "intentionally narrow." Key design decisions include:

    • The bridge listens on a private Unix domain socket inside Fluegel's application support directory.
    • The CLI must present a local token created by the app itself.
    • Commands are matched by exact executable path — no glob patterns or partial matches.
    • Whitelist edits require macOS local authentication (Touch ID / password prompt).
    • Every allow and deny decision is written to an append-only audit log recording the executable, arguments, requester, permissions, result size, exit code, and reason.
    • Runs are denied when the command is not whitelisted, is disabled, or requests a permission Fluegel does not currently hold.

    The README explicitly notes this is a convenience boundary for trusted local automation, not a sandbox or privilege escalation framework.

    CLI and Settings UI

    Fluegel ships both a menu bar app and a companion fluegel CLI binary. The CLI covers the full workflow:

    • fluegel status — check connectivity to the running app
    • fluegel run -- /full/path [args...] — execute a whitelisted command
    • fluegel allow add/remove/list — manage the whitelist
    • fluegel permissions status/request — inspect and request TCC grants
    • fluegel audit list — read recent allow/deny decisions

    The settings window has three tabs: Permissions (shows TCC status and can trigger the macOS prompt), Whitelist (manage approved commands), and Audit (recent run history).

    Current Status

    The project is in an early stage. The README describes it as an "early project" with the first practical target being reliable Reminders automation via rem. The repository was created on May 20, 2026, and the stated direction is to keep future permission additions explicit and narrow, following the same full-path whitelist and audit-first behavior established for Reminders.

    Fluegel - 1

    Community Discussions

    Be the first to start a conversation about Fluegel

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

    Pricing

    OPEN SOURCE

    Open Source

    Free and open source under the MIT License. Build from source and use freely.

    • macOS menu bar app
    • CLI bridge
    • Full-path command whitelist
    • Audit log
    • Apple Reminders permission support

    Capabilities

    Key Features

    • macOS menu bar app for permission proxying
    • TCC permission bridge for headless agents
    • Exact full-path command whitelist
    • Append-only audit log for all allow/deny decisions
    • CLI bridge for status, whitelist management, and execution
    • Local user authentication required for whitelist edits
    • Apple Reminders permission support via rem CLI
    • Unix domain socket IPC with local token authentication
    • Settings UI with Permissions, Whitelist, and Audit tabs

    Integrations

    rem (Apple Reminders CLI)
    Apple Reminders
    Codex
    Ghostty
    launchd
    SSH
    API Available

    Reviews & Ratings

    No ratings yet

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

    Developer

    steipete

    steipete is an independent macOS and iOS developer known for building developer tools and open-source utilities. The Fluegel project addresses a specific pain point in local AI agent automation on macOS by providing a stable, auditable permission proxy. The project is written in Swift and hosted on GitHub under the MIT License.

    Read more about steipete
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Codex icon

    Codex

    A lightweight, open-source coding agent from OpenAI that runs locally in your terminal, enabling AI-powered software engineering tasks from the command line.

    RMUX icon

    RMUX

    A universal Rust terminal multiplexer with a tmux-compatible CLI, daemon-backed SDK, and native Ratatui integration — built for agentic and headless terminal automation.

    Serval icon

    Serval

    AI-native IT service management platform that automates help desk requests, access management, onboarding/offboarding, and ticketing using an AI agent workforce.

    Browse all tools

    Related Topics

    Autonomous Systems

    AI agents that can perform complex tasks with minimal human guidance.

    226 tools

    Command Line Assistants

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

    138 tools

    Access Control

    AI-enhanced tools for managing authentication and authorization.

    20 tools
    Browse all topics
    Back to all tools
    1view
    Discussions