소스 정보
- 저장소
- andrem-sec/psc-comet
- 최근 소스 활동
- 2026년 4월 1일 00:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/andrem-sec/psc-comet --skill simplify명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | simplify |
| description | 3-agent parallel code review — reuse, quality, and efficiency — fixes issues found |
| version | 0.1.0 |
| level | 2 |
| triggers | ["/simplify","simplify this","clean up the code","review for quality"] |
| context_files | ["context/project.md"] |
| steps | [{"name":"Spawn Reviewers","description":"Launch 3 parallel agents — Reuse, Quality, Efficiency — each reviewing the changed code"},{"name":"Aggregate Findings","description":"Collect all findings from the 3 agents"},{"name":"Fix","description":"Fix each valid issue directly. Skip false positives without argument."},{"name":"Confirm","description":"Report what was fixed, or confirm the code was already clean"}] |
Runs 3 specialized review agents in parallel against recently changed code, then fixes every valid issue found. Used before creating PRs, after major implementations, or any time code quality needs a structured pass.
The batch skill calls this automatically before opening a PR — run it manually any time.
A single pass review misses issues that require focused attention. Reuse analysis requires scanning the whole codebase for existing utilities — a different cognitive task from quality review, which requires reading logic flow. Running all three simultaneously, each with a focused mandate, catches more in less time.
Spawn all three in a single message block for true parallelism.
Focus: find code that duplicates something that already exists.
Focus: structural and semantic anti-patterns.
Focus: unnecessary work and missed concurrency.
Agent 1 prompt:
You are a code reuse reviewer. Review the recently changed files for duplicated logic
and missed opportunities to use existing utilities. [list changed files + relevant context]
Report each finding as: FILE:LINE — description — suggested fix
Agent 2 prompt:
You are a code quality reviewer. Review the recently changed files for structural and
semantic anti-patterns. [list changed files + relevant context]
Report each finding as: FILE:LINE — description — suggested fix
Agent 3 prompt:
You are an efficiency reviewer. Review the recently changed files for unnecessary work
and missed concurrency opportunities. [list changed files + relevant context]
Report each finding as: FILE:LINE — description — suggested fix
All three are subagent_type: "general-purpose", read-only (no writes — findings only).
After collecting all findings:
Simplify complete — [N] issues fixed, [N] false positives skipped
Fixed:
- auth/session.ts:147 — extracted hashPassword() to utils/crypto.ts (reuse)
- components/Form.tsx:23 — removed redundant useMemo (efficiency)
Clean: api/routes.ts (no issues found)
If nothing was found: "Code is clean — no issues found by any reviewer."
Do not run the three agents sequentially. They must run in parallel (single message block).
Do not fix issues that require understanding business logic without surfacing them to the user.
Do not argue with false positives. Skip them and move on.