From secondbrain
Creates dated Markdown notes with YAML frontmatter, tags, summaries, and references in .claude/data/notes/ for secondbrain. Activates on 'create note', 'capture thought', 'save this', etc.
npx claudepluginhub sergio-bershadsky/ai --plugin secondbrainThis skill uses the workspace's default tool permissions.
Capture knowledge, ideas, and thoughts with tagging support.
Captures conversational knowledge to Second Brain on 'remember this', 'save this', or 'brain dump' triggers. Journals verbatim quotes, classifies epistemic types, and updates structured markdown files.
Creates and edits notes in PKM vault using templates for ADR, research, tasks, meetings; duplicate checks via semantic search, link discovery, annotations, index updates.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Share bugs, ideas, or general feedback.
Capture knowledge, ideas, and thoughts with tagging support.
Verify Notes entity is enabled:
.claude/data/notes/meta.yaml (sharded) or .claude/data/notes/records.yaml (legacy)secondbrain-init or secondbrain-entityCollect from user or conversation context:
Date-based ID format: YYYY-MM-DD-<title-slug>
Example: 2026-01-15-kubernetes-deployment-patterns
Filename: docs/notes/YYYY-MM-DD-<slug>.md
Frontmatter:
---
id: 2026-01-15-my-note
title: My Note Title
created: 2026-01-15
tags: [tag1, tag2]
status: active
---
Content:
# My Note Title
## Summary
Brief overview...
## Content
Main content here...
## References
- Links to related resources
## Related
- Links to related notes, ADRs, etc.
Add entry to the current month's shard .claude/data/notes/YYYY-MM.yaml:
- id: "2026-01-15-my-note"
title: "My Note Title"
created: 2026-01-15
file: docs/notes/2026-01-15-my-note.md
tags: [tag1, tag2]
status: active
Ensure the current month is registered in .claude/data/notes/meta.yaml shards list.
DO NOT manually add notes to VitePress sidebar.
Notes are automatically listed via the EntityTable component on docs/notes/index.md, which reads from .claude/data/notes/ shard files. No sidebar modification needed.
## Note Created
**ID:** 2026-01-15-kubernetes-deployment-patterns
**Title:** Kubernetes Deployment Patterns
**Tags:** kubernetes, deployment, devops
**File:** docs/notes/2026-01-15-kubernetes-deployment-patterns.md
The note has been created and is ready for editing.
Tags help organize notes for discovery. Common patterns:
| Category | Example Tags |
|---|---|
| Technology | kubernetes, react, python |
| Domain | architecture, security, performance |
| Type | howto, reference, research |
| Project | project-x, migration, refactor |
active — Current, relevant notearchived — No longer current but preservedreferences/note-formats.md — Detailed note templates and formatting patterns