소스 정보
- 저장소
- marin-community/marin
- 최근 소스 활동
- 2026년 7월 3일 20:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1,266
- 포크
- 147
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/marin-community/marin --skill lint-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Scheduled scrub: TL;DR blocks on experiment issues.
Launch, monitor, hand off, resume, rollback, or babysit expensive Marin production. Typically >=1e22 model flops.
Lint, run the pre-PR checks, commit, push, and author or update the branch's pull request in the required plain-text format. Use when committing, pushing, or creating/updating a PR.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | lint-review |
| description | In CI, run the infra/lint catalog review over a PR. |
| allowed-tools | Bash(./infra/pre-commit.py:*), Bash(gh pr comment:*), Bash(gh pr view:*), Bash(gh pr diff:*), Bash(gh api:*), Bash(git diff:*), Bash(git log:*), Bash(git show:*), Bash(git merge-base:*), Bash(git rev-parse:*), Bash(git status:*), mcp__github_inline_comment__create_inline_comment |
Run the infra/lint/ catalog review (./infra/pre-commit.py --review)
over a pull request's branch diff and surface every finding — as file:line
inline review comments where the finding's line is available, and as a
single fallback comment for the rest.
You are running the review and reporting its output. You are read-only except
for posting comments: never edit, stage, commit, push, or "fix" anything, and
never run a state-changing git/gh command. The review's own lane agents are
already locked read-only.
Report the findings faithfully. The --review run (its lanes + composer) is
the authority on what is a finding: post each surviving finding verbatim —
one comment per finding. Do not drop, merge, reword the substance of, soften,
re-judge, or invent findings. Silently losing a real finding is the one
unforgivable error; so is fabricating one.
Idempotency guard (only with --comment). Check whether this skill has
already posted on the PR: look for the marker <!-- marin-lint-review --> in
both issue comments (gh pr view <PR> --json comments) and inline review
comments (gh api repos/{owner}/{repo}/pulls/<PR>/comments --paginate). If the
marker is present, stop now — the PR already has a lint pass and we do not want
duplicate comments. Otherwise continue.
Run the review. From the repo root:
./infra/pre-commit.py --review
The command writes its raw per-arm prompts/outputs and the
combined findings under /tmp/marin-linter/<branch>/<timestamp>-<uniq>/ (path printed at the
end); read it if a run looks wrong.
Collect the findings. Each finding the command emits on stdout is one line in the canonical catalog format:
<path>:<line>: ml-<code> (<confidence>) <message>
e.g. lib/iris/src/iris/foo.py:42: ml-cruft-dead-branch (0.85) Unreachable else after early return.
No findings vs. failed run. Distinguish two zero-finding cases:
Lint review: no findings. (or
emitted no finding lines). Post nothing: the green job check is the "lint
pass clean" signal, and a second "all clear" comment would only duplicate the
high-level review. State "Lint review: no findings." to the terminal and stop.(Without --comment: just print the findings, if any, to the terminal and stop
here regardless.)
Post inline comments. With --comment and findings present, for each
finding post one inline comment with
mcp__github_inline_comment__create_inline_comment, the
finding's path and line, and a body of exactly this shape:
`ml-<code>` · confidence <confidence>
<message>
<!-- marin-lint-review -->
The <message> is copied verbatim from the finding. Post one comment per
finding; never post two comments for the same finding.
Handle un-anchorable findings. The inline-comment tool rejects a line that
is not part of the PR diff (it raises a validation error). A finding can land
on such a line — e.g. the holistic meta lane anchors on context outside the
added hunks. When a post fails for that reason, do not abort: record that
finding and keep going through the rest.
Fallback summary. After attempting every inline comment, if any findings
could not be placed inline, post one issue comment with gh pr comment <PR>
so none are dropped. Format:
Lint review:
These infra/lint findings anchor on lines not in the PR diff, so they could not
be attached inline.
- <path>:<line>: ml-<code> (<confidence>) <message>
- ...
<!-- marin-lint-review -->
List every un-anchorable finding verbatim. If every finding was placed inline, do not post this comment.
gh CLI for GitHub; do not web-fetch.origin/main,
covering committed and uncommitted work. CI checks out the PR head and fetches
origin/main before invoking you, so the merge base resolves.