Show HN: Marky – A lightweight Markdown viewer for agentic coding
TL;DR Highlight
This macOS desktop app allows you to open Markdown files generated in real-time by AI agents like Claude directly in the terminal and view them with live rendering. It simplifies the document review process in AI-powered development workflows.
Who Should Read
macOS developers who want to quickly check planning documents, READMEs, notes, and other files generated while coding with AI agents (Claude, Cursor, etc.). Especially those who want to conveniently manage a large number of Markdown files output by an agent.
Core Mechanics
- Marky is a macOS-exclusive desktop app that instantly renders Markdown files or folders with a single command in the terminal: `marky FILENAME` or `marky FOLDER`.
- It supports live reload, so the viewer screen automatically updates when Claude or an editor modifies the file without requiring a separate refresh. You can see the content in real-time as the AI writes the document.
- If you register a folder as a workspace, a file list appears in the sidebar like Obsidian, and it is automatically restored even when the app is restarted.
- You can fuzzy search all files in registered folders with Cmd+K command palette, and it internally uses the nucleo library.
- Code blocks are rendered with Shiki (the same syntax highlighting engine as VS Code), equations with KaTeX, and diagrams with Mermaid as SVG rendering. It supports the entire GFM (GitHub Flavored Markdown).
- HTML rendering is sanitized with DOMPurify, so you can safely open untrusted Markdown files.
- The tech stack is Tauri v2 (Rust-based desktop app framework) + React + markdown-it, and it can be installed with Homebrew or built directly from source.
Evidence
- There was feedback that the term 'native' could be misleading. While Tauri uses the system WebView, it's an exaggeration to call it 'JavaScript native' since it's ultimately based on WebView.
- Several people mentioned having created similar tools themselves. vantageapp.dev, sdocs.dev, seams, hyprmark, mdreader, and other similar projects were shared in the comments, demonstrating that the boom in AI agent development has led to a simultaneous increase in people trying to solve this problem.
- The question 'What's the difference between this and Obsidian?' was raised. Obsidian also supports folder views and Markdown rendering, and the distinction was unclear. There were no clear rebuttals, and the comment did not lead to further discussion.
- There was also the opinion 'VS Code + Markdown preview is almost the same functionality.' However, this comment also included a specific need: integration with git and highlighting changes made by the agent.
- A UX inconvenience was reported: the text size cannot be adjusted. Along with feedback that the sidebar column width cannot be adjusted, there were real-user opinions that the default size is small and strains the eyes.
How to Apply
- Have an AI agent like Claude or Cursor write a planning document or spec file in Markdown, then open the corresponding folder in a separate terminal with the command `marky ./plans/` to view the content live as the agent updates the files.
- In projects where an agent generates a large number of Markdown files, open the project root with `marky .` and quickly find the desired file with Cmd+K fuzzy search. It is possible to quickly navigate even if more than 75 files are generated.
- Since it supports Mermaid diagram and KaTeX equation rendering, you can prompt the AI to write system architecture or flows in Mermaid code blocks and instantly visualize them in Marky.
- Because DOMPurify sanitization is applied, you can safely render and view Markdown files received from untrusted sources without the risk of XSS when checking documents received from outside.
Code Example
# Installation (Homebrew)
brew install marky
# Open a single file
marky README.md
# Open the entire folder as a workspace
marky ./docs/
# Open the current directory
marky .Terminology
Related Papers
Migrating a production AI agent to GPT-5.6: 2.2x faster, 27% cheaper
마케팅 웹사이트를 자동 생성하는 프로덕션 AI 에이전트를 Claude Opus 4.8에서 GPT-5.6 Sol로 전환한 실전 경험담으로, 단순 모델 교체가 아니라 eval 하네스, 툴 스키마, 캐싱, 추론 리플레이까지 손봐야 했던 과정을 구체적인 수치와 함께 정리했다.
What xAI's Grok build CLI sends to xAI: A wire-level analysis
xAI의 공식 코딩 CLI 도구 Grok Build가 사용자 동의 없이 전체 Git 저장소와 .env 시크릿 파일을 xAI 서버로 업로드한다는 사실이 네트워크 트래픽 분석으로 밝혀졌다.
Remember When It Matters: Proactive Memory Agent for Long-Horizon Agents
LLM 에이전트가 긴 작업 중 중요한 정보를 잊어버리는 문제를 별도의 메모리 에이전트가 '적절한 타이밍에' 끼어들어 해결하는 방법
WebSwarm: Recursive Multi-Agent Orchestration for Deep-and-Wide Web Search
복잡한 웹 검색을 재귀적으로 분해하고 각 노드에 적합한 검색 모드를 동적으로 할당하는 멀티에이전트 프레임워크
Show HN: Reverse-engineering web apps into agent tools
로그인된 웹 앱의 API 호출을 브라우저에서 감시해 자동으로 MCP 도구로 변환하는 에이전트를 만들었다. 소스 코드나 공식 API 문서 없이도 Jira, Spotify 같은 서비스에 AI 어시스턴트를 붙일 수 있다.
Show HN: FableCut – A browser video editor AI agents can drive (zero deps)
타임라인 전체를 JSON 파일 하나로 표현하고 MCP/REST로 AI 에이전트가 직접 편집할 수 있는 브라우저 비디오 에디터로, Claude 같은 AI가 프롬프트 하나로 영상을 자동 컷편집하고 결과를 실시간으로 UI에 반영해준다.