> ## Documentation Index
> Fetch the complete documentation index at: https://docs.writerzroom.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Content Management

> Store, organize, edit, and move generated content through a structured workflow.

The Content Library is the primary workspace for saved generated content.

Every draft that completes generation enters the library, where it can be reviewed, edited, organized, and prepared for export or publishing.

## Library Overview

<div style={{ display: 'grid', gridTemplateColumns: 'repeat(3, 1fr)', gap: '12px', margin: '1.5rem 0' }}>
  <div style={{ border: '1px solid rgba(128,128,128,0.20)', borderRadius: '14px', padding: '18px', background: 'rgba(255,255,255,0.04)' }}>
    <div style={{ fontWeight: 800 }}>Draft Storage</div>
    <div style={{ fontSize: '13px', color: 'var(--colors-content-secondary)' }}>All generated content is persisted and accessible.</div>
  </div>

  <div style={{ border: '1px solid rgba(128,128,128,0.20)', borderRadius: '14px', padding: '18px', background: 'rgba(255,255,255,0.04)' }}>
    <div style={{ fontWeight: 800 }}>Editing</div>
    <div style={{ fontSize: '13px', color: 'var(--colors-content-secondary)' }}>Refine drafts without re-running generation.</div>
  </div>

  <div style={{ border: '1px solid rgba(128,128,128,0.20)', borderRadius: '14px', padding: '18px', background: 'rgba(255,255,255,0.04)' }}>
    <div style={{ fontWeight: 800 }}>Organization</div>
    <div style={{ fontSize: '13px', color: 'var(--colors-content-secondary)' }}>Manage content across workflows and use cases.</div>
  </div>
</div>

## Content Lifecycle

<Steps>
  <Step title="Generation completes">
    The draft is created through the pipeline and returned to the workspace.
  </Step>

  <Step title="Review and validate">
    Check structure, tone, and content accuracy.
  </Step>

  <Step title="Edit or regenerate sections">
    Improve specific parts without restarting the full workflow.
  </Step>

  <Step title="Save to library">
    Persist the draft for reuse, export, or publishing.
  </Step>

  <Step title="Export or publish">
    Move content to external systems or publishing flows.
  </Step>
</Steps>

## Content State Model

| State     | Description                 |
| --------- | --------------------------- |
| Draft     | Generated but not finalized |
| Edited    | Modified after generation   |
| Final     | Approved for external use   |
| Published | Delivered or distributed    |

## Core Capabilities

<CardGroup cols={2}>
  <Card title="Section regeneration" icon="refresh-cw">
    Update specific sections while preserving the rest of the document.
  </Card>

  <Card title="Inline editing" icon="edit">
    Modify content directly inside the saved draft.
  </Card>

  <Card title="Persistent storage" icon="database">
    Maintain a reliable history of generated work.
  </Card>

  <Card title="Workflow continuity" icon="repeat">
    Resume work without rebuilding context.
  </Card>
</CardGroup>

## Working with Existing Content

<AccordionGroup>
  <Accordion title="Reuse drafts as a starting point">
    Modify existing drafts instead of generating new ones to maintain consistency.
  </Accordion>

  <Accordion title="Refine instead of regenerate">
    Use section-level updates to improve quality incrementally.
  </Accordion>

  <Accordion title="Maintain clean final states">
    Keep finalized drafts separate from working drafts to avoid confusion.
  </Accordion>
</AccordionGroup>

<Info>
  The Content Library is optimized for continuity. Generation is the starting point. Management is where production happens.
</Info>
