Claude-skill-registry writing-note
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/other/other/writing-note" ~/.claude/skills/majiayu000-claude-skill-registry-writing-note && rm -rf "$T"
manifest:
skills/other/other/writing-note/SKILL.mdsource content
Obsidian Notes
If
$ARGUMENTS is provided, treat it as the user's note request and proceed directly without asking for clarification.
Overview
Standard operations for reading, writing, and organizing notes in the Obsidian vault (Obsidian Flavored Markdown with YAML frontmatter and wikilinks). All vault operations use Obsidian MCP tools with vault-relative paths.
Companion Skills
Obsidian supports more than plain markdown notes. Before proceeding, consider whether the user's request is better served by one of these formats:
| Skill | Format | When to use |
|---|---|---|
| | Always invoke when creating or editing notes — ensures correct Obsidian Flavored Markdown (wikilinks, callouts, embeds, properties) |
| | User wants a database view, filtered table, card gallery, or summary of notes by properties |
| | User wants a visual layout — mind map, flowchart, project board, or spatial arrangement of ideas |
Invoke the relevant skill(s) before writing content so you follow the correct syntax.
Directory Structure
Top-level categories:
Work/, Dev/, Games/, Personal/, Travel/, DailyNote/
- Max depth: 3 levels for general notes
- Exception: Projects and Meetings allow 4 levels
Special Note Types (use templates)
| Type | Path pattern | Template |
|---|---|---|
| Project | | |
| Meeting | | |
| DailyNote | | Use , , |
Note Creation Checklist
- Determine note type (project / meeting / daily / general)
- Select template if applicable
- Create with
create_note(path, content) - Verify frontmatter fields:
,title
,created
,updatedtags - Verify creation:
to confirm file was created and YAML is validread_note(path)
Reference Files
| File | When to read |
|---|---|
| Naming, tag system, frontmatter standards |
| Unsure which tool to use |
| File not found, YAML errors, search returns nothing |
| Any meeting note operation (create, query, update status) |
| Any project note operation (query, create, update, Jira integration) |