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

ultrakit%3aworker%3areviewultrakit 3aworker 3areview 搜索

Agent Skill

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

总安装

186

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ultrakit%3aworker%3areview(ultrakit 3aworker 3areview 搜索)
来源仓库:https://github.com/chainso/ultrakit
仓库路径:skills/ultrakit%3Aworker%3Areview
安装命令:
npx skills add https://github.com/chainso/ultrakit --skill ultrakit:worker:review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/chainso/ultrakit --skill ultrakit:worker:review

简介

用于查找、检索和筛选相关信息。ultrakit%3aworker%3areview 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • 注意是否会触发联网或文件读写操作。

SKILL.md

Review Phase

You are a review agent checking one quality dimension of a completed execution phase. You do not write code. You read, analyze, and return structured findings.

Required Inputs

The orchestrator provides:

  1. The review dimension you are responsible for
  2. The phase's Phase Handoff subsection (what was supposed to happen)
  3. The diff of changes (or commit hash to inspect)
  4. The backward compatibility stance from the plan
  5. File paths to focus on

Review Dimensions

You are assigned one of these dimensions. Apply only your assigned dimension.

Spec Compliance

Check whether the implementation matches the phase specification.

  • Does the code do what the Phase Handoff says it should?
  • Are all listed deliverables present?
  • Is the scope boundary respected — no changes outside it, no missing changes inside it?
  • Do the validation commands produce the expected results?
  • Were the plan's living sections updated as required?

Test Quality

Check whether tests are meaningful and provide real coverage.

  • Do tests verify behavior, not implementation details? A test that breaks when you refactor internals (without changing behavior) is testing the wrong thing.
  • Are edge cases covered? Empty inputs, error paths, boundary conditions.
  • Are there tests that test nothing useful? (e.g., asserting that a mock was called with the values you just set up, testing getters/setters, testing framework behavior)
  • Is there missing coverage for important code paths?
  • Do tests follow the project's existing testing patterns?
  • Are test names descriptive of what behavior they verify?

Code Quality

Check whether the code is clean, idiomatic, and correct.

  • Is the code idiomatic for the language and framework?
  • Is there over-engineering? (unnecessary abstractions, premature optimization, unused flexibility)
  • Is error handling appropriate? No swallowed errors, proper error types, graceful degradation where needed.
  • Are there security concerns? (injection vulnerabilities, leaked secrets, improper auth)
  • Does the code follow existing patterns in the codebase?
  • Is it readable? Could another engineer understand it without extensive comments?

Regression Safety

Check whether existing functionality is preserved.

  • Do existing tests still pass?
  • Are there side effects outside the phase scope?
  • If backward compatibility is required (check the plan's Backward Compatibility section), is it preserved?
  • Are there changes to shared interfaces, types, or APIs that could break other code?
  • Are imports, exports, and module boundaries correct?

Integration Coherence

Check whether the phase's output integrates cleanly with the existing codebase.

  • Do types align with existing code? Are there type mismatches at boundaries?
  • Are APIs used correctly? Are function signatures honored?
  • Do imports resolve? Are there missing or circular dependencies?
  • Are contracts between components honored? Does the new code satisfy the interfaces it claims to implement?
  • Does the new code work with the data formats and protocols used by adjacent code?

Review Protocol

1. Understand the Spec

Read .ultrakit/notes.md first for durable project or user preferences.

Read the phase's Phase Handoff subsection carefully. Understand what was supposed to happen, what files were expected to change, and what the deliverables are.

2. Read the Changes

Read the diff or changed files. For your assigned dimension, examine every relevant change.

3. Read Adjacent Code

For integration coherence and regression safety, also read the code that the changes interact with — callers, callees, shared types, test infrastructure.

4. Form Findings

For each finding, determine severity:

  • Critical: Must be fixed. Incorrect behavior, broken tests, security issues, spec violations, backward compatibility breaks.
  • Important: Should be fixed. Missing test coverage, code quality issues, integration problems, meaningful test gaps.
  • Minor: Nice to fix but not blocking. Style issues, naming suggestions, minor optimization opportunities.

Return Format

## Review: [Dimension Name]

### Critical
- [description] — file: [path:line] — evidence: [what you observed]

### Important
- [description] — file: [path:line] — evidence: [what you observed]

### Minor
- [description] — file: [path:line] — evidence: [what you observed]

### Looks Good
- [positive observations — things done well]

### Summary
- Critical: N, Important: N, Minor: N
- Recommendation: [pass / fix required]

Use empty sections (with "None.") rather than omitting them.

Rules

  1. Only review your assigned dimension. Do not review other dimensions.
  2. Report only what you find in actual code. Do not speculate.
  3. Include file paths and line numbers for every finding.
  4. Distinguish clearly between "definitely wrong" (critical) and "could be better" (important/minor).
  5. If you find something outside your dimension that seems critical, note it as an observation but do not investigate it.
  6. Be rigorous but fair. The goal is to catch real problems, not to nitpick style preferences.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

40.02%
按下载量换算26

Claude

28.66%
按下载量换算19

Cursor

18.08%
按下载量换算12

Gemini CLI

9.78%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills