morph-apply
Fast file editing via Morph Apply API (10,500 tokens/sec, 98% accuracy)
npx skills add parcadei/Continuous-Claude-v3 --skill morph-apply --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 Fast Apply Fast, AI-powered file editing using the Morph Apply API. Edit files without reading them first. Processes at 10,500 tokens/sec with 98% accuracy. ## When to Use - Fast file edits without reading entire file first - Batch edits to a file (multiple changes in one operation) - When you know what to change but file is large - Large files where reading would consume too many tokens ## Key Pattern: Code Markers Use `// ... existing code ...` (or language-appropriate comments) to mark where edits go: ```python # ... existing code ... try: result = process() except Exception as e: log.error(e) # ... existing code ... ``` The API intelligently places your edit in the right location. ## Usage ### Add error handling ```bash uv run python -m runtime.harness scripts/mcp/morph_apply.py \ --file "src/auth.py" \ --instruction "Add error handling to login function" \ --code_edit "# ... existing code ... try: user = authenticate(credentials) except AuthError as e: log.error(f'Auth failed: {e}') raise # ... existing code ..." ``` ### Add logging ```bash uv run python -m runtime.harness scripts/mcp/morph_apply.py \ --file "src/api.py" \ --instruction "Add debug logging" \ --code_edi
- When to Use
- Key Pattern: Code Markers
- Usage
- Add error handling
- Add logging
- TypeScript example
- Parameters
- vs Claude's Edit Tool
- MCP Server Required
- Performance
uv run python -m runtime.harness scripts/mcp/morph_apply.py \
user = authenticate(credentials)
except AuthError as e:
raise
if (!user) throw new Error('User not found');
if (!user.isActive) throw new Error('User inactive');What does the morph-apply skill do?
Fast file editing via Morph Apply API (10,500 tokens/sec, 98% accuracy)
How do I install it?
Run `npx skills add parcadei/Continuous-Claude-v3 --skill morph-apply --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,879 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.
