Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/CodySwannGT/lisa --skill lisa-parity-code-simplifier명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | lisa-parity-code-simplifier |
| description | Lisa-native, behavior-preserving… |
| allowed-tools | ["Read","Bash","Grep","Glob","Edit","Write"] |
| synced-from | code-simplifier@claude-plugins-official@1.0.0 |
Make the recently-changed code simpler and easier to maintain without changing what it does. This is a quality pass: deduplication, reuse, readability, and dead-code removal. It is explicitly not a bug hunt — if you spot a likely defect, note it for a reviewer (or parity-code-review) and leave the behavior intact.
Drift tracking. Pinned to
code-simplifier@claude-plugins-official@1.0.0.scripts/plugin-parity-drift.mjscompares this pin against the upstream version in the plugin cache and flags staleness. This is a Lisa-native reimplementation written from scratch — do not port or copy upstream plugin code.
Default to the current diff, not the whole repository. Establish scope first:
git merge-base HEAD origin/main 2>/dev/null && \
git diff --stat "$(git merge-base HEAD origin/main)"...HEAD
git diff HEAD --stat
git status --short
Simplify the files that changed and the immediate code they touch. Do not embark on a repo-wide refactor unless explicitly asked.
Every edit must be behavior-preserving. Before changing anything, understand the current contract — inputs, outputs, side effects, error paths, public signatures. After changing it, the observable behavior must be identical. When in doubt, don't — leave a note instead of risking a semantic change.
Grep/Glob) before introducing new code. If the project already has a helper for what the change hand-rolls, use it.map/filter/reduce) over mutable accumulation where it's clearer; remove redundant intermediate state.This repo enforces specific patterns — honor them so your simplification doesn't trip the linter or hooks:
let and in-place mutation; prefer const and pure transformations.const definitions; inline validation as if guard clauses (exempt from enforce-statement-order).-- description.index.ts, update the barrel in the same change so lint/typecheck stays green.plugins/lisa, plugins/lisa-*); the source of truth is plugins/src/.Edit/Write, one coherent change at a time.bun run test
bun run typecheck 2>/dev/null || true
bun run lint 2>/dev/null || true
If any check fails, fix or revert the offending edit before continuing. Never leave the tree worse than you found it.Summarize what you changed and why, grouped by file with file:line anchors: