Add OrbitOS skills (bundled)

- orbites-research: deep research workflow
- orbites-parse-knowledge: structure unstructured text
- orbites-obsidian-markdown: Obsidian markdown reference
- obsidian: vault read/write/search
- Updated README: 20 skills total, OrbitOS bundled
This commit is contained in:
Kunthawat Greethong
2026-07-02 10:04:21 +07:00
parent 7b5af16f6d
commit 7bf147069e
5 changed files with 293 additions and 7 deletions

View File

@@ -0,0 +1,61 @@
---
name: orbites-obsidian-markdown
description: Obsidian Flavored Markdown reference — wikilinks, callouts, embeds, frontmatter, mermaid. Use when working with Obsidian vault files or user asks about wikilinks/callouts/embeds.
---
# OrbitOS: Obsidian Markdown Reference
Obsidian uses CommonMark + GitHub Flavored Markdown + Obsidian extensions (wikilinks, callouts, embeds).
## Internal Links (Wikilinks)
```markdown
[[Note Name]]
[[Note Name|Display Text]]
[[Note Name#Heading]]
[[Note Name#^block-id]]
![[Note Name]] # Embed entire note
![[Note Name#Section]] # Embed section
```
## Callouts
```markdown
> [!note] / [!info] / [!tip] / [!warning] / [!danger]
> [!faq]- Collapsed by default
> [!faq]+ Expanded by default
```
## Properties (Frontmatter)
```yaml
---
title: My Note
date: 2024-01-15
tags: [project, important]
aliases: [My Note, Alt Name]
status: in-progress
due: 2024-02-01T14:30:00
---
```
## Embeds
```markdown
![[image.png|300]] # Image with width
![[audio.mp3]] # Audio
![[document.pdf#page=3]] # PDF
```
## Other
- **Highlight**: `==text==`
- **Comments**: `%%hidden text%%`
- **Math**: `$e^{i\pi} + 1 = 0$`
- **Mermaid**: ```` ```mermaid ```` ````
## Critical DO NOT
- **No empty line after frontmatter** `---` (becomes visible in body)
- Frontmatter MUST be at line 1
- **NO duplicate keys** in frontmatter
- Use array syntax for tags: `tags: [tag1, tag2]`