CommunitySchreiben & Editierengithub.com

itmada/MadaCode

A Java-based coding agent that supports long-running tasks.

Was ist MadaCode?

MadaCode is a Claude Code agent skill that a Java-based coding agent that supports long-running tasks.

Funktioniert mit~Claude Code~Codex CLI~Cursor
npx skills add itmada/MadaCode

Installed? Explore more Schreiben & Editieren skills: steipete/notion, langchain-ai/langchain, bytedance/podcast-generation · View all 6 →

In Ihrer bevorzugten KI fragen

Öffnet einen neuen Chat, in dem dieser Agent-Skill bereits geladen ist.

Dokumentation

Simplify: Code Review and Cleanup

Review all changed files for reuse, quality, and efficiency. Fix any issues found.

Phase 1: Identify Changes

Run git diff (or git diff HEAD if there are staged changes) to see what changed.

Phase 2: Review

Code Reuse

  • Search for existing utilities that could replace new code.
  • Flag duplicate functionality — suggest the existing function.
  • Flag inline logic that could use an existing utility.

Code Quality

  • Redundant state or cached values that could be derived.
  • Copy-paste with slight variation — unify with a shared abstraction.
  • Unnecessary comments explaining WHAT the code does.
  • Raw strings where constants or enums already exist.

Efficiency

  • Redundant computations, repeated file reads.
  • Independent operations run sequentially when they could be parallel.
  • Unnecessary existence checks before operating (TOCTOU).

Phase 3: Fix

Fix each issue directly. If a finding is a false positive, note it and move on. When done, briefly summarize what was fixed (or confirm the code was already clean).

Preserve behavior. Prefer small mechanical refactors. Avoid unrelated rewrites.

Verwandte Skills