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
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에 반영해준다.