# Save Note

> Files the current conversation answer as a permanent wiki page in Obsidian. Make sure to use this skill whenever the user says "save this to my notes", "add this to my knowledge base", "create a wiki page for this", "save what we discussed", or "file this answer". Converts session synthesis, insights, or technical decisions into a self-contained reference note. Never writes a note that references "the conversation above" — the body must stand alone.

- Skill: `kriscard/save-note` (Agent Skill)
- Install (CLI): `npx skillmds@latest add kriscard/save-note`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kriscard/save-note/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: kriscard (https://skillmd.com/u/kriscard)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/kriscard/save-note

---


# Save Note

File this session's answer as a permanent wiki page in Obsidian. The note must be self-contained — a
reader with no context should be able to understand it.

## Step 1 — Determine Title and Folder

If `$ARGUMENTS` provides a title, use it. Otherwise ask: "What should this note be titled, and which
folder?" using `AskUserQuestion`.

Default subfolders in `3 - Resources/`:

| Subfolder        | When to use                                          |
| ---------------- | ---------------------------------------------------- |
| `Coding/`        | Engineering patterns, technical decisions, API notes |
| `Reflections/`   | Personal insights, mental models, lessons learned    |
| `Concepts/`      | General concepts, frameworks, ideas                  |
| `Communication/` | Leadership, writing, comms patterns                  |

## Step 2 — Search Before Writing

```bash
qmd query "<topic>" --json -n 8 2>/dev/null
```

- Score ≥ 0.7 → append a dated section to the existing page
- Score 0.5–0.7 → show candidates and ask whether to append, create a distinct page, or cancel
- Score < 0.5 → create a new page

## Step 3 — Write the Note

**New page:**

```bash
obsidian create path="3 - Resources/<subfolder>/<title>.md" content="<note>"
```

**Append to existing:**

```bash
obsidian append path="3 - Resources/<subfolder>/<existing>.md" \
  content="\n## Update — $(date +%Y-%m-%d)\n\n<content>"
```

Frontmatter for new pages:

```yaml
---
source: claude-memory
created: YYYY-MM-DD
aliases: [<acronyms, alternate names, spelling/casing variants>]
tags: [claude-memory, <topic-tags>]
---
```

Generate 2–6 `aliases`: off-title terms someone would search to find this page (acronyms, alternate
names, "X vs Y" framings). This is what makes the page recall-able from queries that don't match the
title. Skip only when the title is the sole term anyone would use.

Body: the synthesized answer from this session. Neutral, reference-focused voice — no "I learned
that..." framing. Should make sense to a reader with no context. Completion: the note has a title,
chosen folder, duplicate-search result, self-contained body, aliases for likely search terms, and no
references to "above" or "this conversation."

## Step 4 — Update Index and Log

Add to `index.md` under the `## Concept notes (claude-memory)` heading. The CLI has no `patch`, so
this section-targeted insert means either the MCP `obsidian_patch_content` tool (target the heading,
`operation: append`) or `read` + `create ... overwrite`. Ask the user which. Entry format:

```
- **<Title>** ($(date +%Y-%m-%d)) — [[<stem>]] (<path>). _<one-line summary>_
```

Append to `log.md` (chronological — append is fine):

```bash
obsidian append path="3 - Resources/log.md" content="\n## $(date +%Y-%m-%d)\nsave-note | <title>"
```

## Hard Rules

- Body must be self-contained — no "as we discussed" or "see above"
- Search before writing — never create duplicate pages
- Write in wiki style: neutral, reference-focused, not diary voice
- If Obsidian CLI fails: tell the user "Obsidian CLI isn't working — update Obsidian with CLI
  enabled"

