Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

init-devin-review初始化德文评论

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

5

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息,适合根据关键词快速定位候选结果。

  • 可结合任务场景或来源线索进行信息聚合,支持技能库探索和匹配。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 安装命令为 npx skills add https://github.com/yigitkonur/skills-by-yigitkonur --skill init-devin-review。
  • 适用于 Codex、Claude、Cursor、Gemini CLI,需通过 GitHub 仓库安装。

SKILL.md

Init Devin Review

Generate Devin review configuration from repository evidence. REVIEW.md controls what Bug Catcher flags in diffs. AGENTS.md controls how Devin should behave while working in the repo. Default to the smallest configuration that meaningfully improves review quality.

Use this skill when

  • setting up Devin Bug Catcher for a repository
  • fixing noisy or weak REVIEW.md guidance
  • deciding whether the repo needs only REVIEW.md or both REVIEW.md and AGENTS.md
  • scoping review rules across packages or services in a monorepo

Core working rules

  • Start with the repository, not the scenario library.
  • Inspect existing instruction and context files before writing anything: matching **/REVIEW.md, **/AGENTS.md, **/CLAUDE.md, **/CONTRIBUTING.md, SECURITY.md, .cursorrules, .windsurfrules, agents/rules/**/*.md, .cursor/rules/**/*.mdc, .github/copilot-instructions.md, .coderabbit.yaml, .coderabbit.yml, greptile.json, CODE_OF_CONDUCT.md, .editorconfig, .github/CODEOWNERS, COMPLIANCE.md, and .devin/ config files.
  • Account for scoped instruction files inside agent-style subdirectories such as .agents/, .devin/, .cursor/, or .github/ when checking for overlap. Also read LICENSE for licensing context (do not duplicate its content).
  • Reuse the repo's real paths, libraries, commands, docs, and pain points. Never copy reference text verbatim.
  • REVIEW.md can live at the root or in scoped subdirectories. AGENTS.md can also be scoped, but default to one root file and add scoped AGENTS.md only when package-specific execution rules truly diverge.
  • Keep REVIEW.md focused on reviewable diff issues. Put coding workflow, architecture, and task-execution behavior in AGENTS.md only when needed.
  • Prefer one strong root REVIEW.md over many weak files. Keep root rules cross-cutting and add scoped REVIEW.md files only where review concerns truly diverge.
  • Do not encode formatter, linter, or CI rules unless Devin adds value beyond existing automation.

Required workflow

1. Scan the repo

Collect only the evidence needed to write grounded rules. Start by identifying the primary language and stack — this determines which artifacts, tools, and risk areas to look for.

Start by changing into the target repo root. If you are working from a shared fixture or sample repository, copy it to a scratch repo/worktree before writing REVIEW.md or AGENTS.md so the source fixture stays unchanged.

Language-detection routing:

DetectThen prioritize
go.mod or Makefile with Go targetsGo patterns in references/patterns/common-configurations.md
requirements.txt, pyproject.toml, manage.pyPython/Django patterns
package.json with TypeScriptTypeScript patterns
Cargo.tomlRust patterns
pom.xml or build.gradleJava/Kotlin patterns

How to scan:

find . -maxdepth 3 \( -name "REVIEW.md" -o -name "AGENTS.md" -o -name "CLAUDE.md" -o -name "CONTRIBUTING.md" -o -name ".cursorrules" -o -name ".windsurfrules" -o -name "*.rules" -o -name "*.mdc" -o -name ".coderabbit.yaml" -o -name ".coderabbit.yml" -o -name "greptile.json" \) | sort
find . -maxdepth 3 \( -name "*.md" -o -name "*.toml" -o -name "*.json" -o -name "*.yaml" \) | head -50
[ -f README.md ] && head -30 README.md
ls -la .github/ .cursor/ .windsurf/ .agents/ agents/ .devin/ 2>/dev/null
grep -r "lint\|format\|check" package.json Makefile pyproject.toml 2>/dev/null | head -20
  • Read the dependency manifest first: package.json, go.mod, requirements.txt/pyproject.toml, Cargo.toml, pom.xml
  • For monorepos (>5,000 files), limit deep scanning to top two directory levels plus any apps/, packages/, services/, cmd/, or internal/ subdirectories
  • Check for CI configuration: .github/workflows/, .gitlab-ci.yml, Jenkinsfile, Makefile
  • When root and scoped instruction files overlap, do not guess at undocumented precedence. Keep root files cross-cutting, make scoped files local, and remove contradictions instead of relying on overrides.

What to collect:

  • structure: single-service repo or monorepo; top-level directories (apps/, packages/, services/, cmd/, internal/, src/)
  • stack: primary language(s), frameworks, data/storage layer (ORM, direct DB, object storage, key-value stores), transport/runtime (HTTP framework, gRPC, message queues, CLI), test tooling (unit runner, integration, E2E, benchmarks)
  • existing instructions: matching **/REVIEW.md, **/AGENTS.md, **/CLAUDE.md, **/CONTRIBUTING.md, SECURITY.md, .cursorrules, .windsurfrules, agents/rules/**/*.md, .cursor/rules/**/*.mdc, .github/copilot-instructions.md, .coderabbit.yaml, .coderabbit.yml, greptile.json, CODE_OF_CONDUCT.md, .editorconfig, .github/CODEOWNERS, COMPLIANCE.md, and .devin/ config files. Read LICENSE for licensing context — don't duplicate its content.
  • contracts and docs: OpenAPI/Swagger specs, Prisma/Django/SQLAlchemy schema, go.mod, ADRs, architecture docs, security docs, design docs in docs/
  • enforcement already present: the repo's existing linters, formatters, CI, or SAST tools (e.g. Semgrep, Bandit, gosec, CodeQL) — check actual config files rather than assuming which tools are used
  • recurring risk areas: detect which apply by scanning for related code and config:

- grep -r "password\|secret\|token\|key\|credential" --include="*.env*" → secrets handling - find. -name "migrations" -o -name "migrate" → schema migration safety - grep -r "mutex\|lock\|sync\.\|goroutine\|thread" → concurrency patterns - grep -r "authorize\|permission\|role\|rbac\|pbac" → auth/permissions - Also check for: payment/billing modules, IPC/API boundaries, generated code, async task queues (Celery, BullMQ), distributed coordination (locks, consensus), data serialization boundaries - Systems-programming risks: goroutine/thread safety, race conditions, memory management (unsafe blocks, manual allocation), distributed coordination, file/network I/O error handling

2. Choose the file plan

SituationOutput
Single service or one shared review modelRoot REVIEW.md
Monorepo with cross-cutting rules plus package-specific risksRoot REVIEW.md + scoped REVIEW.md only in divergent directories
User asks for Devin coding or task behavior too, and one execution model fits the repoRoot REVIEW.md + root AGENTS.md
Repo has package-specific execution rules that would make one AGENTS.md contradictory or bloatedRoot REVIEW.md + root AGENTS.md, plus scoped AGENTS.md only in the divergent directories
Existing AGENTS.md or CLAUDE.md already covers coding behaviorUsually REVIEW.md only; extend or align instead of duplicating

Default to REVIEW.md only unless the request or repo evidence clearly calls for AGENTS.md.

When multiple rows match, choose the row that produces the least output. Start minimal — add scoped files later.

First deployment? Start with REVIEW.md only. Run 5 PRs. Audit findings. Then add AGENTS.md if needed.

3. Split concerns correctly

ConcernREVIEW.mdAGENTS.md
What Bug Catcher should flag in diffs
What files or changes to ignore
Coding standards, architecture, workflow, dependency choices
Test, run, or commit expectations for Devin

Rule of thumb: if the statement is about reviewing a diff, it belongs in REVIEW.md. If it is about how Devin or contributors should work, it belongs in AGENTS.md.

4. Draft from evidence

Before writing, find the closest scenario in references/scenarios.md and use it as your starting template. Adapt — don't copy.

If no scenario is a close fit, choose the nearest one by primary language/runtime and reuse only its section order and severity style. Drop stack-specific rules that do not match the repo instead of inventing new framework guidance from the template.

When writing REVIEW.md:

  1. Put high-signal sections near the top. Preferred order: Critical AreasSecurityConventionsPerformancePatternsIgnoreTesting.
  2. Reference real repo details in every important section: paths, middleware, libraries, commands, docs, or contracts.
  3. Use severity intentionally:

- severe bug language: must never, always required, prohibited - important but not always severe: use X instead of Y, do not - lower-priority guidance: prefer, consider, watch for

  1. Focus Good/Bad code examples on the top 2–3 highest-risk sections only — not every section needs them.
  2. Add an Ignore section using glob patterns (e.g., *.generated.*, **/migrations/, *_test.go, **/__pycache__/, dist/, *.lock) so generated files, lockfiles, build output, snapshots, and similar noise do not consume review bandwidth.
  3. Use the closest scenario from references/scenarios.md as structural inspiration for your stack, then rewrite every rule against actual repo evidence.

When writing AGENTS.md:

  • prefer one root file; add scoped AGENTS.md only when package-level workflow, architecture, or dependency rules truly diverge
  • keep root guidance cross-cutting and scoped guidance local to that subtree
  • focus on architecture, workflow, dependencies, file organization, testing, and communication expectations
  • do not restate bug-finding rules that already belong in REVIEW.md

Do this, not that

DoDon't
Extend or align with existing instruction filesOverwrite or contradict them blindly
Reference actual paths and libraries like src/auth/, openapi.yaml, portable-pty, rusqlite, NextAuth, or select_related()Write generic advice like "validate inputs" or "be secure"
Use scoped REVIEW.md only for real package or service differencesCopy the same root rules into every subdirectory
Check the repo's actual linter config to confirm what's enforced, then omit those rulesAssume ESLint/Prettier — the repo may use Biome, Ruff, or golangci-lint
Keep REVIEW.md compact, usually 100-300 lines and under 500 maxCram every possible rule into one file
Use scenario and pattern references as raw materialPaste scenario text verbatim

Validation checklist

Before returning any configuration, verify:

  • the front-loaded sections match the repo's highest-risk areas
  • rules are specific enough to test against a diff
  • no obvious overlap with the repo's existing linters, formatters, CI, or SAST tools
  • ignore patterns match actual generated and build files in the repo
  • monorepo scoped files add new package-specific guidance instead of duplicating root rules
  • AGENTS.md is only included when agent-behavior guidance is truly needed
  • no contradictions across overlapping REVIEW.md, AGENTS.md, CLAUDE.md, CONTRIBUTING.md, or editor/review rule files
  • REVIEW.md stays lean enough for Bug Catcher to focus

Output requirements

When asked to generate files, return:

  1. a short file plan or tree
  2. If filesystem access exists, write the files into the target repo first unless the user explicitly asked for draft-only output
  3. each file as a complete markdown block
  4. brief notes tying major sections to repository evidence
  5. a simple verification path: submit a test PR to see Bug Catcher's response, or use devinreview.com to preview rule behavior, or run npx devin-review locally — see references/setup/getting-started.md for setup details and references/customization/rules-and-exclusions.md for tuning exclusions after the first run

Recovery loops

  • Too much noise: shorten the file, add or expand Ignore, delete vague rules, and remove rules already enforced elsewhere. See references/customization/rules-and-exclusions.md and references/troubleshooting/common-issues.md.
  • Missing real bugs: move critical rules higher, add path-specific critical areas, tighten phrasing, and add repo-accurate examples. See references/review-md/format-and-directives.md and references/troubleshooting/common-issues.md.
  • Monorepo confusion: keep root rules cross-cutting; put only package-specific risks in scoped files; do not rely on precedence to resolve contradictions. See references/patterns/common-configurations.md and references/review-spec.md.
  • REVIEW.md vs AGENTS.md overlap: move diff-catching rules back to REVIEW.md; keep coding workflow in AGENTS.md. See references/agents-md/configuration.md.
  • Need a starting pattern for a known stack: use the closest scenario as inspiration, then rewrite it against the repo. references/scenarios.md covers TypeScript backends, Next.js sites and dashboards, Django APIs, Tauri apps, MCP servers, Python mcp-use, and monorepos.

Reference routing

NeedWorkflow phaseRead
instruction-file patterns, scoping boundaries, and review runtime behaviorStep 1 — scanning, Step 2 — planningreferences/review-spec.md
section order, phrasing, weighting, monorepo REVIEW.md behaviorStep 4 — draftingreferences/review-md/format-and-directives.md
AGENTS.md structure and file-split decisionsStep 2–3 — planningreferences/agents-md/configuration.md
noise reduction, exclusions, severity tuningRecovery / tuningreferences/customization/rules-and-exclusions.md
reusable security, performance, framework, and monorepo patternsStep 1 — scanning, Step 4 — draftingreferences/patterns/common-configurations.md
full stack examples to adapt, not copyStep 4 — draftingreferences/scenarios.md
noisy reviews, missed bugs, and triggering/debug issuesRecovery / tuningreferences/troubleshooting/common-issues.md
install, enrollment, and verification pathsSetup / verificationreferences/setup/getting-started.md

Final reminder

The best Devin review config is not the longest one. It is the smallest repo-grounded set of instructions that makes Bug Catcher focus on the bugs your team actually cares about.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.39%
按下载量换算28

Claude

28.13%
按下载量换算21

Cursor

19.82%
按下载量换算15

Gemini CLI

9%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills