document-editor

Creates and edits long-form Markdown documents in a rich text editor with streaming updates.

1|Updated Mar 30, 2026
One-click install
npx skills add https://github.com/Logarn/Worklin-ai --skill document-editor-logarn
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: document-editor
Source: https://github.com/Logarn/Worklin-ai/tree/main/assistant/src/config/bundled-skills/document-editor
Command: npx skills add https://github.com/Logarn/Worklin-ai --skill document-editor-logarn

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Long-form writing like articles, blog posts, reports, and essays gets lost or becomes hard to review when dumped into a chat reply. This Skill moves prose into a dedicated rich text editor where content can be streamed, reviewed, edited, commented on, and exported. ## Core Features & Use Cases - Document Creation & Streaming: Create a new document with a title and stream Markdown content in chunks so users see progress in real time. - Targeted Editing: Use find-and-replace with literal or regex patterns to fix typos, rename terms, or reformat content without rewriting the whole document. - Comment Workflow: List, reply to, and resolve inline user comments after addressing feedback in the document. - Use Case: A user asks for a 1,500-word blog post about retention marketing. The Skill opens the editor, streams the draft section by section, then applies the user's inline comment feedback with targeted replacements. ## Quick Start Ask the assistant to write a blog post or report and it will open the document editor and stream the draft there instead of replying in chat.

Frequently Asked Questions about document-editor

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I write a blog post or article with the assistant?▼

Ask the assistant to write the article and it creates a document in the rich text editor using document_create, then streams Markdown content in chunks with document_update. The draft appears in real time and can be edited or exported.

How do I edit only part of a document without rewriting it?▼

Use document_find to preview matches, then document_replace_text for targeted find-and-replace with literal or regex patterns. This avoids full-document rewrites and prevents accidentally dropping content.

Can I recover a document after switching devices or refreshing?▼

Yes. Call document_list with a title query to find the surface_id, then document_open to re-surface the editor panel on the current client. Guardian and local users can search across conversations.

When should I use the document editor instead of a chat reply?▼

Use the editor for any long-form prose such as articles, reports, or essays that will be reviewed or exported. Short one or two sentence answers belong in chat, and interactive apps with state belong in app-builder.

How are inline comments on a document handled?▼

Open comments appear in a document_comments context block or via comment_list. The assistant edits the document to address each comment, then calls comment_resolve, or uses comment_reply to ask clarifying questions first.