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
Show HN: adamsreview – better multi-agent PR reviews for Claude Code
Claude Code에서 최대 7개의 병렬 서브 에이전트가 각각 다른 관점으로 PR을 리뷰하고, 자동 수정까지 해주는 오픈소스 플러그인이다. 기존 /review나 CodeRabbit보다 실제 버그를 더 많이 잡는다고 주장하지만 커뮤니티에서는 복잡도와 실효성에 대한 회의론도 나왔다.
How Fast Does Claude, Acting as a User Space IP Stack, Respond to Pings?
Claude Code에게 IP 패킷을 직접 파싱하고 ICMP echo reply를 구성하도록 시켜서 실제로 ping에 응답하게 만든 실험으로, 'Markdown이 곧 코드이고 LLM이 프로세서'라는 아이디어를 네트워크 스택 수준까지 밀어붙인 재미있는 사례다.
Show HN: Git for AI Agents
AI 코딩 에이전트(Claude Code 등)가 수행한 모든 툴 호출을 자동으로 추적하고, 어떤 프롬프트가 어느 코드 줄을 작성했는지 blame까지 가능한 버전 관리 도구다.
Principles for agent-native CLIs
AI 에이전트가 CLI 도구를 더 잘 사용할 수 있도록 설계하는 원칙들을 정리한 글로, 에이전트가 CLI를 도구로 활용하는 빈도가 높아지면서 이 설계 방식이 실용적으로 중요해지고 있다.
Agent-harness-kit scaffolding for multi-agent workflows (MCP, provider-agnostic)
여러 AI 에이전트가 서로 역할을 나눠 협업할 수 있도록 조율하는 scaffolding 도구로, Vite처럼 설정 없이 빠르게 멀티 에이전트 파이프라인을 구성할 수 있다.
Show HN: Tilde.run – Agent sandbox with a transactional, versioned filesystem
AI 에이전트가 실제 프로덕션 데이터를 건드려도 롤백할 수 있는 격리된 샌드박스 환경을 제공하는 도구로, GitHub/S3/Google Drive를 하나의 버전 관리 파일시스템으로 묶어준다.