npx skills add smithery/parcadei --skill morph-search
parcadei/continuous-claude-v3
morph-search
Fast codebase search via WarpGrep (20x faster than grep)
Installation
npx skills add parcadei/continuous-claude-v3 --skill morph-search
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Web search with full page content. Use when no URL is known: finding sources, articles, or news…
81.5K installsProduce an intensive, cited analytical report: executive summary, multi-angle findings, contrar…
33.8K installsFind and synthesize research papers, whitepapers, PDFs, technical reports, and academic sources…
32.8K installsExtract market, financial, earnings, industry, and company metrics with Firecrawl. Use when the…
32K installsSearch the web with LLM-optimized results via the Tavily CLI. Use this skill when the user want…
31.4K installsAlso in this package
Other skills from parcadei/continuous-claude-v3 · top by installs.
npx skills add parcadei/continuous-claude-v3
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Bash, ReadPackage contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,633 B -
docs
SUMMARY.md76 B
History
- First seen on skills.sh
- First recorded snapshot · 484 installs
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
uv run python -m runtime.harness scripts/mcp/morph_search.py \
--search "authentication" --path "."
Search with regex
uv run python -m runtime.harness scripts/mcp/morph_search.py \
--search "def.*login" --path "./src"
Edit a file
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
# 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 "."
vs ast-grep
| Tool | Best For |
|---|---|
| morph/warpgrep | Fast text/regex search (20x faster) |
| ast-grep | Structural code search (understands syntax) |
MCP Server Required
Requires morph server in mcpconfig.json with MORPHAPI_KEY.