Community라이팅 & 에디팅github.com

itmada/MadaCode

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

MadaCode란 무엇인가요?

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

지원 대상~Claude Code~Codex CLI~Cursor
npx skills add itmada/MadaCode

Installed? Explore more 라이팅 & 에디팅 skills: steipete/notion, langchain-ai/langchain, bytedance/podcast-generation · View all 6 →

즐겨 사용하는 AI에게 물어보기

이 에이전트 스킬이 미리 로드된 새 채팅을 엽니다.

문서

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.

관련 스킬