Back to list
tsaijamey

frago-view-content-generate-tips-markdown

by tsaijamey

Multi-runtime automation infrastructure for AI agents. Native CDP browser control, metadata-driven Recipe system, and persistent Run context management.

52🍴 6📅 Jan 24, 2026

SKILL.md


name: frago-view-content-generate-tips-markdown description: Markdown document content generation guide. Use this skill when you need to create Markdown documents that can be previewed via frago view. Covers element support, Mermaid charts, and best practices.

Markdown Document Content Generation Guide

Create high-quality Markdown documents that can be previewed via frago view.

Preview Commands

frago view document.md                    # Default theme
frago view document.md --theme monokai    # Specify code theme

Supported Elements

Basic Elements

ElementSyntaxRendered Effect
Headings# H1 ~ ###### H6Hierarchical headings with bottom border
ParagraphsSeparated by blank lines16px bottom margin
Bold**text**Bold text
Italic*text*Italic text
Links[text](url)Blue links (#58a6ff)
Images![alt](path)Adaptive width
Code Blocks```langSyntax highlighting
Inline Code`code`Gray background with rounded corners
Tables| col |Bordered tables
Lists- item / 1. itemIndented lists
Blockquotes> quoteLeft blue border
Horizontal Rules---Gray divider line

Extended Elements

ElementSyntaxDescription
Footnotes[^1]Bottom footnotes
Definition Liststerm\n: definitionTerm definitions
Abbreviations*[abbr]: fullShow full text on hover
Attributes{#id .class}Element attributes
HTML Embedding<div markdown>Markdown within HTML

Mermaid Charts

Supported Chart Types

TypeKeywordPurpose
FlowchartsflowchartFlows, decisions
Sequence diagramssequenceDiagramInteraction flows
Class diagramsclassDiagramClass relationships
State diagramsstateDiagramState transitions
ER diagramserDiagramData models
Gantt chartsganttProject progress
Pie chartspieDistribution
Mind mapsmindmapHierarchical structure
TimelinestimelineEvent sequences
XY chartsxychart-betaBar/line charts

Flowchart Example

```mermaid
flowchart LR
    A[Start] --> B{Decision}
    B -->|Yes| C[Execute]
    B -->|No| D[Skip]
    C --> E[End]
    D --> E
```

XY Chart Example

```mermaid
xychart-beta
    title "Monthly Data"
    x-axis ["Jan", "Feb", "Mar", "Apr"]
    y-axis "Quantity" 0 --> 100
    bar [30, 45, 60, 80]
    line [25, 40, 55, 75]
```

Sequence Diagram Example

```mermaid
sequenceDiagram
    participant U as User
    participant S as Server
    participant D as Database
    U->>S: Send request
    S->>D: Query data
    D-->>S: Return result
    S-->>U: Response data
```

Code Blocks

Must Tag Language

```python
def hello():
    print("Hello!")

**No language tag means no highlighting**.

### Supported Languages

| Language | Tag |
|----------|-----|
| Python | `python` |
| JavaScript | `javascript` / `js` |
| TypeScript | `typescript` / `ts` |
| Bash | `bash` / `sh` |
| JSON | `json` |
| YAML | `yaml` |
| SQL | `sql` |
| Go | `go` |
| Rust | `rust` |
| HTML | `html` |
| CSS | `css` |
| Markdown | `markdown` |

### Code Themes

Default: `github-dark`

Available: `monokai`, `atom-one-dark`, `atom-one-light`, `vs2015`, `github`

---

## Best Practices

### 1. Heading Hierarchy

```markdown
# Document Title (only one)

## Level 1 Section

### Level 2 Section

#### Level 3 Section (avoid deeper levels)

Principle: Maximum 4 levels, deeper hierarchy affects readability.

2. Paragraph Length

  • Each paragraph 3-5 sentences
  • Single sentence no more than 80 characters
  • Blank lines separate paragraphs

3. List Usage

Appropriate: Parallel points, step instructions, feature enumeration

Not appropriate: Continuous narrative, content requiring contextual connection

4. Table Design

  • No more than 5 columns
  • Cell content brief
  • Use lists or paragraphs for complex content

5. Image Handling

![Image description](./images/diagram.png)

Auto-copy: images/, assets/, img/, media/, figures/ directories are automatically copied.

Format recommendations: PNG (lossless), JPG (photos), SVG (vector)

Size recommendations: Source image width 800-1200px, file size < 500KB


Things to Avoid

SyntaxIssueAlternative
LaTeX math formulasNot supportedUse images or Mermaid
<script> tagsSecurity restrictionsNot available
iframe embeddingSecurity restrictionsUse screenshots
Oversized Mermaid diagramsSlow renderingSplit into multiple smaller diagrams
Too many code blocksPerformance pressureMerge related code
Very long documentsScrolling lagSplit into multiple files

Style Reference (GitHub Dark)

ElementColor
Background#0d1117
Text#c9d1d9
Links#58a6ff
Code Background#161b22
Borders#30363d
Quote Text#8b949e

Template Library

TemplatePurposePath
Technical documentationAPI/feature descriptiontemplates/technical-doc.md
Report documentationAnalysis reportstemplates/report.md
Project summaryProject overviewtemplates/project-summary.md

Debugging Tips

IssueCauseSolution
No code highlightingLanguage not taggedAdd language tag
Mermaid not renderingSyntax errorCheck mermaid syntax
Images not displayingPath errorUse relative paths
Table misalignmentColumns misalignedCheck | count

Score

Total Score

75/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

Reviews

💬

Reviews coming soon