with one click
content-formatting
Ensure consistent content formatting and avoid common issues
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Ensure consistent content formatting and avoid common issues
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Add icons to navigation items using frontmatter or .navigation.md folder files.
Configure navigation ordering for Obsidian vaults using frontmatter, .navigation.md files, or numeric filename prefixes.
Add custom Vue components to a vault for use in markdown content or app-level overrides.
Create documentation for the Lithos repository itself. Use this skill when writing guides, feature docs, or API references in the `vault/` directory.
Create feature documentation pages in vault/2.features/. Use when documenting a specific Lithos capability like graph view, bases, or daily notes.
Create or edit the Lithos landing page (vault/index.md). Use when modifying the homepage hero, feature cards, or call-to-action sections.
| name | content-formatting |
| description | Ensure consistent content formatting and avoid common issues |
This skill documents Lithos formatting conventions to avoid rendering issues.
title: property❌ Wrong (causes double title):
---
title: My Page
---
# My Page
Content starts here...
✅ Correct (single title from frontmatter):
---
title: My Page
---
Content starts immediately after frontmatter...
Every page should have at minimum:
---
title: Required Title
description: Optional but recommended for SEO
---
For section headers within your content, start with ## H2:
---
title: Guide Title
---
Introduction paragraph...
## First Section
Content of first section...
### Subsection
More detailed content...
Escape special characters in YAML:
title: "My: Title"title: 'He said "hello"'