RunLogosRunLogos
中文EN

Markdown Editor

The Markdown editor is the primary interface for every spec document in RunLogos — requirements, product design, scenarios, test cases, and change proposals. It renders Markdown with full formatting and live Mermaid diagram support.

Opening a document

  1. Click any .md file in the file tree on the left.
  2. The center panel switches to the Markdown viewer.
  3. Click the Edit button (top-right of the panel) to enter edit mode.
  4. Click Save or press Cmd/Ctrl + S to write changes to disk.

Mermaid diagrams

Fenced code blocks tagged ```mermaid render as live diagrams. Edit the source and the diagram updates immediately — no external tool needed.

sequenceDiagram
  actor User
  participant API
  User->>API: POST /auth/login
  API-->>User: 200 OK + JWT

This is especially useful in Phase 03 (Scenario Mapping) where you iterate on sequence diagrams before handing them to the API Skill.

Table of contents

A scroll-synced TOC appears in the right margin for any document with headings. Click a heading to jump to it. The TOC is hidden in edit mode and reappears on save.

Comment-to-Prompt

Highlight any text in the viewer, click the comment icon that appears, and type a note. RunLogos generates a structured AI prompt from your comment — ready to paste into the Agent Panel or your AI tool of choice.

Typical workflow:

  1. Read a requirement in the viewer.
  2. Highlight a sentence that needs clarification.
  3. Leave a comment: "This acceptance criterion is ambiguous — tighten it."
  4. Click Generate Prompt — RunLogos produces a precise instruction referencing the exact text.
  5. Drag the prompt into the Agent Panel.

Comment-to-Prompt works on every Markdown document: requirements, design docs, scenarios, test cases, and change proposals.

Supported documents

DocumentPath
Requirementslogos/resources/prd/1-product-requirements/requirements.md
Product Designlogos/resources/prd/2-product-design/
Scenarioslogos/resources/prd/3-technical-plan/2-scenario-implementation/
Test Caseslogos/resources/test/
Change Proposalslogos/changes/

Next step

OpenAPI Editor