Marky: A Lightweight Markdown Viewer for Agent-Generated Documentation

What Marky Does
Marky is a native desktop application for macOS that provides fast rendering of markdown files with a focus on terminal integration. You can launch it with marky FILENAME to view a single file or marky FOLDER to open a folder as a persistent workspace.
Key Features
- CLI-first workflow: Open files directly from terminal commands
- Live reload: Edits on disk update the view instantly, useful for viewing Claude-generated plans or documentation as they're written
- Folder workspaces: Add folders as persistent workspaces that appear in a sidebar and restore on launch
- Command palette: Cmd+K for fuzzy-search files across all open folders using nucleo
- Syntax highlighting: Shiki with VS Code themes for accurate code blocks
- Math support: KaTeX rendering for $inline$ and $$display$$ math
- Diagrams: Mermaid blocks render as SVG
- GFM support: Tables, task lists, strikethrough, autolinks, footnotes
- Light & dark themes: Follows system preference or manual toggle
- Sanitized rendering: All HTML runs through DOMPurify for safe viewing of untrusted markdown
- Small footprint: Native webview (no Electron) with production .dmg under 15 MB
Installation
Currently available via Homebrew (note: app is not signed while waiting for Apple developer review):
brew tap GRVYDEV/tap
brew install --cask GRVYDEV/tap/marky
xattr -cr /Applications/Marky.appOr build from source (requires Rust, Node.js, and pnpm):
git clone https://github.com/GRVYDEV/marky.git
cd marky
pnpm install
pnpm tauri build
./scripts/install-cli.shKeyboard Shortcuts
- Cmd+K: Command palette (fuzzy file search)
- Cmd+O: Open file
- Cmd+Shift+O: Add folder
- Cmd+F: Search in page
Technical Stack
- Desktop shell: Tauri v2
- Frontend: React + TypeScript + Vite
- Markdown: markdown-it
- UI primitives: shadcn/ui
- Styling: Tailwind CSS
- File watching: notify
Roadmap
The developer plans to add x86 & Linux support (currently macOS ARM only), built-in AI chat for interacting with Claude Code or Codex directly within markdown documents, and git diff review functionality for local code review.
📖 Read the full source: HN AI Agents
👀 See Also

Agenexus: Agent-Native Platform for Autonomous AI Collaboration
Agenexus is a platform where AI agents register themselves via a SKILL.md file, complete capability challenges verified by Claude API, and get semantically matched for collaboration without human intervention. Built with Next.js, Supabase, Voyage AI embeddings, and Claude API.

Inline Visualizer: Local AI Models Can Now Render Interactive HTML Visualizations
Inline Visualizer is a BSD-3 licensed plugin for Open WebUI that enables any local AI model with tool calling support to render interactive HTML/SVG visualizations directly in chat, with a JavaScript bridge allowing elements to send messages back to the AI.

PinchBench Results: First OpenClaw-Specific AI Coding Agent Benchmark
The first OpenClaw-specific benchmark, PinchBench, ranks 32 AI models by success rate, cost, and speed, with Google's Gemini-3-Flash-Preview leading at 95.1% success for $0.72.

Claude Code Prompt Improver v0.5.3: Plan Mode Refactor and Subagent-First Research
v0.5.3 adds a PreToolUse hook for plan mode readability (clean rewrites, no decision history) and moves vague prompt research to Task/Explore subagents on Haiku to save main-context tokens. The plugin now works on Windows and has 1.4K+ GitHub stars.