Agent skill · Content & Marketing

toolfs-rag

Semantic search over vector databases for document retrieval. Use this skill when the user requests searching documents, finding relevant content, or performing semantic queries such as "Search for information about X", "Find documents related to Y", or "Query the knowledge base".

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill rag-icewhaletech-toolfs --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 1.0.0
Declared author: toolfs
Path: skills/ai-llm/rag-icewhaletech-toolfs/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

# ToolFS RAG Semantic search over vector databases for document retrieval. RAG (Retrieval-Augmented Generation) enables finding relevant documents and content based on semantic similarity rather than exact keyword matches. ## How It Works 1. **Vector Search**: Queries are converted to embeddings and compared against document vectors 2. **Similarity Scoring**: Results are ranked by semantic similarity scores 3. **Top-K Results**: Returns the most relevant documents up to the specified limit 4. **Metadata Filtering**: Results include metadata for context and filtering ## Usage ### Semantic Search **ToolFS Path:** ``` /toolfs/rag/query?text=<query_text>&top_k=<number> ``` **Parameters:** - `text` or `q`: The search query (URL-encoded) - `top_k`: Number of results to return (default: 5) **Example:** ```json GET /toolfs/rag/query?text=ToolFS%20skill%20architecture&top_k=3 // Response { "query": "ToolFS skill architecture", "top_k": 3, "results": [ { "id": "doc-001", "content": "ToolFS provides a skill system that supports WASM modules for sandboxed execution. Skills can be mounted to virtual paths and executed through the Skill API.", "score": 0.95, "metadata": { "source": "documentatio

What's inside
Steps it walks through
  1. How It Works
  2. Usage
  3. Semantic Search
  4. When to Use This Skill
  5. Query Parameters
  6. Result Structure
  7. Output Format
  8. Present Results to User
  9. Troubleshooting
  10. No Results Found
  11. Low Quality Results
  12. Best Practices
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the toolfs-rag skill do?

Semantic search over vector databases for document retrieval. Use this skill when the user requests searching documents, finding relevant content, or performing semantic queries such as "Search for information about X", "Find documents related to Y", or "Query the knowledge base".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill rag-icewhaletech-toolfs --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