一键导入
lithos-feature
Create feature documentation pages in vault/2.features/. Use when documenting a specific Lithos capability like graph view, bases, or daily notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create feature documentation pages in vault/2.features/. Use when documenting a specific Lithos capability like graph view, bases, or daily notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
Ensure consistent content formatting and avoid common issues
Create documentation for the Lithos repository itself. Use this skill when writing guides, feature docs, or API references in the `vault/` directory.
Create or edit the Lithos landing page (vault/index.md). Use when modifying the homepage hero, feature cards, or call-to-action sections.
| 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. |
Creates feature pages in vault/2.features/ that describe individual Lithos capabilities.
[WorkspaceRoot]/vault/2.features/{feature-name}.md
icon and navigation.icon in frontmatter using i-lucide-* format.2.features/ must have at least 2 files at all times.::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}
```
:::
::
---
title: string # Feature name
description: string # One-sentence summary
order: number # Position in sidebar (1-10)
icon: i-lucide-* # Feature icon
navigation:
icon: i-lucide-* # Same icon for sidebar
tags:
- feature-category
- related-topic
---
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}
order based on existing features.::tabs examples for any syntax demonstrations.