Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

effect-foundations效果基础

Agent Skill

effect-foundations 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

549

周安装

22

GitHub Stars

5

下载量

178
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mepuka/effect-ontology --skill effect-foundations

简介

effect-foundations 提供 Effect 编码的快速参考清单,指导选择 map、flatMap 等操作符。

  • 适合在编写新 Effect 代码时快速决策。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的 skill/effect-foundations 路径。
  • 强调管道风格与显式错误上下文声明。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Effect Foundations & Style

Purpose: Provide a compact, go-to checklist for writing idiomatic Effect TypeScript with data-first pipe style, minimal imperative code, and strong typing. Optimized for a coding agent with limited context.

Triggers

  • New Effect implementation or refactor
  • Selecting map/flatMap/andThen/tap operators
  • Converting promise/callback to Effect

When to use

  • You’re unsure which operator to pick (map vs flatMap vs andThen vs tap)
  • You need a minimal template for sequential vs parallel code
  • You want to keep error and context channels explicit (Effect<E, A, R>)

Checklist (Do First)

  1. Prefer data-first .pipe() style for readability
  2. Use Effect.gen for sequential logic; Effect.all for parallelism
  3. Lift values with Effect.succeed, failures with Effect.fail
  4. Declare errors as Data.TaggedError and recover with catchTag(s)
  5. Keep effects small, composable, and typed—avoid any
  6. If R (requirements) is not never, provide layers explicitly

Minimal Patterns

  • Creation
const value = Effect.succeed(42)
const failure = Effect.fail(new MyError())
  • Transform
const result = value.pipe(
  Effect.map((n) => n * 2),
  Effect.tap((n) => Effect.log(`n=${n}`))
)
  • Sequential
const program = Effect.gen(function* () {
  const a = yield* getA()
  const b = yield* getB(a)
  return b
})
  • Parallel
const both = yield* Effect.all([left(), right()], { concurrency: "unbounded" })

Operator Selection Guide

  • Map value: Effect.map
  • Chain effect: Effect.flatMap
  • Ignore previous result: Effect.andThen
  • Side-effect only: Effect.tap
  • Provide context: Effect.provide/layers (see layers skill)
  • Combine layers: Layer.merge, Layer.provide

Key APIs (intuition)

  • Effect.gen: write sequential code with yield* for each Effect
  • Effect.all(values, {concurrency}): run independent Effects concurrently
  • Effect.catchTags(...): recover only specific typed errors
  • Layer.merge(a, b): compose dependencies once, reuse everywhere
  • Effect.runPromise(...): bridge Effects to async workflows

Real-world snippet: Branching with Match and TaggedError

import { Effect, Match, Data } from "effect"

class UnsupportedPlatformError extends Data.TaggedError("UnsupportedPlatformError")<{
  readonly platform: string
  readonly arch: string
}>{}

const detectPlatform = (rawPlatform: string, rawArch: string) => Effect.gen(function* () {
  const platform = yield* Match.value(rawPlatform).pipe(
    Match.when("darwin", () => Effect.succeed("darwin" as const)),
    Match.when("linux", () => Effect.succeed("linux" as const)),
    Match.orElse(() => Effect.fail(new UnsupportedPlatformError({ platform: rawPlatform, arch: rawArch })))
  )
  const arch = yield* Match.value(rawArch).pipe(
    Match.when("x64", () => Effect.succeed("x64" as const)),
    Match.when("arm64", () => Effect.succeed("aarch64" as const)),
    Match.when("aarch64", () => Effect.succeed("aarch64" as const)),
    Match.orElse(() => Effect.fail(new UnsupportedPlatformError({ platform: rawPlatform, arch: rawArch })))
  )
  return { platform, arch }
})

Recovery (Quick)

program.pipe(
  Effect.catchTag("DomainError", () => Effect.succeed(fallback)),
  Effect.catchAll((e) => Effect.fail(new WrappedError({ cause: e })))
)

Tooling Steps (with effect-engineer)

Pitfalls

  • Don't mix promises and effects—wrap with Effect.try/tryPromise
  • Don't return raw values inside Effect.gen—always yield* an Effect
  • Unsatisfied R requirements → provide layers or adjust architecture

Local Source Reference

CRITICAL: Search local Effect source before implementing

The full Effect source code is available at docs/effect-source/. Always search the actual implementation before writing Effect code.

Key Source Files

  • Core Effect: docs/effect-source/effect/src/Effect.ts
  • Layer: docs/effect-source/effect/src/Layer.ts
  • Data: docs/effect-source/effect/src/Data.ts
  • Match: docs/effect-source/effect/src/Match.ts

Example Searches

# Find Effect.gen implementation and patterns
grep -rF "Effect.gen" docs/effect-source/effect/src/

# Find all map/flatMap/andThen variants
grep -rF "export" docs/effect-source/effect/src/Effect.ts | grep -F "map"
grep -rF "export" docs/effect-source/effect/src/Effect.ts | grep -F "flatMap"
grep -rF "export" docs/effect-source/effect/src/Effect.ts | grep -F "andThen"

# Study error handling patterns
grep -rF "catchTag" docs/effect-source/effect/src/
grep -rF "catchAll" docs/effect-source/effect/src/
grep -rF "TaggedError" docs/effect-source/effect/src/

# Find Effect.all concurrency patterns
grep -rF "Effect.all" docs/effect-source/effect/src/

Workflow

  1. Identify the API you need (e.g., Effect.gen, Effect.all)
  2. Search docs/effect-source/effect/src/Effect.ts for the implementation
  3. Study the types, overloads, and patterns
  4. Look at test files in docs/effect-source/effect/test/ for usage examples
  5. Write your code based on real implementations

Real source code > documentation > assumptions

References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

25.43%
按下载量换算45

OpenCode

24.3%
按下载量换算43

Gemini CLI

16.71%
按下载量换算30

Antigravity

13.59%
按下载量换算24

windsurf

7.24%
按下载量换算13

trae

3.19%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills