소스 정보
- 저장소
- elie222/inbox-zero
- 최근 소스 활동
- 2026년 3월 17일 23:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 12,158
- 포크
- 1,517
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/elie222/inbox-zero --skill review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Create and complete GitHub pull requests. Use when the user asks to create, open, raise, or publish a PR; finish changes as a PR; monitor or babysit an existing PR; wait for review bots; or address PR review feedback and check failures. Covers review, safe commits and metadata, PR creation, exact-commit monitoring, automatic fixes, specific replies, and clean completion.
End-to-end feature testing — browser QA, API verification, eval tests, or any combination. Covers browser interactions (via agent-browser CLI), Google Workspace operations (gws CLI), API calls, and LLM eval tests. Can also persist checks as reusable automated tests.
Guidelines for testing the application with Vitest, including unit tests, integration tests (emulator), AI tests, and eval suites for LLM features
| name | review |
| description | Review code changes, auto-fix safe issues, and report bugs |
| disable-model-invocation | true |
Code review with craftsman's eye. Auto-fix obvious issues, surface real bugs.
Reference @AGENTS.md for project conventions. Apply those patterns as review criteria.
path/to/file.ts:123 format only| Category | What | Action |
|---|---|---|
| [BUG] | Logic errors, security, data loss, race conditions | Report → wait |
| [FIX] | Type gaps, missing error handling, test gaps, slop | Report → wait |
| [AUTO] | Unused imports, dead code, console.log, typos | Fix immediately |
| [CONSIDER] | Refactors, style opinions, nice-to-have | Mention only |
AUTO examples:
NOT AUTO (needs confirmation):
Always ask these questions during review:
_vars or // removed comments?components/ subfolder — we don't do that in route directories)apps/web/components/.validation.ts fileswithAuth or withEmailAccount?Awaited<ReturnType<typeof fn>>?LoadingContent for loading/error states?useAction from next-safe-action/hooks for form submissions?z.infer<typeof schema> instead of duplicate interfaces?logger.trace() for PII fields?.claude/skills/testing/SKILL.md?@/utils/logger?apps/web/utils/ai/reply/draft-attribution.ts DRAFT_PIPELINE_VERSION bumped for analytics?AGENTS.md or this review file?Inheritance Test: Would I curse the previous author? Understand at 2am?
Pride Test: Would I put my name on this?
Auto-detect: conversation changes → staged → current diff
git diff --cached --name-only # or HEAD
Group files by area/dependency:
Batch 1: apps/web/app/api/agent/* (3 files)
Batch 2: apps/web/app/(app)/[emailAccountId]/agent/* (related components)
Batch 3: apps/web/utils/actions/* (2 files)
Output: Found X files in Y batches
──────────
BEFORE reading any file content, create todo list:
- [ ] Batch 1: API routes (skills, allowed-actions)
- [ ] Batch 2: agent page components (agent-page, chat, tools)
- [ ] Batch 3: server actions (agent.ts, agent.validation.ts)
Use todo_write to track batches.
──────────
For each batch:
git diff --cached -- path/to/files)Issue format:
1. **[BUG]** Race condition in concurrent saves — `src/db.ts:45`
2. **[FIX]** Missing error boundary — `src/App.tsx:12`
3. **[CONSIDER]** Extract to custom hook — `src/Form.tsx:34`
After each batch:
Batch 1 done: AUTO: 2 fixed | BUG: 1 | FIX: 2
──────────
Total: BUG: X | FIX: X | CONSIDER: X (auto-fixed: Y)
Issues:
1. [BUG] ... — `path:line`
2. [FIX] ... — `path:line`
What to fix?
- a) BUG + FIX [recommended]
- b) BUG only
- c) All including CONSIDER
- d) Custom (e.g., "1,3")
I'll assume a) if you don't specify.
Learnings:
- Any patterns worth adding to AGENTS.md?
- Any new review checks to add to this file?
STOP. Wait for selection.
──────────
Process fixes batch-by-batch (same grouping):
BUG (Logic/Security):
FIX (Quality):
as any)CONSIDER (Opinions):
# Staged
git diff --cached
git diff --cached --name-only
# All uncommitted
git diff HEAD
git diff HEAD --name-only
| Error | Response |
|---|---|
| No changes | "Check git status or specify files" |
| File not found | List available, ask to specify |
| Binary files | Skip, mention in summary |
| Large file (>10k) | "Review specific sections?" |