Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

effect-core效果核心

Agent Skill

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

总安装

47

周安装

2

GitHub Stars

7

下载量

16
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/andrueandersoncs/claude-skill-effect-ts --skill effect-core

简介

effect-core 是 Effect-TS 的核心 API 指南,涵盖 Effect 类型定义与组合范式。

  • 必须配合 Code Style 技能使用以确保代码规范性。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的 skill/effect-core 路径。
  • 所有代码示例均需遵循禁止类型断言与全局 Error 的使用规则。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Effect Core

CRITICAL: You MUST Follow the Code Style Skill

Before writing ANY Effect code, you MUST read and follow the Code Style skill (view on GitHub). This skill covers core APIs and composition only — the Code Style skill defines the mandatory patterns, forbidden anti-patterns, and idiomatic conventions that apply to ALL Effect code you produce. Every code example you generate must conform to those rules.

Overview

Effect is the foundational type in Effect-TS representing a computation that may succeed with value A, fail with error E, or require context R:

Effect<Success, Error, Requirements>;
// Also written as: Effect<A, E, R>

The key insight: Effects are descriptions of programs, not executed code. They must be explicitly run.

Creating Effects

From Synchronous Values

import { Effect } from "effect";

const success = Effect.succeed(42);

const failure = Effect.fail(new Error("Something went wrong"));

const lazy = Effect.sync(() => {
  console.log("Computing...");
  return Math.random();
});

// Sync that may throw (converts exception to typed error)
const mayThrow = Effect.try({
  try: () => someLegacyFunction(),
  catch: (error) => new LegacyError({ cause: error }),
});

// For JSON parsing, prefer Schema.parseJson (type-safe and validated)
const UserInput = Schema.parseJson(
  Schema.Struct({
    name: Schema.String,
    value: Schema.Number,
  }),
);
const parsed = Schema.decodeUnknown(UserInput)(userInput);

From Asynchronous Values

// From Promise (untyped error)
const fromPromise = Effect.promise(() => fetch("/api/data"));

// From Promise with typed error
const fromPromiseTyped = Effect.tryPromise({
  try: () => fetch("/api/data"),
  catch: (error) => new FetchError({ cause: error }),
});

Composing Effects

Sequential Composition with pipe

import { Effect, pipe } from "effect";

const program = pipe(
  Effect.succeed(1),
  Effect.map((n) => n + 1),
  Effect.flatMap((n) => Effect.succeed(n * 2)),
  Effect.andThen((n) => Effect.succeed(`Result: ${n}`)),
);

Generator Syntax (Recommended)

The generator syntax (Effect.gen) provides cleaner, more readable code:

const program = Effect.gen(function* () {
  const a = yield* Effect.succeed(1);
  const b = yield* Effect.succeed(2);
  const result = a + b;
  return `Sum: ${result}`;
});

Equivalent to:

const program = Effect.succeed(1).pipe(
  Effect.flatMap((a) => Effect.succeed(2).pipe(Effect.flatMap((b) => Effect.succeed(`Sum: ${a + b}`)))),
);

Running Effects

Effects are descriptions that must be run to produce values:

import { Effect } from "effect";

const program = Effect.succeed(42);

const result = await Effect.runPromise(program);

const syncResult = Effect.runSync(Effect.succeed(42));

const exit = await Effect.runPromiseExit(program);

Runtime Methods

MethodUse Case
Effect.runPromiseAsync effect → Promise (throws on failure)
Effect.runPromiseExitAsync effect → Promise (never throws)
Effect.runSyncSync effect → value (throws on async/failure)
Effect.runSyncExitSync effect → Exit (throws on async)

Key Composition Operators

map - Transform Success Value

Effect.succeed(5).pipe(Effect.map((n) => n * 2));

flatMap / andThen - Chain Effects

const getUser = (id: number) => Effect.succeed({ id, name: "Alice" });
const getPosts = (userId: number) => Effect.succeed([{ title: "Post 1" }]);

const program = getUser(1).pipe(Effect.flatMap((user) => getPosts(user.id)));

tap - Side Effects Without Changing Value

Effect.succeed(42).pipe(
  Effect.tap((n) => Effect.log(`Got value: ${n}`)),
  Effect.map((n) => n * 2),
);

all - Combine Multiple Effects

// Tuple of effects
const tuple = Effect.all([Effect.succeed(1), Effect.succeed("hello"), Effect.succeed(true)]); // Effect<[number, string, boolean], never, never>

// Object of effects
const obj = Effect.all({
  id: Effect.succeed(1),
  name: Effect.succeed("Alice"),
}); // Effect<{ id: number; name: string }, never, never>

Effect vs Promise Comparison

PromiseEffect
new Promise((resolve) => resolve(1))Effect.succeed(1)
Promise.reject(error)Effect.fail(error)
promise.then(f)effect.pipe(Effect.map(f))
promise.then(f) (f returns Promise)effect.pipe(Effect.flatMap(f))
Promise.all([...])Effect.all([...])
await promiseyield* effect (in Effect.gen)

Dual APIs

Most Effect functions support both "data-first" and "data-last" (pipeable) styles:

// Data-last (pipeable) - recommended
Effect.succeed(1).pipe(Effect.map((n) => n + 1));

// Data-first
Effect.map(Effect.succeed(1), (n) => n + 1);

Best Practices

Do

  1. Use Effect.gen for sequential code - More readable than nested flatMaps
  2. Use typed errors - Always define error types with Schema.TaggedError
  3. Use Schema.parseJson for JSON - Never use raw JSON.parse()
  4. Prefer data-last (pipeable) - Consistent with Effect ecosystem

Don't

  1. Don't mix async/await with Effect - Use Effect.promise at boundaries only
  2. Don't use try/catch - Use Effect.try or Effect.tryPromise
  3. Don't throw exceptions - Use Effect.fail with typed errors
  4. Don't use JSON.parse - Use Schema.parseJson with a schema

For the complete list of mandatory patterns, forbidden anti-patterns, and idiomatic conventions, see the Code Style skill (GitHub).

Additional Resources

For comprehensive documentation on all Effect APIs, patterns, and advanced usage, consult the full Effect documentation at ${CLAUDE_PLUGIN_ROOT}/references/llms-full.txt.

Search for these sections:

  • "Effect vs Promise" for migration patterns
  • "Getting Started" for installation and setup
  • "Basic Concurrency" for parallel execution
  • "Dual APIs" for function calling conventions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.38%
按下载量换算5

windsurf

25.26%
按下载量换算4

OpenCode

20.73%
按下载量换算3

Codex

11.79%
按下载量换算2

Antigravity

8.46%
按下载量换算1

Gemini CLI

3.43%
按下载量换算1

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills