Agent skill · Backend & API

morph-apply

Fast file editing via Morph Apply API (10,500 tokens/sec, 98% accuracy)

parcadeigithub.com/parcadeiGitHub ↗
claude-codecan modify filesMIT
Install
npx skills add parcadei/Continuous-Claude-v3 --skill morph-apply --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: BashRead
Path: .claude/skills/morph-apply/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,879
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 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

What's inside
Steps it walks through
  1. When to Use
  2. Key Pattern: Code Markers
  3. Usage
  4. Add error handling
  5. Add logging
  6. TypeScript example
  7. Parameters
  8. vs Claude's Edit Tool
  9. MCP Server Required
  10. Performance
Commands it runs
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');
More from Continuous-Claude-v3
All skills →
About this skill
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.

Keep going