con un clic
asking-notes
// Query your Second Brain with keyword search. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that their notes might answer.
// Query your Second Brain with keyword search. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that their notes might answer.
Must read guide on creating/editing mermaid charts with validation tools and syntax reference for all diagram types
Generate interactive HTML walkthroughs with clickable Mermaid diagrams (flowcharts and ER diagrams) that explain codebase features, flows, architecture, and database schemas. Use when asked to "walkthrough", "explain this flow", "how does X work", "trace the code path", "annotated diagram", "code walkthrough", "explain the architecture of", "walk me through", "database schema", "explain the tables", "data model".
Create a note from any resource: URL, book, podcast, article, video, GitHub repo, Reddit thread, PDF, quote, or raw idea. Trigger on "add", "save", "capture", "note this", "take notes on", or any request to record content in the knowledge base.
Add tweets to the Second Brain. Use when the user provides a Twitter/X URL and pasted tweet content, asking to "add a tweet", "save this tweet", or "capture this tweet".
Create Obsidian templates for the Second Brain vault. Use when asked to "create a template", "make a template for", "add an Obsidian template", or "template for X".
Create or update today's private journal entry. Use when asked to "daily note", "journal", "log today", "morning pages", or "capture thoughts".
| name | asking-notes |
| description | Query your Second Brain with keyword search. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that their notes might answer. |
| allowed-tools | Read, Bash, Glob, Grep |
This skill answers questions by searching your notes with keyword matching, reading the most relevant ones, and synthesizing an answer — all locally, no external API calls.
Use Grep and Glob to find notes matching the user's question:
# Search by keywords in content
Grep pattern="keyword" path="content/" glob="*.md"
# Search by tags
Grep pattern="tags:.*keyword" path="content/" glob="*.md"
# Search by title
Grep pattern="title:.*keyword" path="content/" glob="*.md"
Combine multiple keyword searches to find the most relevant notes.
Read the top 5 note files returned by the search (full markdown content). If the top 5 don't fully answer the question, read more from the results list.
Combine insights across the notes into a direct answer. Follow these rules strictly:
[[wiki-links]]After answering, highlight what's missing from the knowledge base and suggest related questions.
## Answer
[Direct answer synthesized from notes, citing [[sources]] inline]
## Sources Used
| Note | Type | Relevance |
| ---------- | ------- | -------------------- |
| [[slug-1]] | article | Core source on topic |
| [[slug-2]] | book | Supporting framework |
| [[slug-3]] | podcast | Practical examples |
## Gaps & Follow-ups
- No notes covering [subtopic X]
- Try asking: "What about [related question]?"
[[wiki-link]]