소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 7월 3일 19:45
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill code-review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | code-review |
| description | Delly.Modeling 项目代码审查技能 Use when this capability is needed. |
| metadata | {"author":"delly-net"} |
Delly.Modeling 是一个 .NET 建模库,通过源代码生成器提供对象建模功能。
公共成员: 必须使用 /// 语法的 XML 文档注释
<summary> 和 <returns> 标签param 名称必须与方法签名中的实际参数名称完全匹配/// <summary>
/// 公共方法描述
/// </summary>
/// <param name="paramName">参数描述,必须匹配实际参数名</param>
/// <returns>返回值描述</returns>
public void MyMethod(string paramName)
私有成员: 仅使用 // 注释,在 // 后留一个空格
// 缓存属性信息
private PropertyInfo[]? _properties;
// ✅ 正确 - 单行
if (a) { b(); }
// ✅ 正确 - 多行(超过 120 字符)
if (veryLongConditionName && anotherVeryLongCondition)
{
ExecuteMethod();
}
// ❌ 错误 - 无大括号
if (obj == null)
return null;
object?#nullable enable 指令Models/*.cs 文件,使用条件编译同时支持 .NET Standard 2.0 和现代 .NETModel<T> 每个类型使用单个静态实例partial 类来接收生成代码obj/Generated 目录[Modelable] 属性标记需要建模的类GetProperties()、GetProperty()、SetProperty()Source: delly-net/Modeling — distributed by TomeVault.