Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问许可证需确认审计通过

functional-typescriptfunctional TypeScript 命令行

Agent Skill

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

总安装

380

周安装

16

GitHub Stars

1

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mshindi-labs/agent-skills --skill functional-typescript

简介

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

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前顶部介绍已提供,底部简介为空,原始 SKILL.md 摘录缺失。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Functional TypeScript

Comprehensive guide to writing idiomatic functional TypeScript and JavaScript. Contains 20 rules across 7 categories, grounded in *You Don't Know JS Yet* by Kyle Simpson, extended with TypeScript type system patterns.

When to Apply

Reference these guidelines when:

  • Writing new TypeScript or JavaScript functions
  • Reviewing code for mutation, side effects, or imperative patterns
  • Designing module APIs or encapsulated state
  • Implementing data transformation pipelines
  • Handling errors and nullable values without exceptions or null checks

Rule Categories by Priority

PriorityCategoryImpactPrefix
1Core PrinciplesCRITICALcore-
2ImmutabilityCRITICALimmut-
3Closures & ScopeHIGHclosure-
4Function PatternsHIGHfn-
5Module PatternMEDIUM-HIGHmodule-
6TypeScript FP TypesMEDIUMtypes-
7Code StyleLOW-MEDIUMstyle-
8fp-ts LibraryHIGH (when fp-ts present)fp-ts-

Quick Reference

1. Core Principles (CRITICAL)

  • core-pure-functions — return same output for same inputs; no side effects
  • core-side-effect-isolation — functional core, imperative shell
  • core-referential-transparency — inject Date.now(), Math.random(), and other hidden inputs

2. Immutability (CRITICAL)

  • immut-avoid-mutation — never mutate arguments; use spread and map
  • immut-readonly-types — annotate params with Readonly<T> and readonly T[]
  • immut-const-assertion — use as const for literal types; prefer over enum
  • immut-spread-over-push — use toSorted, toReversed, spread instead of sort, push, splice

3. Closures & Scope (HIGH)

  • closure-encapsulate-state — closures for private state without classes
  • closure-loop-pitfall — use let (not var) in loops; prefer array methods
  • closure-memoize — memoize pure functions with closure-private cache

4. Function Patterns (HIGH)

  • fn-partial-application — pre-fill arguments; return specialised functions
  • fn-currying — one argument at a time; put config first, data last
  • fn-composition-pipe — replace nested calls with pipe
  • fn-higher-ordermap/filter/reduce over imperative loops
  • fn-point-free — pass function references directly; eliminate wrapper lambdas

5. Module Pattern (MEDIUM-HIGH)

  • module-iife-singleton — IIFE for single-instance modules with private state
  • module-factory — factory function for multiple independent instances
  • module-esm-private — export functions not raw state; unexported = private

6. TypeScript FP Types (MEDIUM)

  • types-resultResult<T, E> instead of throwing for expected errors
  • types-optionOption<T> to make absence explicit
  • types-discriminated-union — discriminated unions with exhaustiveness checking
  • types-type-guard — reusable x is T predicates; use with filter
  • types-hof-generics — type HOFs with generics; Transform<A,B>, Predicate<T>

7. Code Style (LOW-MEDIUM)

  • style-prefer-functions-over-classes — factory functions avoid this binding bugs
  • style-naming-conventions — verbs for functions, is/has for predicates, make/create for factories

8. fp-ts Library (HIGH — when fp-ts is present)

Apply when the codebase imports from fp-ts/*.

  • fp-ts-pipe-flowpipe for immediate transforms; flow for reusable functions
  • fp-ts-option-eitherOption<T> for absence; Either<E, A> for typed errors; accumulate all errors with getApplicativeValidation
  • fp-ts-taskeitherTaskEither<E, A> for async; tryCatch, chain, traverseArray, orElse, fold
  • fp-ts-do-notationDo + bind + apS + bindTo for multi-step workflows; bind when step depends on prior values, apS when independent

How to Use

Read individual rule files for detailed explanations and before/after examples:

rules/core-pure-functions.md
rules/immut-avoid-mutation.md
rules/fn-composition-pipe.md
rules/fp-ts-pipe-flow.md
rules/fp-ts-option-either.md
rules/fp-ts-taskeither.md
rules/fp-ts-do-notation.md

Each rule file contains:

  • Impact level and description
  • Incorrect code example with explanation
  • Correct code example with explanation
  • Real-world patterns and edge cases
  • Reference link

References

  • references/pragmatic-fp.md — 80/20 guide: when to use FP, when to skip it, common refactors
  • references/fp-typescript-types.md — TypeScript type system tools for FP
  • references/fp-ts-library.md — fp-ts API cheat sheet (pipe/flow, Option, Either, TaskEither, Do, RTE)
  • references/closures-and-partial-application.md — closures, currying, memoization
  • references/module-pattern.md — IIFE, factory, ESM encapsulation

Full Compiled Guide

For all rules expanded in one document: AGENTS.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.87%
按下载量换算50

Claude

28.8%
按下载量换算38

Cursor

18.63%
按下载量换算25

Gemini CLI

9.97%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/mshindi-labs/agent-skills --skill functional-typescript 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills