Browse Fragments /browse-fragments

Quickly find any fragment in your vault using powerful search and filtering capabilities.



What is Browse Fragments?

Browse Fragments is your search interface into your knowledge vault. Find that perfect quote, retrieve a code snippet, or explore fragments by tag—all with a simple command.

How to Use

Search for fragments using keywords:

/browse-fragments trees

Search Options

OptionDescription
--tagFilter by specific tag
--categoryFilter by category
--sourceFilter by source
--limitMaximum results to return (default: 10)
--formatOutput format: pretty, json, markdown

Examples

Search by keyword:

/browse-fragments productivity

Filter by tag:

/browse-fragments --tag wisdom

Combine filters:

/browse-fragments habits --tag philosophy --category quotes

Export as JSON:

/browse-fragments --tag javascript --format json

Output Formats

Pretty (default)

📝 Fragment #42
"We are what we repeatedly do..."
└─ Source: Aristotle | Tags: #philosophy #habits

Markdown

> We are what we repeatedly do...
— Aristotle (#philosophy #habits)

JSON

{
"id": 42,
"content": "We are what we repeatedly do...",
"source": "Aristotle",
"tags": ["philosophy", "habits"]
}

Pro Tips

  • Use quotes for exact phrase matching: /browse-fragments "plant a tree"
  • Combine with other skills: search first, then use the fragment ID with other commands
  • Export to JSON for use in scripts or other tools