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

repo-website-api-createrepo website API create 文档

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

519

周安装

21

GitHub Stars

8,470

下载量

163
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/open-circle/valibot --skill repo-website-api-create

简介

该技能用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。

  • 它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名或整理错误码。
  • 使用时需要确认真实业务语义、鉴权方式等规则,避免凭空补字段。
  • 安装前建议确认权限范围和维护状态,注意是否触发联网或文件读写操作。
  • repo-website-api-create 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Adding API Documentation to Website

Guide for creating new API reference pages at website/src/routes/api/.

Process Overview

  1. Read source code in /library/src/
  2. Create folder in /website/src/routes/api/(category)/[name]/
  3. Create properties.ts with type definitions
  4. Create index.mdx with documentation
  5. Update menu.md
  6. Create type documentation if needed (Issue, Schema/Action interfaces)

File Structure

website/src/routes/api/
├── (schemas)/string/
│   ├── index.mdx        # Documentation content
│   └── properties.ts    # Type definitions for Property component
├── (actions)/email/
├── (methods)/parse/
├── (types)/StringSchema/
└── menu.md              # Navigation (alphabetical order)

Categories: (schemas), (actions), (methods), (types), (utils), (async), (storages)

Reading Source Code

What to Extract

From /library/src/schemas/string/string.ts:

// 1. Issue interface → Document in (types)/StringIssue/
export interface StringIssue extends BaseIssue<unknown> { ... }

// 2. Schema interface → Document in (types)/StringSchema/
export interface StringSchema<TMessage extends ErrorMessage<StringIssue> | undefined>
  extends BaseSchema<string, string, StringIssue> { ... }

// 3. Function overloads → Main documentation
export function string(): StringSchema<undefined>;
export function string<const TMessage>(message: TMessage): StringSchema<TMessage>;

// 4. JSDoc → Description, hints, parameter docs
/**
 * Creates a string schema.
 *
 * Hint: This is an example hint.
 *
 * @param message The error message.
 *
 * @returns A string schema.
 */

JSDoc hints become blockquotes in the Explanation section:

> This is an example hint.

Extract for properties.ts

  • Generic parameters and constraints (e.g., TMessage extends ErrorMessage<...> | undefined)
  • Function parameters and types
  • Return type

properties.ts

Import and define properties matching source code:

import type { PropertyProps } from '~/components';

export const properties: Record<string, PropertyProps> = {
  // Generics (use modifier: 'extends')
  TMessage: {
    modifier: 'extends',
    type: {
      type: 'union',
      options: [
        {
          type: 'custom',
          name: 'ErrorMessage',
          href: '../ErrorMessage/',
          generics: [
            { type: 'custom', name: 'StringIssue', href: '../StringIssue/' },
          ],
        },
        'undefined',
      ],
    },
  },

  // Parameters (reference generic or direct type)
  message: {
    type: { type: 'custom', name: 'TMessage' },
  },

  // Return type
  Schema: {
    type: {
      type: 'custom',
      name: 'StringSchema',
      href: '../StringSchema/',
      generics: [{ type: 'custom', name: 'TMessage' }],
    },
  },
};

Optional Object Keys

For optional object keys from TypeScript source such as key?: string, do not append ? to the property name in properties.ts.

Use the plain key name and represent optionality in the value type with undefined as the last union option:

payload: {
  type: {
    type: 'object',
    entries: [
      {
        key: 'key',
        value: {
          type: 'union',
          options: ['string', 'undefined'],
        },
      },
    ],
  },
},

DefinitionData Types

TypeSyntax
Primitive'string', 'number', 'boolean', 'unknown', etc.
Literal string{type: 'string', value: 'email'}
Literal number{type: 'number', value: 5}
Custom/Named{type: 'custom', name: 'TypeName', href: '../TypeName/', generics: [...]}
Custom+modifier{type: 'custom', modifier: 'typeof', name: 'string', href: '../string/'}
Union{type: 'union', options: [type1, type2]}
Intersect{type: 'intersect', options: [type1, type2]}
Array{type: 'array', item: elementType}
Tuple{type: 'tuple', items: [type1, type2]}
Object{type: 'object', entries: [{key: 'name', value: type}]}
Function{type: 'function', params: [{name: 'x', type: t}], return: retType}
Template{type: 'template', parts: [{type: 'string', value: '>='}, otherType]}

index.mdx Template

---
title: functionName
description: One-line description from JSDoc.
source: /schemas/string/string.ts
contributors:
  - github-username
---

import { ApiList, Property } from '~/components';
import { properties } from './properties';

# functionName

Creates a string schema.

\`\`\`ts
const Schema = v.functionName<TMessage>(message);
\`\`\`

## Generics

- \`TMessage\` <Property {...properties.TMessage} />

## Parameters

- \`message\` <Property {...properties.message} />

### Explanation

With \`functionName\` you can validate... If the input does not match, you can use \`message\` to customize the error message.

## Returns

- \`Schema\` <Property {...properties.Schema} />

## Examples

The following examples show how \`functionName\` can be used.

### Email schema

Schema to validate an email.

\`\`\`ts
const EmailSchema = v.pipe(
v.string(),
v.nonEmpty('Please enter your email.'),
v.email('The email is badly formatted.')
);
\`\`\`

## Related

The following APIs can be combined with \`functionName\`.

### Schemas

<ApiList items={['array', 'object', 'string']} />

### Methods

<ApiList items={['parse', 'pipe', 'safeParse']} />

### Actions

<ApiList items={['email', 'minLength']} />

### Utils

<ApiList items={['isOfKind', 'isOfType']} />

Related section order: Schemas → Methods → Actions → Utils (omit empty sections)

Key Conventions

Naming

  • Schema variables: PascalCase + Schema suffix: EmailSchema, UserSchema
  • Action variables: PascalCase + Action: MinLengthAction
  • Parse output: output or descriptive name

Examples

  • Always include error messages for validation actions
  • Progress from simple to complex
  • Use realistic, practical scenarios
  • Start with import * as v from 'valibot'; pattern

Error Messages

Use friendly, actionable messages:

  • ✅ "Your password is too short."
  • ✅ "Please enter your email."
  • ❌ "Invalid" or "Error"

Links

  • Use href: '../TypeName/' for type references (with trailing slash)
  • Use <Link href="/api/parse/">\parse`in MDX prose (import from~/components`)
  • Link to related guides when relevant: <Link href="/guides/objects/">object guide</Link>

Update Related Files

menu.md

Add alphabetically to /website/src/routes/api/menu.md:

## Schemas

- [any](/api/any/)
- [newSchema](/api/newSchema/) ← Add here
- [string](/api/string/)

Related Sections of Other API Docs

Existing API pages have a ## Related section with <ApiList> components. When adding a new API, update related APIs to include the new one.

Rule: An API is "related" if:

  • It makes sense to use it as an argument of the other API, or vice versa
  • It makes sense to use them together in the same pipe (e.g., v.pipe(v.string(), v.email())string and email are related)

Examples:

  • string schema lists email action because they work together in a pipe
  • email action lists string schema because it validates string input
  • pipe method lists all schemas because any schema can be piped
  • minLength action lists string, array, tuple because it validates their length

Process:

  1. Review a few existing API docs in the same category to understand the pattern
  2. Check menu.md to identify potentially related APIs
  3. For each related API, edit its index.mdx and add the new API to the appropriate <ApiList>

Shortcut: If your new API is very similar to an existing one (e.g., guard is similar to check), add it everywhere the similar API appears. This ensures consistent coverage across all related docs.

Concept Guides

Add the new API to the appropriate guide in /website/src/routes/guides/:

API CategoryGuide to Update
Schema(main-concepts)/schemas/index.mdx
Action(main-concepts)/pipelines/index.mdx
Method(main-concepts)/methods/index.mdx

Also update topic-specific guides if relevant (e.g., (schemas)/objects/, (schemas)/arrays/, (advanced)/async/).

Type Documentation

Create pages for new types in (types)/:

  • Issue interfaces (e.g., StringIssue)
  • Schema/Action interfaces (e.g., StringSchema)

Type pages differ from function docs:

  • No source field in frontmatter
  • No Examples or Related sections
  • Use ## Definition instead of ## Returns

Type page structure:

---
title: StringSchema
description: String schema interface.
contributors:
  - github-username
---

import { Property } from '~/components';
import { properties } from './properties';

# StringSchema

String schema interface.

## Generics

- \`TMessage\` <Property {...properties.TMessage} />

## Definition

- \`StringSchema\` <Property {...properties.BaseSchema} />
  - \`type\` <Property {...properties.type} />
  - \`reference\` <Property {...properties.reference} />
  - \`expects\` <Property {...properties.expects} />
  - \`message\` <Property {...properties.message} />

Checklist

  • Read source file completely
  • properties.ts matches source types exactly
  • index.mdx signature matches source
  • All generics documented
  • All parameters documented
  • Examples are realistic with error messages
  • menu.md updated (alphabetically)
  • Related type pages created if needed
  • Related API docs updated (add new API to their ## Related sections)
  • Concept guide updated (schemas/pipelines/methods)
  • All href links valid with trailing slashes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.8%
按下载量换算58

Claude

30.32%
按下载量换算49

Cursor

20.05%
按下载量换算33

Gemini CLI

10.12%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills