plugins/semble/skills/semble/SKILL.md
Semantic code search using the Semble MCP server. Use when exploring an unfamiliar codebase, finding code by what it does rather than exact text, locating an implementation, understanding how a feature works, or discovering related code. Triggers on requests like "where is X handled", "find the code that does Y", "how does Z work", "search the codebase for", or any semantic/exploratory code question where grep's literal matching is a poor fit.
npx skillsauth add pleaseai/claude-code-plugins sembleInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Semble finds code by meaning, not literal text. Describe what code does (or name a symbol) and Semble returns the most relevant chunks ranked by semantic similarity. It builds and caches an index automatically on first use and refreshes it when files change.
Prefer Semble over Grep/Glob/Read for any exploratory or semantic question. Reserve grep for exhaustive literal matches or confirming an exact string.
save_pretrained and let Semble surface every relevant usage and definition.This plugin provides the Semble MCP server, which exposes two tools.
mcp__semble__searchFind relevant code with a natural-language or code query.
query (required) — natural language or code, e.g. "authentication flow", "save model to disk", or a symbol like save_pretrained.repo (optional) — the project root to index. When working in a local project, pass the absolute project root. For remote code, pass an explicit https:// git URL. Never guess or infer URLs.top_k (optional, default 5) — number of results to return.The index is built on first use and cached for the session; it refreshes automatically when files change.
mcp__semble__find_relatedFind code semantically similar to a specific location — use after search to explore connected implementations or callers.
file_path (required) — use the file_path from a prior search result.line (required) — 1-indexed line number from that result.repo (optional) — same as above.top_k (optional, default 5).mcp__semble__search, passing the project root as repo; the index builds and caches automatically.Read) only when a returned chunk lacks enough context.mcp__semble__find_related on a promising result to explore connected implementations.uvx --from "semble[mcp]" semble, so uv must be installed. No API key is required.--content docs, --content config, or --content all to the server args to widen it.development
RTK (Rust Token Killer) reduces LLM token consumption by 60-90% by filtering and compressing command outputs. Use when user asks about token savings, token optimization, RTK usage, `rtk gain`, `rtk discover`, or `rtk proxy`. Triggers on mentions of token reduction, RTK commands, or checking command cost.
development
Get best practices for developing applications with Spring Boot.
development
Get best practices for JUnit 5 unit testing, including data-driven tests
development
Ensure that Java types are documented with Javadoc comments and follow best practices for documentation.