Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Vault Capture

ASecurity

Use when Josh asks to write a note, make a note, or capture something for his "pickled-knowledge" Obsidian vault - triggers on "write a note about X", "make a note for this", "capture this", "note this up", "put together a note on X", or a bare URL/article/tweet handed over with intent to write it up. Do NOT use for generic writing help, drafting prose that isn't a vault note, or when Josh is just asking a question and not asking for a note.

10 stars
0 votes
0 copies
0 views
Added 9/20/2026
developmenttypescriptgoruby

Works with

claude code

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add technicalpickles/pickled-claude-plugins --skill vault-capture --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Vault Capture?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Vault Capture
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/technicalpickles-vault-capture/badge)](https://www.skillsdirectory.com/skills/technicalpickles-vault-capture)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: vault-capture
description: Use when Josh asks to write a note, make a note, or capture something for his "pickled-knowledge" Obsidian vault - triggers on "write a note about X", "make a note for this", "capture this", "note this up", "put together a note on X", or a bare URL/article/tweet handed over with intent to write it up. Do NOT use for generic writing help, drafting prose that isn't a vault note, or when Josh is just asking a question and not asking for a note.
---

# Vault Capture

Turn a source (or a raw idea) into one Obsidian note file, already shaped for Josh's
`pickled-knowledge` vault - correct filename, correct frontmatter, correct body shape, and a
best-guess at where it'll eventually live. He should be able to save the file straight into his
vault with no renaming, no reformatting, no hunting down the source URL after the fact.

This is a chat-only rewrite of a more capable version that runs inside Claude Code (searches
the vault first, checks for duplicates, auto-links related notes, appends a daily-note
breadcrumb, actually files the note). None of that is reachable from here - no filesystem, no
vault search index. Say so plainly once, up front, rather than quietly skipping it:

> "Heads up: I can't search your vault from here, so I'm not checking for an existing note or
> suggesting related links - worth a quick check yourself before you file this."

## Step 1: Get the real source - never invent one

- **A URL was given:** fetch and read it for real (browse it). Never write the note from the
  URL text alone, a guess at what the page probably says, or general knowledge about the
  topic. If the page can't be reached, say so and stop - don't write a plausible-sounding note
  anyway.
- **A tweet/thread:** read the actual tweet content if it can be fetched. If not reachable,
  say so rather than reconstructing it from context.
- **No URL, just an idea or topic:** there is no source to fetch. Don't backfill one from
  training knowledge and present it as researched. Write the note from what Josh actually said,
  and leave `source` off the frontmatter entirely.
- **Several sources at once** ("make notes for each of these"): handle them one at a time, in
  order, and produce one file per source. There's no subagent fan-out available here.

## Step 2: Write the frontmatter

```yaml
---
status: seedling
tags: [lowercase, hyphenated, no-leading-hash]
created: 2026-09-11
source: https://example.com/the-actual-page
---
```

- **`status: seedling`** always, for a fresh capture. This is the note's maturity, not a
  workflow state - don't write `filed`, `active`, `incubating`, etc. Those belong to notes
  that have already been routed inside the vault, which this one hasn't.
- **`tags`**: a short list, lowercase, hyphenated, **no `#` prefix** (a bare `#` at the start
  of a YAML flow-sequence item is a comment and silently corrupts the frontmatter). Pick 2-4
  topic tags from what the note is actually about. [references/jd-map.md](references/jd-map.md)
  is useful here too - a tag that matches how the vault already splits a topic (e.g. `ruby` vs
  a generic `programming`) ages better.
- **`created`**: today's date, `YYYY-MM-DD`.
- **`source`**: the real URL/origin actually fetched in Step 1. Omit the field entirely for a
  sourceless idea capture - don't write `source: none` or similar.

## Step 3: Write the body

```markdown
# Glide browser

A [Firefox fork](https://glide-browser.app/firefox) that is keyboard-focused, with a
Vim-style modal interface and a TypeScript config surface.
```

- **`# Title`** in sentence case, matching the source's own framing rather than a generic
  topic label - `# Glide browser`, not `# Notes on a keyboard-driven browser`.
- **Prose, not an outline.** One to three paragraphs. Only reach for `##` subheadings once
  there's enough content to need them - a three-paragraph note doesn't need five headings.
- **Link out inline** to the primary source so the reader can get to the real thing.
- **No `## Related` section.** The real vault workflow only links to notes a live search
  confirmed exist; nothing here can confirm that, so don't fabricate `[[wiki-links]]` to
  notes that may or may not exist. Leave that entirely to Josh.
- **One note, one idea.** If the source clearly carries several distinct, separable ideas,
  say so and offer to split it into multiple notes rather than writing one sprawling one.

## Step 4: Name the file

```
202609111420 glide-browser.md
└──┬───────┘ └──────┬──────┘
   │                └─ hyphenated slug, from the title
   └─ YYYYMMDDHHMM, then a single SPACE (not a hyphen)
```

Use the current date and time (down to the minute, best effort). The space between the
timestamp and the slug is exactly one space - a hyphen there (`202608071430-glide-browser.md`)
is the wrong shape.

## Step 5: Guess a likely destination

Read [references/jd-map.md](references/jd-map.md) - the vault's Johnny Decimal area map - and
name the area/category the note will probably land in once routed (e.g. "probably `66 AI &
agentic development`"). This is Josh's own filing step to do, not something happening here -
frame it as a guess he can accept or override, never as a decision already made. Say so plainly
when two areas are plausible, or when nothing fits well.

## Step 6: Hand over the file

Create the actual `.md` file (frontmatter + body from Steps 2-3) named exactly as in Step 4,
and give it to Josh as a download. Don't just print the content and ask him to save it himself.

Then, in a few short lines, tell him:
- the filename
- that it's built to drop straight into `10-19 System & Capture/11 Inbox & triage/` in the
  vault (that's where fresh captures land before routing) - he still has to move it there
  himself, nothing here can write into the vault directly
- the likely-destination guess from Step 5
- the one-line duplicate/related-notes caveat from Step 1, if it wasn't already said

No further ceremony - a few short lines are enough, not a summary of every step taken.

## Constraints

- **Never fabricate.** No invented URLs, no filled-in details from memory, no `[[links]]` to
  notes that might not exist. If the source can't be reached, say that and stop.
- **No workflow-state values.** Fresh captures are always `status: seedling`. Leave lifecycle
  status (`filed`, `active`, `incubating`, ...) to whatever actually routes the note later.
- **No pretending to search the vault, and no pretending the destination guess is final.**
  State both limitations plainly and move on.
- **Filename and frontmatter exactly as specified above.** This is the whole point of the
  skill - if Josh still has to rename the file or fix the frontmatter afterward, it failed at
  its one job.

Attribution

technicalpicklestechnicalpickles
View sourceMore from technicalpickles →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

281612 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2132 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →