EveryDev.ai
Subscribe
Home
Tools

3,569+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
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
    1. Home
    2. Tools
    3. claudish-to-english
    claudish-to-english icon

    claudish-to-english

    LLM Extensions
    Featured

    A Claude Code plugin that rewrites each assistant message into plain English using a local LLM via ollama, the Anthropic API, or any OpenAI-compatible API.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free and open-source under the MIT license. Self-hosted via ollama or cloud API keys.

    Engagement

    Available On

    Windows
    macOS
    API
    CLI

    Resources

    WebsiteGitHubllms.txt

    Topics

    LLM ExtensionsAI Coding AssistantsLocal Inference

    Alternatives

    RecallAgentic ArchitectAwesome Copilot
    Developer
    Mike GvozdevMike Gvozdev (gvzdv) builds open-source developer tools, inc…

    Listed Aug 2026

    About claudish-to-english

    claudish-to-english is an open-source Claude Code plugin created by Mike Gvozdev (gvzdv on GitHub) that intercepts assistant messages and displays a plain-English rewrite alongside or in place of the original. It is display-only by design β€” Claude's own reasoning and the saved transcript keep the original text unchanged. The project is licensed under MIT and described by its author as a "working prototype" with 1,192 stars on GitHub as of mid-August 2026.

    What It Is

    claudish-to-english is a Claude Code plugin that hooks into the MessageDisplay event to rewrite verbose, jargon-heavy assistant output ("Claudish") into plain English. It uses a configurable LLM backend β€” defaulting to a local ollama model so nothing leaves your machine β€” and supports the Anthropic API and any OpenAI-compatible endpoint as alternatives. An optional second hook (rewrite-md.sh) can also rewrite Markdown files on disk when they are written or edited, though this is opt-in and off by default.

    How the Hooks Work

    The plugin registers two hooks in hooks/hooks.json:

    • Display hook (rewrite.sh): Fires on every MessageDisplay event. Because Claude Code fires this once per streamed chunk, the hook buffers each delta to a temp file and only calls the LLM on the final chunk, once the full message is assembled. It also reads the original user question from the transcript and passes it as context so the rewrite stays on-topic.
    • Markdown hook (rewrite-md.sh): A PostToolUse hook that rewrites *.md files in a user-specified directory. It supports a non-destructive sibling mode (writes NAME.plain.md next to the original) and an overwrite mode that replaces the file in place with an idempotency marker.

    Both hooks are fail-open: if the provider is down, times out, or a key is missing, the original text is shown unchanged.

    Display Modes and Configuration

    The plugin is controlled entirely through CLAUDISH_* environment variables set in Claude Code's settings.json env block:

    • CLAUDISH_MODE: append (default, safest β€” appends a πŸ’¬ In plain English: block after the original) or replace (experimental β€” suppresses streaming and shows only the rewrite).
    • CLAUDISH_PROVIDER: ollama (default, local), anthropic, or openai.
    • CLAUDISH_MODEL: Overrides the provider's default model. The default gemma4:26b-mlx is Apple-silicon (MLX) only; Windows users must set a non-MLX tag.
    • CLAUDISH_MD_DIR: Opt-in directory for the Markdown hook; unset means the hook does nothing.
    • A runtime kill switch (touch ~/.claude/claudish-off) pauses rewrites mid-session without restarting Claude Code.

    Custom rewrite prompts can be supplied via CLAUDISH_PROMPT_FILE and CLAUDISH_MD_PROMPT_FILE, replacing the built-in system prompt entirely.

    Provider Architecture and Privacy

    With the default ollama provider, all rewriting happens locally and no conversation content leaves the machine. Switching to anthropic or openai deliberately sends each assistant message (and, with the Markdown hook, file contents) to an external API. The README includes an explicit caution that ambient OPENAI_API_KEY or ANTHROPIC_API_KEY environment variables are picked up automatically, so setting CLAUDISH_PROVIDER=openai is the consent switch. Dedicated per-plugin keys (CLAUDISH_ANTHROPIC_KEY, CLAUDISH_OPENAI_KEY) are supported to isolate usage from other tools.

    Platform Support and Setup

    The hooks are bash scripts. On macOS, requirements are ollama, a pulled model, jq, and curl. On Windows, Claude Code runs the hooks through Git Bash, and users must override the default model to a non-MLX tag. The plugin can be installed directly from the repository via /plugin marketplace add gvzdv/claudish-to-english and /plugin install claudish-to-english@gvzdv-plugins, or loaded for a single session with claude --plugin-dir.

    Current Status

    The repository was created on August 10, 2026 and last pushed on August 13, 2026, with 1,192 stars and 78 forks. The author describes it as a "working prototype." A CHANGELOG.md is included in the repository layout. The latest GitHub release is tagged assets (README assets, published August 11, 2026), indicating the project is in early active development.

    claudish-to-english - 1

    Community Discussions

    Be the first to start a conversation about claudish-to-english

    Share your experience with claudish-to-english, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free and open-source under the MIT license. Self-hosted via ollama or cloud API keys.

    • Plain-English rewrite of Claude assistant messages
    • Local ollama provider (no data egress)
    • Anthropic and OpenAI-compatible API support
    • Optional Markdown file rewrite hook
    • Fully configurable via environment variables

    Capabilities

    Key Features

    • Plain-English rewrite of Claude assistant messages via MessageDisplay hook
    • Local LLM rewriting via ollama (default, no data leaves machine)
    • Anthropic API and OpenAI-compatible API provider support
    • Append mode (shows rewrite after original) and replace mode (shows only rewrite)
    • Optional Markdown file rewrite hook (PostToolUse, opt-in by directory)
    • Sibling mode writes NAME.plain.md non-destructively; overwrite mode replaces in place
    • Fail-open design: provider failures always show original text unchanged
    • Configurable via CLAUDISH_* environment variables in settings.json
    • Custom rewrite prompt via CLAUDISH_PROMPT_FILE
    • Mid-session kill switch via flag file (~/.claude/claudish-off)
    • Per-message buffering to handle streamed chunks correctly
    • Reasoning model optimization (think:false for ollama, reasoning_effort:none for OpenAI)
    • Debug logging via CLAUDISH_DEBUG=1
    • macOS and Windows (Git Bash) support

    Integrations

    Claude Code
    ollama
    Anthropic API
    OpenAI API
    LM Studio
    llama.cpp server
    vLLM
    OpenRouter
    Git Bash (Windows)
    API Available

    Ratings & Reviews

    No ratings yet

    Be the first to rate claudish-to-english and help others make informed decisions.

    Developer

    Mike Gvozdev

    Mike Gvozdev (gvzdv) builds open-source developer tools, including claudish-to-english, a Claude Code plugin that rewrites verbose AI assistant output into plain English. The project is hosted on GitHub under the MIT license and supports local and cloud LLM backends.

    Read more about Mike Gvozdev
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Recall icon

    Recall

    A fully local Claude Code plugin that keeps a persistent session memory log and generates offline summaries using TF-IDF + TextRank β€” no API key, no network calls, no token cost.

    Agentic Architect icon

    Agentic Architect

    A free single-rule preview of the Agentic Architect Persistence Framework for Cursor, providing directory-scoped architecture boundary enforcement for C#/.NET codebases.

    Awesome Copilot icon

    Awesome Copilot

    A VS Code extension that provides additional GitHub Copilot chat participants and tools for enhanced AI-assisted development.

    Browse all tools

    Related Topics

    LLM Extensions

    Extensions that enhance large language models with new capabilities.

    14 tools

    AI Coding Assistants

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

    760 tools

    Local Inference

    Tools and platforms for running AI inference locally without cloud dependence.

    165 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions