An open-source developer named baturyilmaz has released ReadingIsFun, an EPUB reader that routes AI queries through coding agent subscriptions rather than requiring users to set up separate API keys. The app authenticates via existing CLI sessions from Anthropic's Claude Code, GitHub Copilot, Google Gemini, and OpenAI Codex — meaning anyone who already pays for any of those tools can run ReadingIsFun at no additional cost, reusing the OAuth tokens those CLIs store locally.

The application ships with two reading modes. Study Mode presents a three-panel layout: chapter navigation on the left, raw content in the center, and an AI chat, notes, and highlights panel on the right — suited to technical reading or research. Reader Mode delivers a more traditional paginated EPUB experience built on the epub.js library, with theme options and adjustable font sizing. In both modes, the AI agent has read-only access to the full book and can reference any chapter, keeping its answers grounded in the text. An optional web search feature, powered by Exa's AI-native search API, lets the agent pull in live information when an EXA_API_KEY is configured.

All user data — highlights, notes, chat histories, reading progress, and OAuth tokens — lives under ~/.readingisfun/, with no cloud backend. The app runs as a local client-server pair (Vite on port 5173, Express on port 3002), so the developer pays essentially nothing in hosting or per-token costs regardless of how many people use it. That architecture is what makes this project interesting: rather than standing up its own AI billing layer, ReadingIsFun treats <a href="/news/2026-03-15-godex-building-a-free-ai-coding-agent-with-mcp-servers-and-local-llms-via-ollama">coding agent subscriptions as ready-made credential and inference infrastructure</a>. Call it CLI subscription piggybacking.

It is among the first clean open-source examples of the approach, and it raises a practical question for AI providers: what happens when coding-agent subscribers start using those subscriptions for general productivity tools that have nothing to do with coding? GitHub Copilot had approximately 1.8 million paid subscribers as of early 2024, according to Microsoft's earnings disclosures. Anthropic has been expanding Claude Code and Claude Max subscriber counts. As that base grows, so does the incentive for developers to build on top of it. Whether providers respond with scope restrictions, per-app attribution, or explicit third-party licensing tiers will determine how long this distribution strategy stays viable.