local-ci-code-review — for Claude Code local-ci-code-review, skill-system-foundry, community, for Claude Code, ide skills, codex-ai-code-review-action, copilot-instructions.md, markdown.instructions.md, scripts.instructions.md, reasoning

v1.0.0

关于此技能

适用场景: Ideal for AI agents that need local ci code review skill. 本地化技能摘要: Meta-skill for building AI-agnostic skill systems with a two-layer architecture of skills and roles, templates, validation tools, and cross-platform authoring guidance based on the Agent Skills specification. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

功能特性

Local CI Code Review Skill
Step 1: Identify the Changes
Determine the diff to review:
Changes on current branch vs main (default)
git diff main...HEAD

# 核心主题

milanhorvatovic milanhorvatovic
[1]
[1]
更新于: 4/7/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
10/11
Quality Score
70
Canonical Locale
en
Detected Body Locale
en

适用场景: Ideal for AI agents that need local ci code review skill. 本地化技能摘要: Meta-skill for building AI-agnostic skill systems with a two-layer architecture of skills and roles, templates, validation tools, and cross-platform authoring guidance based on the Agent Skills specification. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

核心价值

推荐说明: local-ci-code-review helps agents local ci code review skill. Meta-skill for building AI-agnostic skill systems with a two-layer architecture of skills and roles, templates, validation tools, and cross-platform

适用 Agent 类型

适用场景: Ideal for AI agents that need local ci code review skill.

赋予的主要能力 · local-ci-code-review

适用任务: Applying Local CI Code Review Skill
适用任务: Applying Step 1: Identify the Changes
适用任务: Applying Determine the diff to review:

! 使用限制与门槛

  • 限制说明: Requires repository-specific context from the skill documentation
  • 限制说明: Works best when the underlying tools and dependencies are already configured

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

评审后的下一步

先决定动作,再继续看上游仓库材料

Killer-Skills 的主价值不应该停在“帮你打开仓库说明”,而是先帮你判断这项技能是否值得安装、是否应该回到可信集合复核,以及是否已经进入工作流落地阶段。

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

local-ci-code-review 是什么?

适用场景: Ideal for AI agents that need local ci code review skill. 本地化技能摘要: Meta-skill for building AI-agnostic skill systems with a two-layer architecture of skills and roles, templates, validation tools, and cross-platform authoring guidance based on the Agent Skills specification. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

如何安装 local-ci-code-review?

运行命令:npx killer-skills add milanhorvatovic/skill-system-foundry/local-ci-code-review。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

local-ci-code-review 适用于哪些场景?

典型场景包括:适用任务: Applying Local CI Code Review Skill、适用任务: Applying Step 1: Identify the Changes、适用任务: Applying Determine the diff to review:。

local-ci-code-review 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

local-ci-code-review 有哪些限制?

限制说明: Requires repository-specific context from the skill documentation;限制说明: Works best when the underlying tools and dependencies are already configured。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add milanhorvatovic/skill-system-foundry/local-ci-code-review。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    local-ci-code-review 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

local-ci-code-review

安装 local-ci-code-review,这是一款面向AI agent workflows and automation的 AI Agent Skill。查看评审结论、使用场景与安装路径。

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Local CI Code Review Skill

Runs a deep structured code review locally, applying the same methodology used by the codex-ai-code-review-action CI pipeline. Uses repository-specific guidance from .github/codex/review-reference.md and the review methodology defined below.

Step 1: Identify the Changes

Determine the diff to review:

bash
1# Changes on current branch vs main (default) 2git diff main...HEAD 3 4# Uncommitted changes (if no branch commits yet) 5git diff HEAD 6 7# Specific commit range (if provided) 8git diff <base>..<head>

If no scope is specified, default to main...HEAD.

List the changed files and note their types — file types determine which checklists apply in Step 3.

Step 2: Load Review Context

Read the repository-specific reference material and file-type instruction rules:

  • .github/codex/review-reference.md — repository-specific review guidance (conventions, Python script rules, workflow rules)
  • .github/copilot-instructions.md — Agent Skills format compliance, repository constraints, automated validation coverage, review focus areas
  • .github/instructions/markdown.instructions.md — documentation quality rules, description quality, progressive disclosure, file reference conventions
  • .github/instructions/scripts.instructions.md — Python script conventions, stdlib-only constraint, type hints, error handling, code organization rules

The review reference file provides repository-specific conventions — apply them alongside the methodology defined in this skill. The instruction files provide supplementary file-type-specific rules: apply copilot-instructions.md to all files, markdown.instructions.md when the diff includes **/*.md, and scripts.instructions.md when it includes skill-system-foundry/scripts/**/*.py.

Step 3: Review the Diff

Apply the review methodology from the loaded context. For each changed file:

  1. Identify the file type and select the matching checklist from the reference material (Python, Shell, Markdown, Workflow YAML).
  2. Trace data flow — follow values from input through parsing, transformation, and use.
  3. Check execution order — verify validation happens before use.
  4. Verify edge cases — empty arrays, zero, negatives, boundaries, missing optional fields.
  5. Connect schema to runtime — check if documented contracts are enforced.
  6. Check error propagation — verify callers handle failures.

For each finding, write the reasoning first, then assign priority and confidence.

Priority levels

PriorityScopeExamples
P0Critical bugs, security vulnerabilitiesData loss, injection, auth bypass, crash in mainline path
P1Correctness and robustnessOff-by-one, unhandled error path, race condition
P2Maintainability and styleMisleading name, duplicated logic, missing type hint
P3Minor improvementsWhitespace, comment wording, optional simplification

Confidence scoring

RangeMeaning
0.9–1.0Certain — code is demonstrably wrong or violates documented rule
0.7–0.9High — very likely based on context, depends on intent
0.5–0.7Moderate — plausible, could be intentional
0.3–0.5Low — possible concern, may be false positive
< 0.3Speculative — flag only if severe impact

Rules

  • Flag only issues introduced by the diff. Do not flag pre-existing problems.
  • Include findings at all priority levels — do not suppress low-priority findings.
  • Do not flag known limitations listed in the reference material.
  • Read the full source file when diff context is insufficient.

Step 4: Run the Self-Review Checklist

Before producing output, verify:

  1. Every changed file in the diff has been examined.
  2. The relevant file-type checklist was applied to each file.
  3. Data flow was traced for any new parsing, transformation, or validation logic.
  4. Edge cases were checked for new conditional branches or numeric conversions.
  5. If zero findings, each file's clean status can be explained.

Step 5: Report Findings

Produce a structured review matching the CI pipeline output format.

Output format

## Summary
[1-5 sentence description of what the changes do and why]

## Changes
- [Short bullet describing each logical change]

## Files
| File | Description |
|---|---|
| path/to/file | Short description of what changed |

## Findings

### P0 — Critical
[findings or "None"]

### P1 — Correctness
[findings or "None"]

### P2 — Maintainability
[findings or "None"]

### P3 — Minor
[findings or "None"]

## Verdict
**[patch is correct | patch is incorrect]** (confidence: X.XX)
[One-sentence rationale]

Finding format

For each finding:

[P{n}] {title}{path}:{line} (confidence: {score})

{body}

<details> <summary>Reasoning</summary> {reasoning — what was observed, why it is a problem, concrete impact} </details>
suggestion
1{exact replacement code, or omit block if null}

Metadata

After the verdict, append:

---
Findings: {total} ({skipped} below confidence threshold)
Model: {self-reported model identifier}
Review scope: {diff range used}

Rules

  • Empty findings is a valid outcome — a clean diff is not a failure to review.
  • Do not manufacture findings to justify the review.
  • Do not suggest alternative implementations unless the current one is clearly wrong.
  • Do not comment on style preferences without a documented convention backing them.

相关技能

寻找 local-ci-code-review 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

本地化技能摘要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

本地化技能摘要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

本地化技能摘要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

本地化技能摘要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
开发者工具