skills/morph-search/SKILL.md
Fast codebase search via WarpGrep (20x faster than grep)
npx skillsauth add rubicanjr/FinCognis morph-searchInstall 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.
Fast, AI-powered codebase search using WarpGrep. 20x faster than traditional grep.
uv run python -m runtime.harness scripts/mcp/morph_search.py \
--search "authentication" --path "."
uv run python -m runtime.harness scripts/mcp/morph_search.py \
--search "def.*login" --path "./src"
uv run python -m runtime.harness scripts/mcp/morph_search.py \
--edit "/path/to/file.py" --content "new content"
| Parameter | Description |
|-----------|-------------|
| --search | Search query/pattern |
| --path | Directory to search (default: .) |
| --edit | File path to edit |
| --content | New content for file (use with --edit) |
# 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 "."
| Tool | Best For | |------|----------| | morph/warpgrep | Fast text/regex search (20x faster) | | ast-grep | Structural code search (understands syntax) |
Requires morph server in mcp_config.json with MORPH_API_KEY.
development
Goal-based workflow orchestration - routes tasks to specialist agents based on user goals
tools
Wiring Verification
development
Connection management, room patterns, reconnection strategies, message buffering, and binary protocol design.
development
Screenshot comparison QA for frontend development. Takes a screenshot of the current implementation, scores it across multiple visual dimensions, and returns a structured PASS/REVISE/FAIL verdict with concrete fixes. Use when implementing UI from a design reference or verifying visual correctness.