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
- Click any
.mdfile in the file tree on the left. - The center panel switches to the Markdown viewer.
- Click the Edit button (top-right of the panel) to enter edit mode.
- Click Save or press
Cmd/Ctrl + Sto 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:
- Read a requirement in the viewer.
- Highlight a sentence that needs clarification.
- Leave a comment: "This acceptance criterion is ambiguous — tighten it."
- Click Generate Prompt — RunLogos produces a precise instruction referencing the exact text.
- 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
| Document | Path |
|---|---|
| Requirements | logos/resources/prd/1-product-requirements/requirements.md |
| Product Design | logos/resources/prd/2-product-design/ |
| Scenarios | logos/resources/prd/3-technical-plan/2-scenario-implementation/ |
| Test Cases | logos/resources/test/ |
| Change Proposals | logos/changes/ |