Loading...
Loading...
Agent skills for creating and editing Obsidian-compatible files. Supports Obsidian Flavored Markdown, Bases (.base), and JSON Canvas (.canvas) formats.
npx skill4agent add founderjourney/claude-skills obsidian-skills# Note Title
Regular markdown content with [[wikilinks]] to other notes.
## Features
- [[Internal Links]]
- [[Links with Alias|Custom Text]]
- ![[Embedded Notes]]
- ![[image.png]]
- #tags and #nested/tags
- ^block-references
- %%comments%%
## Frontmatter
---
title: Note Title
date: 2025-01-12
tags: [tag1, tag2]
aliases: [alias1, alias2]
---{
"type": "base",
"version": 1,
"name": "Projects Database",
"source": "folder:Projects",
"columns": [
{"name": "Name", "type": "text", "property": "file.name"},
{"name": "Status", "type": "select", "property": "status"},
{"name": "Due Date", "type": "date", "property": "due"},
{"name": "Priority", "type": "number", "property": "priority"}
],
"filters": [
{"property": "status", "operator": "!=", "value": "done"}
],
"sorts": [
{"property": "due", "direction": "asc"}
]
}{
"nodes": [
{
"id": "1",
"type": "text",
"text": "Main Idea",
"x": 0,
"y": 0,
"width": 200,
"height": 100
},
{
"id": "2",
"type": "file",
"file": "Notes/Related Note.md",
"x": 300,
"y": 0,
"width": 200,
"height": 100
}
],
"edges": [
{
"id": "e1",
"fromNode": "1",
"toNode": "2",
"label": "relates to"
}
]
}Create an Obsidian note about [topic]
Include: frontmatter, sections, relevant linksCreate a Map of Content for [topic]
Link to: existing notes in vault
Structure: hierarchical with categoriesCreate daily note for today
Include: tasks, meetings, notes sections
Template: my-daily-templateCreate a canvas for [project/concept]
Nodes: key ideas, files, images
Connections: relationships between nodesCreate a Base for tracking [items]
Columns: [properties to track]
Filters: [criteria]
Sort: [ordering]| Syntax | Description |
|---|---|
| Internal link |
| Link with alias |
| Link to heading |
| Link to block |
| Embed note |
| Embed image |
| Syntax | Description |
|---|---|
| Simple tag |
| Nested tag |
| Frontmatter tags |
> [!note] Title
> Content
> [!warning] Important
> Warning content
> [!tip] Pro tip
> Helpful information- [ ] Incomplete task
- [x] Completed task
- [ ] Task with [[link]]
- [ ] Task #tag
- [ ] Task 📅 2025-01-12```dataview
TABLE status, due
FROM "Projects"
WHERE status != "done"
SORT due ASC
## Templates
### Note Template
```markdown
---
created: {{date}}
tags: []
---
# {{title}}
## Overview
## Details
## Related
----
date: {{date}}
attendees: []
type: meeting
---
# Meeting: {{title}}
## Attendees
-
## Agenda
1.
## Notes
## Action Items
- [ ]# 202501121030 Atomic Note Title
Brief atomic concept.
## Links
- [[202501121025 Related Concept]]
- [[202501121035 Another Idea]]
## References
- Source material/vault
├── 1 Projects/
├── 2 Areas/
├── 3 Resources/
└── 4 Archive/