Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

devin-review-init德文审查初始化

Agent Skill

devin-review-init 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

269

周安装

11

GitHub Stars

公开资料未说明

下载量

87
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:devin-review-init(德文审查初始化)
来源仓库:https://github.com/yigitkonur/skill-devin-review-init
仓库路径:skills/devin-review-init
安装命令:
npx skills add https://github.com/yigitkonur/skill-devin-review-init --skill devin-review-init
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yigitkonur/skill-devin-review-init --skill devin-review-init

简介

该技能自动生成 Devin Review 所需 REVIEW.md 与 AGENTS.md 配置文件。

  • 通过分析实际仓库结构定制 bug 检测规则与分类标准。
  • 使 Bug Catcher 能识别项目特有模式与团队约定俗成的问题。
  • 输出文件需与现有 CONTRIBUTING.md 等文档保持术语一致。
  • devin-review-init 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Devin Review Configuration Generator

Generate optimal REVIEW.md and optionally AGENTS.md files by analyzing the actual repository — its structure, tech stack, patterns, documentation, and team conventions — then producing tailored review instruction files that make Devin's Bug Catcher catch real issues.

What Devin Review Is

Devin Review is an AI code review platform that hooks into GitHub PRs. It:

  1. Reads instruction files in the repo (REVIEW.md, AGENTS.md, CLAUDE.md, CONTRIBUTING.md, .cursorrules, .windsurfrules, *.rules, *.mdc)
  2. Analyzes diffs with the Bug Catcher, classifying findings as Bugs (severe/non-severe) or Flags (investigate/informational)
  3. Posts reviews with smart diff organization, copy/move detection, and inline comments synced to GitHub
  4. Supports auto-review on PR open, push, and ready-for-review events

The critical insight: REVIEW.md is the primary mechanism for customizing what Devin's Bug Catcher looks for. Well-written review guidelines make the difference between noise and catching real bugs. Devin reads REVIEW.md at any directory level (**/REVIEW.md), so you can scope guidelines to subdirectories in monorepos.

What Makes a Good REVIEW.md

Devin's Bug Catcher uses instruction files as context when analyzing PRs. The more specific and actionable your guidelines are, the more precise the Bug Catcher becomes. Key principles:

  1. Specific over vague — "All API endpoints must validate request body with Zod" beats "validate inputs"
  2. Actionable — The developer reading a flag should know exactly what to fix
  3. Prioritized — Lead with critical areas (security, auth, data integrity) so the Bug Catcher weighs them higher
  4. Code examples help — Good/bad patterns in fenced code blocks let the Bug Catcher match against actual anti-patterns
  5. Keep it under 500 lines — Overly verbose files dilute signal and slow AI parsing
  6. Flat structure — Use H2/H3 headers and bullet lists. Deep nesting reduces parsing accuracy

Workflow

Follow these four phases in order.

Phase 1: Explore the Repository

Before writing anything, map the territory. Use tools to answer:

  1. Structure — Monorepo or single-service? What are the top-level directories? Run: ls -la at root, look for packages/, apps/, services/, src/
  2. Tech stack — Languages, frameworks, ORMs, testing tools? Check: package.json, requirements.txt, go.mod, Cargo.toml, pyproject.toml Look at: tsconfig.json,.eslintrc, prettier config, Dockerfile
  3. Existing instruction files — Does the repo already have REVIEW.md, AGENTS.md, CLAUDE.md, CONTRIBUTING.md,.cursorrules? Search for: REVIEW.md, AGENTS.md, CLAUDE.md, CONTRIBUTING.md,.cursorrules,.windsurfrules If they exist, read them — you'll extend rather than replace
  4. Documentation — What context files exist? Search for: docs/, architecture.md, ADRs, openapi/, swagger/, prisma/schema.prisma
  5. Existing linting & CI — What does the toolchain already catch? Check:.eslintrc,.prettierrc, CI configs, pre-commit hooks Don't duplicate what linters already enforce
  6. Pain points — Look at recent PRs, issues, and git history for patterns Check: common bug patterns, frequently reverted commits, security incidents

Phase 2: Decide File Strategy

Which files to generate:

SituationFiles
Single-service repoRoot REVIEW.md
Monorepo with different review needs per packageRoot REVIEW.md + scoped REVIEW.md in subdirectories
Team using Devin for task execution tooRoot REVIEW.md + AGENTS.md
Repo already has CLAUDE.md or.cursorrulesRoot REVIEW.md (complement, don't duplicate existing files)

REVIEW.md vs AGENTS.md:

  • REVIEW.md — Review-specific guidelines: what to check, what to flag, what to ignore. Read by Bug Catcher during PR analysis.
  • AGENTS.md — Agent behavior instructions: coding style, architecture decisions, workflow patterns. Read by Devin during task execution (not just reviews).

If the user only mentions review/PR setup, generate REVIEW.md only. If they mention Devin task execution or agent behavior, also generate AGENTS.md.

Phase 3: Write the REVIEW.md

Structure the file using these sections. Include only sections relevant to the repo — don't pad with generic filler.

Recommended section order (the Bug Catcher weighs content near the top higher):

1. Critical Areas (always include)

What parts of the codebase need extra scrutiny. Be specific about paths and why.

## Critical Areas
- All changes to `src/auth/` must be reviewed for security implications — this handles JWT validation and session management.
- Database migration files in `prisma/migrations/` should be checked for backward compatibility and data loss risk.
- Payment processing in `src/billing/` requires review for PCI compliance — no PII in logs, idempotent mutations.

2. Conventions (always include)

Project-specific rules the Bug Catcher should enforce. These are the highest-value rules — make them specific and measurable.

## Conventions
- API endpoints must validate request bodies using Zod schemas from `src/schemas/`.
- All public functions require explicit TypeScript return types — do not use `any` or implicit returns.
- React components must be functional components with hooks, not class components.
- Use `next/image` for all images — never raw `<img>` tags.

3. Security (include if the repo handles auth, user data, or external APIs)

Security-specific rules that the Bug Catcher should flag as severe bugs.

## Security
- Never interpolate user input into SQL queries. Use parameterized queries via Prisma.
- API keys and secrets must never appear in source code — use environment variables.
- All API routes must check authentication. Never rely on client-side auth alone.
- Sanitize HTML output to prevent XSS. Use DOMPurify for user-generated content.

4. Performance (include if performance-sensitive)

Patterns to flag as investigate-level warnings.

## Performance
- Flag any database queries inside loops — use batch operations instead.
- Watch for N+1 query patterns in API resolvers and serializers.
- Large datasets must be paginated server-side, not fetched all at once.

5. Patterns (include code examples when the convention isn't obvious)

Good/bad code examples that the Bug Catcher can match against. Use fenced code blocks with clear labels.

## Patterns

### Error Handling
Every async function must handle errors explicitly.

**Good:**
\`\`\`typescript
async function getUser(id: string): Promise<User> {
  try {
    return await db.user.findUniqueOrThrow({ where: { id } });
  } catch (error) {
    logger.error('getUser failed', { id, error });
    throw new AppError('USER_NOT_FOUND', { cause: error });
  }
}
\`\`\`

**Bad:**
\`\`\`typescript
async function getUser(id: string) {
  return await db.user.findUnique({ where: { id } }); // no error handling, implicit any return
}
\`\`\`

6. Ignore (include to reduce noise)

Files the Bug Catcher should skip.

## Ignore
- Auto-generated files in `src/generated/` do not need review.
- Lock files (package-lock.json, yarn.lock, pnpm-lock.yaml) can be skipped unless dependencies changed.
- Migration files in `prisma/migrations/` are auto-generated — only review the schema changes.
- Test snapshots in `__snapshots__/` don't need review.

7. Testing (include if the repo has test requirements)

Testing conventions and coverage expectations.

## Testing
- All new API endpoints must have integration tests.
- Utility functions must have unit tests with edge cases.
- Test files must be co-located with source files (e.g., `utils.test.ts` next to `utils.ts`).

Phase 4: Validate and Output

Before outputting, verify:

  • REVIEW.md is under 500 lines (ideally 100-300)
  • No duplicate rules that existing linters already catch
  • Rules are specific and measurable, not vague platitudes
  • Critical/security sections are near the top
  • Code examples use the repo's actual language and framework patterns
  • Ignore patterns match the repo's actual generated/build directories
  • If CLAUDE.md or.cursorrules exist, REVIEW.md doesn't repeat their content
  • Monorepo subdirectory REVIEW.md files don't repeat root-level rules

Output format:

For every configuration you produce, include:

  1. File tree showing exactly which files go where and what each is for
  2. Each file as a complete markdown code block
  3. Reasoning annotations after each file explaining WHY each major section was included, referencing specific repo context
  4. Verification step — how to test the config works (open a test PR, use @greptileai review equivalent, or check the Devin Review dashboard)

Reference Files

Read these when you need detailed specifications or examples:

  • references/review-spec.md — Complete reference for REVIEW.md format, AGENTS.md format, all instruction files Devin reads, auto-review configuration, and Bug Catcher behavior. Read this when you need to check what Devin supports or how findings are classified.
  • references/scenarios.md — Complete example REVIEW.md files for different stack types (TypeScript backend, Next.js, Python Django, Tauri, MCP server, monorepo). Read these for inspiration, but always adapt to the actual repository — never copy verbatim.

Key Gotchas

  • REVIEW.md is read from any directory level (**/REVIEW.md) — use this for monorepo scoping
  • Devin also reads AGENTS.md, CLAUDE.md, CONTRIBUTING.md, .cursorrules, .windsurfrules, *.rules, *.mdc — check for conflicts
  • Auto-review triggers on PR open, push to PR, and when a draft is marked ready
  • The Bug Catcher classifies findings as: Bugs (severe, non-severe) and Flags (investigate, informational)
  • Keep REVIEW.md focused on review concerns — put coding/architecture standards in AGENTS.md or CLAUDE.md instead
  • Custom review rule file paths can be configured in Settings > Review, but **/REVIEW.md is always read by default

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.46%
按下载量换算30

Claude

31.37%
按下载量换算27

Cursor

20.97%
按下载量换算18

Gemini CLI

8.92%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills