Agent skill

morph-search

Fast codebase search via WarpGrep (20x faster than grep)

parcadei3,879★ · 1 repos on radarProfile →
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill morph-search --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 2 KB
Bundled scripts: none
Allowed tools: BashRead
Path: .claude/skills/morph-search/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,885
Language: Python
Read our review of the source →

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

From the SKILL.md

# Morph Codebase Search Fast, AI-powered codebase search using WarpGrep. 20x faster than traditional grep. ## When to Use - Search codebase for patterns, function names, variables - Find code across large codebases quickly - Edit files programmatically ## Usage ### Search for code patterns ```bash uv run python -m runtime.harness scripts/mcp/morph_search.py \ --search "authentication" --path "." ``` ### Search with regex ```bash uv run python -m runtime.harness scripts/mcp/morph_search.py \ --search "def.*login" --path "./src" ``` ### Edit a file ```bash uv run python -m runtime.harness scripts/mcp/morph_search.py \ --edit "/path/to/file.py" --content "new content" ``` ## Parameters | Parameter | Description | |-----------|-------------| | `--search` | Search query/pattern | | `--path` | Directory to search (default: `.`) | | `--edit` | File path to edit | | `--content` | New content for file (use with `--edit`) | ## Examples ```bash # Find all async functions uv run python -m runtime.harness scripts/mcp/morph_search.py \ --search "async def" --path "./src" # Search for imports uv run python -m runtime.harness scripts/mcp/morph_search.py \ --search "from fastapi import" --path "."

What's inside
Steps it walks through
  1. When to Use
  2. Usage
  3. Search for code patterns
  4. Search with regex
  5. Edit a file
  6. Parameters
  7. Examples
  8. vs ast-grep
  9. MCP Server Required
Commands it runs
uv run python -m runtime.harness scripts/mcp/morph_search.py \
Find all async functions
Search for imports
More from Continuous-Claude-v3
All skills →
About this skill
What does the morph-search skill do?

Fast codebase search via WarpGrep (20x faster than grep)

How do I install it?

Run `npx skills add parcadei/Continuous-Claude-v3 --skill morph-search --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 parcadei/Continuous-Claude-v3, a repository with 3,885 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