secondbrain-note
17
总安装量
8
周安装量
#20139
全站排名
安装命令
npx skills add https://github.com/sergio-bershadsky/ai --skill secondbrain-note
Agent 安装分布
gemini-cli
7
opencode
6
antigravity
6
claude-code
6
codex
6
kilo
5
Skill 文档
Create Note
Capture knowledge, ideas, and thoughts with tagging support.
Prerequisites
Verify Notes entity is enabled:
- Check for
.claude/data/notes/records.yaml - If not found, suggest enabling notes via
secondbrain-initorsecondbrain-entity
Workflow
Step 1: Gather Information
Collect from user or conversation context:
- Title â Brief, descriptive title
- Content â Main content (can be from conversation)
- Tags (optional) â Categorization tags
Step 2: Generate Note ID
Date-based ID format: YYYY-MM-DD-<title-slug>
Example: 2026-01-15-kubernetes-deployment-patterns
Step 3: Create Note Document
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.
Step 4: Update Records
Add entry to .claude/data/notes/records.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
Step 5: Sidebar Note
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/records.yaml. No sidebar modification needed.
Step 6: Confirm Creation
## 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
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 |
Status Values
activeâ Current, relevant notearchivedâ No longer current but preserved
Additional Resources
references/note-formats.mdâ Detailed note templates and formatting patterns
Tips
- Be specific â Titles should indicate content at a glance
- Add context â Include why this is important, not just what
- Link liberally â Connect to related notes and external resources
- Tag consistently â Use established tags when possible
- Review periodically â Archive notes that are no longer relevant