| name | lithos-feature |
| description | Create feature documentation pages in vault/2.features/. Use when documenting a specific Lithos capability like graph view, bases, or daily notes. |
Lithos Feature Documentation
Creates feature pages in vault/2.features/ that describe individual Lithos capabilities.
Vault Location
[WorkspaceRoot]/vault/2.features/{feature-name}.md
Critical Rules
- Icon Required: Both
icon and navigation.icon in frontmatter using i-lucide-* format.
- No H1: Title comes from frontmatter only.
- Folder Minimum:
2.features/ must have at least 2 files at all times.
- Tabs for Examples: Use
::tabs with Preview and Code tabs for syntax demonstrations:
::tabs
:::tabs-item{label="Preview" icon="i-lucide-eye"}
{rendered output}
:::
:::tabs-item{label="Code" icon="i-lucide-code"}
```md
{source code}
```
:::
::
- Wikilinks: Link to at least 3 other pages (related features, guides, API references).
- Callouts: Use at least 2 callouts per page (tip, note, warning, etc.).
Volumetry
- Minimum 2 H2 sections per page
- Each H2 has 2-3 H3 subsections
- Each H3 has 3+ paragraphs (3-5 sentences each)
- Target: 1000-2000 words per feature page
- Include practical code examples and configuration snippets
Frontmatter Schema
---
title: string
description: string
order: number
icon: i-lucide-*
navigation:
icon: i-lucide-*
tags:
- feature-category
- related-topic
---
Document Structure
Feature pages follow a pattern of concept → usage → configuration:
{Introduction: What is this feature and why does it matter? 2-3 sentences.}
## {Core Concept}
{Explain the mental model and philosophy.}
### {Aspect 1}
{3+ paragraphs explaining this aspect}
### {Aspect 2}
{3+ paragraphs with code examples}
## {Usage & Configuration}
### {Basic Usage}
{How to use it with ::tabs Preview/Code examples}
### {Customization}
{Configuration options, props, settings}
### {Integration}
{How it connects with other features, [[wikilinks]] to related pages}
Existing Features (for cross-linking)
- [[Obsidian Native]] — Wikilinks, embeds, callouts, math
- [[Interactive Graph]] — Force-directed graph visualization
- [[Structured Data]] — Obsidian Bases and databases
- [[MCP Server]] — AI integration via Model Context Protocol
- [[Daily Notes]] — Blog archive and RSS feed
- [[Backlinks]] — Linked references and discovery
- [[Skill Framework]] — AI agent skill definitions
Workflow
- Choose a clear, descriptive feature name.
- Determine
order based on existing features.
- Select an appropriate Lucide icon.
- Write introduction explaining the "why."
- Structure content as concept → usage → configuration.
- Add
::tabs examples for any syntax demonstrations.
- Cross-link to 3+ related pages.
- Add 2+ callouts with practical tips.
- Verify all wikilinks resolve.