Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

repo-source-code-documentrepo 源代码文档

Agent Skill

repo-source-code-document 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

447

周安装

19

GitHub Stars

8,499

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:repo-source-code-document(repo 源代码文档)
来源仓库:https://github.com/open-circle/valibot
仓库路径:skills/repo-source-code-document
安装命令:
npx skills add https://github.com/open-circle/valibot --skill repo-source-code-document
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/open-circle/valibot --skill repo-source-code-document

简介

repo-source-code-document 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它能帮助 Agent 生成和维护源代码相关文档,提升开发效率。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,具体用法请参考原始 README。
  • 安装前建议确认权限范围和维护状态,注意是否触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Valibot Source Code Documentation

Documentation patterns for library source code in /library/src/.

JSDoc Patterns

Interface Documentation

/**
 * String issue interface.
 */
export interface StringIssue extends BaseIssue<unknown> {
  /**
   * The issue kind.
   */
  readonly kind: 'schema';
  /**
   * The issue type.
   */
  readonly type: 'string';
}

Rules:

  • First line: [Name] [category] interface. (e.g., "String issue interface.")
  • Property comments: The [description]. (always start with "The", end with period)
  • All properties use readonly
  • No blank lines between property and its comment

Function Overloads

Each overload gets its own complete JSDoc:

/**
 * Creates a string schema.
 *
 * @returns A string schema.
 */
export function string(): StringSchema<undefined>;

/**
 * Creates a string schema.
 *
 * @param message The error message.
 *
 * @returns A string schema.
 */
export function string<
  const TMessage extends ErrorMessage<StringIssue> | undefined,
>(message: TMessage): StringSchema<TMessage>;

Rules:

  • First line: Creates a [name] [category]. (use "a" vs "an" correctly)
  • Blank line after description
  • @param name The [description]. (start with "The", end with period)
  • Blank line after params
  • @returns A [name] [category]. or @returns The [description].

Hints

Add hints after the main description, before @param:

/**
 * Creates an object schema.
 *
 * Hint: This schema removes unknown entries. To include unknown entries, use
 * `looseObject`. To reject unknown entries, use `strictObject`.
 *
 * @param entries The entries schema.
 *
 * @returns An object schema.
 */

Links

Link to external resources when relevant using markdown format:

/**
 * Creates an [email](https://en.wikipedia.org/wiki/Email_address) validation action.
 */

Implementation Function

The implementation has NO JSDoc but uses // @__NO_SIDE_EFFECTS__:

// @__NO_SIDE_EFFECTS__
export function string(
  message?: ErrorMessage<StringIssue>
): StringSchema<ErrorMessage<StringIssue> | undefined> {
  return {
    /* ... */
  };
}

// @__NO_SIDE_EFFECTS__ rules:

  • Add for pure functions (no external state mutation, no I/O)
  • Most schema/action/method factories are pure
  • Do NOT add for functions that mutate arguments (like _addIssue)
  • Used by bundlers for tree-shaking

Utility Functions

/**
 * Stringifies an unknown input to a literal or type string.
 *
 * @param input The unknown input.
 *
 * @returns A literal or type string.
 *
 * @internal
 */
// @__NO_SIDE_EFFECTS__
export function _stringify(input: unknown): string {
  // ...
}

Rules:

  • Use @internal tag for internal utilities
  • Prefix internal functions with _
  • Only add // @__NO_SIDE_EFFECTS__ if function is pure

Inline Comment Patterns

Section Headers

'~run'(dataset, config) {
  // Get input value from dataset
  const input = dataset.value;

  // If root type is valid, check nested types
  if (Array.isArray(input)) {
    // Set typed to true and value to empty array
    dataset.typed = true;
    dataset.value = [];

    // Parse schema of each array item
    for (let key = 0; key < input.length; key++) {
      // ...
    }
  }
}

Rules:

  • Describe WHAT the next code block does
  • Present tense verbs: "Get", "Parse", "Check", "Set", "Add", "Create"
  • Omit articles ("the", "a", "an"): "Get input value" not "Get the input value"
  • No period at end
  • Blank line before comment, no blank line after

Conditional Logic

// If root type is valid, check nested types
if (input && typeof input === 'object') {
  // ...
}

// Otherwise, add issue
else {
  _addIssue(this, 'type', dataset, config);
}

Rules:

  • Use "If [condition], [action]"
  • Use "Otherwise, [action]" for else branches
  • Omit articles

Hint Comments (Exception)

// Hint: The issue is deliberately not constructed with the spread operator
// for performance reasons
const issue: BaseIssue<unknown> = {
  /* ... */
};

Rules:

  • Start with "Hint:"
  • Explain WHY, not just what
  • CAN use articles (unlike other inline comments)
  • Document performance decisions, non-obvious logic

TODO Comments

// TODO: Should we add "n" suffix to bigints?
if (type === 'bigint') {
  /* ... */
}

@ts-expect-error

Used for internal dataset mutations TypeScript can't track:

// @ts-expect-error
dataset.typed = true;

File Type Patterns

Schema Files (string.ts, object.ts, etc.)

  1. Issue interface with JSDoc
  2. Schema interface with JSDoc
  3. Function overloads with full JSDoc each
  4. Implementation with // @__NO_SIDE_EFFECTS__
  5. Return object with '~run' method containing inline comments

Action Files (email.ts, minLength.ts, etc.)

  1. Issue interface (for validation actions)
  2. Action interface with JSDoc
  3. Function overloads with JSDoc
  4. Implementation with // @__NO_SIDE_EFFECTS__

Method Files (parse.ts, pipe.ts, etc.)

More complex logic, require more inline comments.

Utility Files (_addIssue.ts, _stringify.ts)

  1. Single function with JSDoc including @internal
  2. // @__NO_SIDE_EFFECTS__ only if pure

Terminology Consistency

JSDoc descriptions must match the kind property if present:

kind PropertyJSDoc Wording
'schema'"Creates a... schema."
'validation'"Creates a... validation action."
'transformation'"Creates a... transformation action."

Quick Reference

JSDoc First Lines

TypePattern
Interface[Name] [category] interface.
Type[Name] [category] type.
FunctionCreates a [name] [category].
Utility[Verb]s [description].

Inline Comment Starters

PatternExample
// Get [what]// Get input value from dataset
// If [condition], [action]// If root type is valid, check nested types
// Otherwise, [action]// Otherwise, add issue
// Create [what]// Create object path item
// Add [what] to [where]// Add issues to dataset
// Parse [what]// Parse schema of each array item
// Set [property] to [value]// Set typed to true
// Hint: [explanation]// Hint: This is for performance
// TODO: [task]// TODO: Add bigint suffix

Terminology

Use consistently:

  • Schema (not "validator")
  • Action (not "validation" for the object)
  • Issue (not "error" in type names)
  • Dataset (internal data structure)
  • Config/Configuration (not "options")

Checklist

  • Interfaces: [Name] [category] interface.
  • Properties: The [description].
  • Overloads: Complete JSDoc each
  • Implementation: NO JSDoc
  • Pure functions: // @__NO_SIDE_EFFECTS__
  • Impure functions (mutate args): NO @__NO_SIDE_EFFECTS__
  • Internal utilities: @internal tag
  • Inline comments: No articles (except Hint), no periods
  • JSDoc comments: End with periods

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.41%
按下载量换算56

Claude

31.6%
按下载量换算50

Cursor

21.81%
按下载量换算34

Gemini CLI

8.92%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills