eclipse-edit

File-editing tools for projects opened in Eclipse, the Java development environment. They update Eclipse editors, trigger incremental compilation, and keep local history so edits can be undone.

In plain words
What is it for?
Use them to apply patches, replace or insert text, create or delete files, format Java, organize imports, and undo edits.
Why use it?
They keep changes synchronized with Eclipse and provide safer, targeted ways to modify project files. This avoids editing files outside the workspace without Eclipse noticing.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/gradusnikov/eclipse-chatgpt-plugin/eclipse-edit
Any agent
npx skills add gradusnikov/eclipse-chatgpt-plugin --skill eclipse-edit
Clone the repo
git clone --depth 1 https://github.com/gradusnikov/eclipse-chatgpt-plugin

Made for: Claude Code, Codex.

Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,101 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00041 $0.01101
Opus 5 $0.00020 $0.00550
Sonnet 5 $0.00008 $0.00220
Haiku 4.5 $0.00004 $0.00110

Measured 3d ago against content hash 9cd7214f2ec6, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

eclipse-edit 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 3d 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.

.claude/skills/eclipse-edit/SKILL.md · 56 lines

How it starts

The opening of the file, as written. The whole thing — 56 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Eclipse Code Editing

Edit files in Eclipse workspace projects using the eclipse-coder MCP tools. These tools keep Eclipse editors synchronized, trigger incremental compilation, and maintain local history for undo.

Available Editing Tools

  • applyPatch — Atomically apply a unified diff after validating every hunk. It supports multiple hunks and fuzzy context matching, preserves the file's line delimiter, creates an undoEdit backup, and can show Eclipse's Apply Patch wizard with showDialog=true.
  • replaceString — Find and replace exact string. Good for single targeted changes. Optionally scoped to a line range.
  • insertIntoFile — Insert content before a specific line (1-based).
  • createFile — Create a new file and open it in the editor.
  • deleteFile — Delete a file from the project.
  • deleteLinesInFile — Delete a range of lines (1-based, inclusive).
  • replaceFileContent — Replace entire file content.
  • formatFile — Format a Java file using Eclipse's formatter (Ctrl+Shift+F).
  • organizeImports — Organize imports in a Java file (Ctrl+Shift+O).
  • organizeImportsInPackage — Organize imports across all files in a package.
  • undoEdit — Restore a file from Eclipse's local history.

Direct file edits return only after Eclipse has synchronized the saved resource, workspace notifications, cached content, JDT compilation unit (for Java files), and editor selection. Check the Workspace state line in the result for saved, cache/JDT state, and the final modification stamp.

Refactoring Tools

For Java files, prefer refactoring tools over manual rename/move — they update all references:

  • refactorRenameJavaType — Rename class/interface/enum with workspace-wide reference updates.
  • refactorMoveJavaType — Move type to different package with reference updates.
  • refactorRenamePackage — Rename package with all declaration and reference updates.
  • moveResource — Move file/folder (no reference updates — use refactorMoveJavaType for Java).

Read the full file on GitHub · 56 lines

Changes

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.

  1. 3d ago First seen · 56 lines · 41 tokens per session scan A 9cd7214f2ec6

Subscribe to this mod's changes

eclipse-edit is a skill published in the GitHub repository gradusnikov/eclipse-chatgpt-plugin (166 stars, last pushed 5d ago), licensed MIT. It adds 41 tokens to every session and 1,101 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

agentcore-investigation

Investigate Bedrock AgentCore runtime sessions via CloudWatch Logs Insights — resolve session/trace IDs, query OTEL spans, filter noise, build timelines. Use when debugging AgentCore agent sessions, tracing tool calls, or analyzing latency.

awslabs/mcp · 52 tokens

amazon aurora dsql

Deprecated compatibility redirect for Aurora DSQL guidance. Use when a request concerns DSQL, Aurora DSQL, distributed SQL, DSQL schemas, migrations, queries, authentication, performance, or application development.

awslabs/mcp · 46 tokens

investigate-issue

Investigate a GitHub issue by fetching details, analyzing the codebase, researching documentation, and presenting an actionable implementation plan with test guidance. Use when asked to investigate, analyze, triage, or plan work for a GitHub issue. Invoked with /investigate-issue or /investigate-issue (prompts for ID).

maximhq/bifrost · 78 tokens

api-validator

Scan Bifrost HTTP controllers/handlers/integrations and validate OpenAPI API coverage, route methods/paths, parameters, request/response docs, and auth/security information. Use when asked to audit missing or incorrect APIs, compare controllers against docs/openapi, validate auth information, or fix API documentation…

maximhq/bifrost · 78 tokens

resolve-pr-comments-stack

Resolve unresolved PR review comments across an entire Graphite (gt) stack of many PRs, bottom-up, in one working directory. Use when asked to "go through this stack and resolve comments", "clean up review comments across the whole stack", or given a list/range of PR numbers that form (or partially form) a gt stack.…

maximhq/bifrost · 99 tokens

add-pricing-field

Wire a new model-pricing field (a datasheet cost key like costperrequest, outputcostpervideopersecond720p, etc.) end-to-end through Bifrost's pricing engine - Options struct, DB table + migration, datasheet sync upsert columns, cost calculation, custom pricing overrides, public API, OpenAPI docs, MDX docs, and the UI…

maximhq/bifrost · 123 tokens