소스 정보
- 저장소
- danshapiro/freshell
- 최근 소스 활동
- 2026년 7월 30일 15:33
- 감지된 SKILL.md 언어
- 영어
- 스타
- 96
- 포크
- 28
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/danshapiro/freshell --skill code-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when auditing stale worktrees in Freshell to determine which contain novel unmerged work, which should be landed, which need finishing, and which can be safely deleted.
Use when preparing a Freshell release — before bumping versions, writing release notes, tagging, etc on GitHub.
Use when reviewing, triaging, or landing pull requests — especially batches of open PRs that need inspection, fixes, and merging. Also triages open issues after the PR queue is clear.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | code-review |
| description | Review changed code for reuse, quality, and efficiency, then fix any issues found. |
| context | fork |
| disable-model-invocation | true |
| user-invocable | true |
| argument-hint | <repo-path> [expected-branch] [focus notes] |
| model_role | critique |
Review all changed files for reuse, quality, and efficiency. Fix any issues found — but only after Phase 0 verifies you are targeting the right repository.
You may be running as a forked sub-session: you inherit NO conversation history, and your working directory is NOT guaranteed to be the repository you were meant to review.
$ARGUMENTS for a target repo path and (optionally) an expected
branch. If a path is given: cd there, and prefix every git command with
git -C <path>.git rev-parse --show-toplevel, git branch --show-current,
git status --porcelain=v1 | head -20.git status shows uncommitted changes. You cannot attribute those
changes (you have no conversation history); they belong to someone
else. Reviewing-and-fixing them is corruption, not cleanup.Run git diff (or git diff HEAD if there are staged changes) to see what changed. If there are no git changes and $ARGUMENTS names specific files, review those; otherwise report "nothing to review" and stop.
Use the delegate tool to launch all three agents concurrently in a single message. Pass each agent the full diff so it has the complete context.
For each change:
Review the same changes for hacky patterns:
Review the same changes for efficiency:
If $ARGUMENTS is provided, all three agents should also pay special attention to: $ARGUMENTS
Wait for all three agents to complete. Aggregate their findings.
Fix issues directly ONLY when Phase 0 established a verified target: an
explicit path was provided (or the tree's only changes are attributable to
this session) AND any expected branch matched. Otherwise run in
REPORT-ONLY mode: write the aggregated findings to
<repo>/.discovery/code-review-findings-<timestamp>.md (or return them
inline), and make ZERO edits. Never write into a dirty tree whose changes
you cannot attribute.
If a finding is a false positive or not worth addressing, note it and move on — do not argue with the finding, just skip it.
When done, briefly summarize what was fixed (or confirm the code was already clean).