Show HN: Revise – An AI Editor for Documents
TL;DR Highlight
An AI-integrated word processor that lets you choose between OpenAI, Anthropic, and xAI models for document editing, correction, translation, and summarization — all in one interface. Tighter AI agent integration is what sets it apart from Google Docs/Word.
Who Should Read
Developers building AI document editing tools or similar services, or product engineers looking for ways to integrate LLMs into writing workflows.
Core Mechanics
- Revise is a WYSIWYG editor using canvas-based rendering, built on a custom rendering layer rather than the browser's native text engine. This enables fine UI control but creates platform compatibility issues like missing macOS readline/emacs shortcuts (ctrl-a, ctrl-e, etc.).
- You can choose between OpenAI (GPT-5.4 Mini/GPT-5.4/GPT-5.4 Pro), Anthropic (Claude Haiku 4.5/Sonnet 4.6/Opus 4.6), and xAI models directly. Users pick models based on task type and cost.
- An AI agent sits in the editor sidebar, detecting inconsistencies in the document (timeline mismatches, conflicting numbers) and suggesting inline fixes. The goal is to eliminate the copy-paste-to-ChatGPT workflow.
- A multimodal LLM feature converts PDFs to rich text. Even scanned or image-based PDFs can be turned into editable text.
- User preferences are learned and remembered for personalization. Pronoun preferences (they/them), spelling conventions (US spelling), paragraph length, APA 7 format, Oxford comma, email max 120 words, etc. are stored and applied in subsequent interactions.
- Word document and Google Docs import, PDF scan conversion, translation, summarization, paraphrasing, tone adjustment — all available in a single interface without tab switching, maintaining editing context while using AI features.
- Built by a single developer over 10 months. The community viewed this positively as focused product development distinct from 'vibe-coded weekend project.' However, the subscription model (~$8/month estimated) and online-only requirement created barriers for some users.
Evidence
- A developer interested in the canvas-based editor architecture also shared a detailed bug list: focus loss at 3-level tab indentation, double-click drag text selection not working, selection highlight offset, incomplete text restoration on undo, list style toggle collapsing hierarchy, table row vertical resize not available, etc.
- A developer working on a similar project mentioned OnlyOffice + Python library (python-pptx, etc.) sandbox combo and Tiptap/PlateJS Notion-style libraries as alternatives. They mentioned considering open-sourcing their work too.
- Multiple users expressed resistance to the subscription and online-only model. Reactions included 'I can already paste into Claude for free, why pay $8/month more' and shared experiences of formatting getting stripped when pasting into enterprise portals (Confluence, Wiki, Google Docs), making them stick with raw markdown.
- Criticism that Notion already offers similar or more features, and that AI writing tools need 'deep editing' capabilities — logical flow, conclusion validity, redundancy elimination, essay structure rearrangement — to truly be useful. Current state was bluntly assessed as 'barely past the first step of ChatGPT copy-paste.'
- Comments about MS Office and LibreOffice being too bloated while lacking lightweight alternatives. In this context, interest in Revise's editor quality was expressed even without AI features. Questions about team collaboration features (concurrent editing limits) went unanswered.
How to Apply
- If building a custom canvas-based editor, use Revise's bug cases (platform shortcut compatibility, multi-level list toggles, selection area rendering offsets) as a QA checklist to catch issues early in development.
- Planning an AI writing assistant SaaS? Consider starting with open-source Notion-style editor libraries like Tiptap or PlateJS as a base and just bolt on LLM APIs. The OnlyOffice + Python sandbox combo works when you need to handle Office formats like PowerPoint directly.
- For building user preference personalization, Revise's approach of accumulating natural-language preference rules (pronouns, tone, format, etc.) in the system prompt works without any fine-tuning. Store per-user preference lists in DB and append them to the system prompt on every request.
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를 하나의 버전 관리 파일시스템으로 묶어준다.