Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

arktypearktype 命令行

Agent Skill

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

总安装

216

周安装

9

GitHub Stars

1

下载量

72
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/thegreataxios/agent-skills --skill arktype

简介

arktype 是 TypeScript 原生验证库,通过字符串表达式定义强类型 schema 并提供运行时检查。

  • 适合替代 Zod 构建类型安全 API,支持 scopes、generics 与 match 模式匹配等高级特性。
  • 集成 ArkEnv 处理环境变量验证,ArkRegex 实现正则约束,提升配置可靠性。
  • 使用前应评估 JSON Schema 输出需求,若需生态兼容性则考虑其他方案。
  • arktype 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

ArkType Development

ArkType is a TypeScript-first validation library with powerful runtime type checking, scopes, generics, and pattern matching. Use this skill when defining schemas, validating data, or working with type-safe APIs.

When to Apply

Reference this skill when:

  • Defining type schemas for validation
  • Creating reusable type scopes and modules
  • Working with generics and constrained types
  • Pattern matching with match
  • Validating environment variables with ArkEnv
  • Type-safe regular expressions with ArkRegex
  • Converting to/from JSON Schema
  • Testing with Attest

Quick Reference

Type Definition Syntax

SyntaxUse CaseExample
StringConcise definitionstype({name: "string", age: "number >= 18"})
FluentChaining methodstype.string.atLeastLength(8).email()
TupleComplex/nestedtype(["string", ["number", "number"]])
ArgsOperators`type("string", "

Validation Results

MethodReturns
.validate(data)`{data: T}
.assert(data)Validated data or throws
Type as functionValidated data or type.errors instance

Key Operators

OperatorMeaning
``
&Intersection
> / >=Greater than (exclusive/inclusive)
< / <=Less than (exclusive/inclusive)
%Divisible by
? suffixOptional property
= suffixDefault value

Core Concepts

1. Type Definition

String Syntax (Most Concise)

const User = type({
  name: "string",
  age: "number.integer >= 0",
  email: "string.email",
  "role?": "'admin' | 'user' = 'user'"
})

Fluent API (Best for chaining)

const Password = type.string
  .atLeastLength(8)
  .describe("a valid password")

2. Scopes & Modules

Define a Scope

const types = scope({
  Id: "string",
  User: { id: "Id", name: "string" },
  "User[]": "User[]"
}).export()

3. Generics

Basic Generic

const boxOf = type("<t>", { value: "t" })
const StringBox = boxOf({ type: "string" })

Constrained Generic

const nonEmpty = type("<arr extends unknown[]>", "arr > 0")

4. Pattern Matching

import { match } from "arktype"

const sizeOf = match({
  string: v => v.length,
  number: v => v,
  default: "assert"
})

// Discriminated union matching
const getValue = match
  .in<{ id: 1 } | { id: 2 }>()
  .at("id")
  .match({
    1: o => o.value,
    2: o => o.other,
    default: "assert"
  })

ArkType Ecosystem

ArkEnv (Environment Variables)

import { arkenv } from "arkenv"

const env = arkenv({
  HOST: "string.host",
  PORT: "number.port",
  NODE_ENV: "'development' | 'production' | 'test' = 'development'"
})

// Fully typed - TypeScript knows exact types!
console.log(env.HOST)     // string
console.log(env.PORT)     // number
console.log(env.NODE_ENV) // "development" | "production" | "test"

ArkEnv Keywords

KeywordValidates
string.hostHostname
string.urlURL
number.portPort (1-65535)
string.emailEmail format
string.uuid.v4UUID v4

ArkRegex (Type-safe RegExp)

import { regex } from "arkregex"

const ok = regex("^ok$", "i")
// Regex<"ok" | "oK" | "Ok" | "OK", { flags: "i" }>

const semver = regex("^(\\d*)\\.(\\d*)\\.(\\d*)$")
// Regex<`${bigint}.${bigint}.${bigint}`, { captures: [bigint, bigint, bigint] }

const email = regex("^(?<name>\\w+)@(?<domain>\\w+\\.\\w+)$")
// Regex with typed groups: { name: string; domain: `${string}.${string}` }

Features

FeatureDescription
Type inferenceInfers capture types from pattern
Named groups.groups object is fully typed
Zero runtimeUses native RegExp at runtime
TS 5.9+Required for best experience

Attest (Testing)

import { attest, setup } from "@ark/attest"

setup()

it("type tests", () => {
  attest<string>(myType.infer)
  attest(myType.json).snap({ /* ... */ })
})

JSON Schema

// Type to JSON Schema
const schema = User.toJsonSchema()

// JSON Schema to Type
import { jsonSchemaToType } from "@ark/json-schema"
const T = jsonSchemaToType({ type: "string", minLength: 5 })

Common Patterns

Recursive Types

const Node = scope({
  Node: {
    value: "string",
    "children?": "Node[]"
  }
}).export().Node

Discriminated Unions

const Event = type({
  type: "'click'",
  x: "number",
  y: "number"
}).or({
  type: "'keydown'",
  key: "string"
})

Branded Types

const Even = type("number % 2").brand("even")
type Even = typeof Even.infer

How to Work

  1. Choose syntax: String for conciseness, fluent for chaining
  2. Define schema: Use type() for one-off, scope() for reusable
  3. Validate: Call type as function or use .assert()
  4. Handle errors: Check instanceof type.errors
  5. Export modules: Use .export() for public APIs

Related Resources

  • arktype: github.com/arktypeio/arktype
  • arkregex: Type-safe RegExp replacement
  • arkenv: Environment variables with ArkType
  • @ark/attest: Testing utilities
  • @ark/json-schema: JSON Schema conversion

Related Skills

  • typescript - TypeScript best practices

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.81%
按下载量换算24

Claude

31.8%
按下载量换算23

Cursor

19.56%
按下载量换算14

Gemini CLI

9.72%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills