npx skills add parcadei/Continuous-Claude-v3 --skill morph-search --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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 "."
- When to Use
- Usage
- Search for code patterns
- Search with regex
- Edit a file
- Parameters
- Examples
- vs ast-grep
- MCP Server Required
uv run python -m runtime.harness scripts/mcp/morph_search.py \ Find all async functions Search for imports
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.