ワンクリックで
asking-notes
// Query the maintained wiki layer first, then fall back to sources when needed. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that the wiki might answer.
// Query the maintained wiki layer first, then fall back to sources when needed. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that the wiki might answer.
Ingest a new source into the LLM Wiki. Save the full captured resource under src/content/notes/sources/ first, then create or update the maintained wiki summary/synthesis entry, index, and log. Trigger on "add", "save", "capture", "note this", "take notes on", or any request to record content in the knowledge base.
Summarize the past week's daily journal entries. Use when asked to "weekly review", "review the week", "summarize this week", or "week summary".
Curate wiki maps and clustering pages for the LLM Wiki. Use when asked to "curate MOCs", "update maps", "find clusters", "what MOCs need updating", or "organize my notes".
Audit the maintained wiki for quality and maintenance issues. Use when asked to "review notes", "check content quality", "audit my knowledge base", or "find broken links".
Generate a weekly newsletter summarizing resources added last week. Use when asked to "weekly newsletter", "newsletter", "what did I add this week", "generate newsletter", or "Monday newsletter".
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".
| name | asking-notes |
| description | Query the maintained wiki layer first, then fall back to sources when needed. Use when asked to "ask my notes", "what do I know about", "query my knowledge", "/ask", or when the user has a question that the wiki might answer. |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep, AskUserQuestion |
This skill answers questions by searching wiki pages first, reading the most relevant ones, and synthesizing an answer. Raw source pages are a fallback, not the primary query surface.
Use Grep and Glob to find wiki pages matching the user's question:
# Search by keywords in content
Grep pattern="keyword" path="src/content/notes/notes/" glob="*.md"
# Search by tags
Grep pattern="tags:.*keyword" path="src/content/notes/notes/" glob="*.md"
# Search by title
Grep pattern="title:.*keyword" path="src/content/notes/notes/" glob="*.md"
Combine multiple keyword searches to find the most relevant notes.
Search scaling: When
qmdis installed, preferqmd search "query"for semantic search over wiki pages. Fall back to Grep for tag/frontmatter queries or when qmd is not available. At ~500+ pages, grep alone starts missing semantically relevant results that don't share exact keywords.
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 is missing from the wiki and suggest follow-up questions.
Evaluate whether the answer is durable — worth persisting beyond this conversation. An answer is durable when it:
Skip the offer when:
When durable, use AskUserQuestion to offer:
src/content/notes/notes/ with wiki_role: synthesis and status: seedwiki_role: question capturing the question and current best answerIf the user chooses to save, follow the standard wiki page conventions (frontmatter, tags, wiki-links) and update [[index]] and [[log]].
## 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]?"
## File to Wiki?
[If durable: offer to save as synthesis or question page]
[If not durable: omit this section]
[[wiki-link]]