Skip to main content

Content Studio

The Content Studio is a built-in document editor for drafting and managing text content directly within Pawz. Write markdown, HTML, or plain text, and optionally use AI to improve your writing with one click.

Document management

Creating a document

  1. Open the Content view
  2. Click New Document
  3. Enter a title and select a content type
  4. Start writing in the editor

Content types

TypeDescription
MarkdownStandard markdown formatting
HTMLRaw HTML content
PlaintextUnformatted text

Operations

ActionDescription
CreateStart a new document with title and content type
EditModify the title, type, or content of an existing document
SavePersist changes to the database
DeletePermanently remove a document

Editor

The editor provides a full-width text area optimized for focused writing:
  • Live word count: Displayed below the editor, updating as you type
  • Title editing: Click the document title to rename it inline
  • Content type selector: Switch between markdown, HTML, and plaintext

Document sidebar

The left sidebar lists all your documents with:
ColumnDescription
TitleDocument name
Word countTotal words in the document
Last updatedTimestamp of the most recent edit
Click any document in the sidebar to open it in the editor.

AI Improve

The standout feature of Content Studio is AI Improve — a one-click button that sends your document content to the chat engine for AI-powered text improvement.

How it works

  1. Write or paste content into the editor
  2. Click the AI Improve button
  3. The content is sent to your active AI model with instructions to improve clarity, grammar, and style
  4. The improved version is returned and can be reviewed
:::tip AI Improve uses your currently configured model and provider. For best results with long-form content, use a capable model like Claude Sonnet or GPT-4o. :::

Storage

Documents are stored in the frontend SQLite database in the content_documents table. This means:
  • Documents persist across app restarts
  • Documents are stored locally on your machine
  • No cloud sync — your content stays private

Schema

ColumnTypeDescription
idUUIDUnique document identifier
titleTextDocument title
contentTextFull document content
content_typeTextmarkdown, html, or plaintext
word_countIntegerCached word count
created_atTimestampCreation time
updated_atTimestampLast modification time
:::info Content Studio documents are separate from Research findings and agent-generated files. They are your personal writing space within Pawz. :::