Agent skill

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill asking-notes --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Allowed tools: ReadBashGlobGrep
Path: skills/analysis/asking-notes/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Ask Your Second Brain 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. ## Workflow ### 1. Search — Find Relevant Notes Use Grep and Glob to find notes matching the user's question: ```bash # 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. ### 2. Read — Understand the Content 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. ### 3. Synthesize — Answer the Question Combine insights across the notes into a direct answer. Follow these rules strictly: - **Never invent information** not present in the notes - **Always cite** which note each claim comes from using `[[wiki-links]]` - **If no notes are relevant**, say so honestly — don't guess - **Connect ideas** across notes when they complement each other - *

What's inside
Steps it walks through
  1. Workflow
  2. 1. Search — Find Relevant Notes
  3. 2. Read — Understand the Content
  4. 3. Synthesize — Answer the Question
  5. 4. Extend — Identify Gaps and Follow-ups
  6. Output Format
  7. Quality Checklist
Ships with 1 file
  • metadata.json
Commands it runs
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"
More from claude-skill-registry
All skills →
About this skill
What does the asking-notes skill do?

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.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill asking-notes --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going