Borrowing it
Nothing to install: this file belongs to anortham/julie. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/anortham/julie/main/.agents/skills/editing/SKILL.mdgit clone --depth 1 https://github.com/anortham/julieWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/anortham/julie/editing)<a href="https://agentmods.dev/skills/anortham/julie/editing"><img src="https://agentmods.dev/badge/skills/anortham/julie/editing.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00062 | $0.01125 |
| Opus 5 | $0.00031 | $0.00562 |
| Sonnet 5 | $0.00012 | $0.00225 |
| Haiku 4.5 | $0.00006 | $0.00112 |
Grade A, and why
editing scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
Copies of this mod
1 near-identical copy found in the catalogue:
- editing — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Editing Files with Julie
Julie's edit tools change existing files without reading them first. This is the default path for file modifications.
Which tool do I use?
- Creating a new file? Use the Write tool. This skill doesn't apply.
- Renaming a symbol across the workspace? Use
rename_symbol, the semantic path. It understands scope, updates references, and surfaces conflicts. - Changing one symbol (function, struct, class, method)? Use
deep_diveto understand it, thenrewrite_symbolto change it. - Changing arbitrary text in a file? Use
edit_filewithold_textandnew_text. - Need to understand the file first? Use
get_symbolsfor structure ordeep_divefor full context, then userewrite_symbol. Not Read.
Stop and check
If you catch yourself thinking any of these, you're about to waste tokens:
| Thought | What to do instead |
|---|---|
| "I need to read the file first" | No. edit_file uses DMP fuzzy matching on old_text. rewrite_symbol resolves a symbol by name. Neither needs Read. |
| "It's a quick change" | edit_file handles that well. edit_file(old_text=..., new_text=..., dry_run=true) is the fast path. |
| "I'm not sure which symbol I need" | Use fast_search, get_symbols, or deep_dive, then use rewrite_symbol. Still no Read + Edit loop. |
| "This isn't a code file" | edit_file works on ANY text file: YAML, TOML, Markdown, .gitignore, configs, everything. |
| "The symbol edit is complex" | Use dry_run=true first. If the symbol shape or operation does not fit, fall back to edit_file. |
Workflow
- Always preview first:
dry_run=true(the default). Review the diff. - Then apply: same call with
dry_run=false.
rewrite_symbol (for code symbols)
replace_fullswaps an entire symbol definitionreplace_bodyrewrites only the bodyreplace_signaturerewrites only the signatureinsert_beforeadds content before the symbolinsert_afteradds content after the symboladd_docadds a doc block ahead of the symbolfile_pathnarrows the match when multiple symbols share a name
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 87 lines · 62 tokens per session scan A 02ff1685e720
editing is a skill published in the GitHub repository anortham/julie (6 stars, last pushed 18d ago), licensed MIT. It adds 62 tokens to every session and 1,125 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
babysit-pr
Babysit a GitHub pull request after creation by continuously polling review comments, CI checks/workflow runs, and mergeability state until the PR is merged/closed or user help is required. Diagnose failures, retry likely flaky failures up to 3 times, auto-fix/push branch-related issues when appropriate, and keep…