スキル一覧に戻る
guillempuche

effect-lookup

by guillempuche

Open-source AI coding skills for Claude Code, Cursor, Copilot, and AI agents

0🍴 0📅 2026年1月16日
GitHubで見るManusで実行

SKILL.md


name: effect-lookup description: Quick lookup for Effect TypeScript library APIs, patterns, and source code. Use when you need to find Effect functions, understand Effect patterns, or look up implementation details.

Effect Library Lookup

Quick reference for finding and understanding Effect TypeScript library APIs from the local git subtree at docs/effect/.

When to Use This Skill

Use this skill when:

  • Looking up Effect function signatures or implementations
  • Finding examples of Effect patterns (Effect.gen, Layer, Context, etc.)
  • Understanding how Effect modules work internally
  • Checking API availability or deprecation status
  • Learning Effect idioms from source code

How to Look Up Effect APIs

1. Use the Effect Docs MCP Server (Fastest)

The effect-docs MCP server provides indexed documentation:

mcp__effect-docs__effect_docs_search: Search for Effect concepts
mcp__effect-docs__get_effect_doc: Get specific documentation by ID

2. Search the Git Subtree Source

For implementation details, search the local source at docs/effect/:

# Find a specific function
grep -r "export const myFunction" docs/effect/packages/effect/src/

# Find usage patterns
grep -rn "Effect.gen" docs/effect/packages/effect/src/

# Find type definitions
grep -rn "interface MyType" docs/effect/packages/effect/src/

3. Read Source Files Directly

Core modules are at: docs/effect/packages/effect/src/<Module>.ts

Example: To understand Effect.map, read docs/effect/packages/effect/src/Effect.ts

Quick Reference

TaskReference
Module categoriesreferences/modules.md
Common patternsreferences/patterns.md

Package Structure

docs/effect/
├── packages/
│   ├── effect/               # Core Effect library
│   │   └── src/              # Source files (Effect.ts, Layer.ts, etc.)
│   ├── platform/             # Cross-platform utilities (HTTP, FileSystem)
│   ├── platform-node/        # Node.js platform implementation
│   ├── platform-browser/     # Browser platform implementation
│   ├── cli/                  # CLI building utilities
│   ├── sql/                  # SQL database utilities
│   ├── sql-pg/               # PostgreSQL implementation
│   ├── sql-kysely/           # Kysely integration
│   ├── rpc/                  # Remote procedure calls
│   ├── cluster/              # Distributed computing
│   ├── opentelemetry/        # OpenTelemetry integration
│   ├── experimental/         # Experimental features
│   └── ai/                   # AI integrations (OpenAI, Anthropic, etc.)

Core Modules Quick Lookup

Effect System

ModuleFilePurpose
EffectEffect.tsCore effect type and combinators
LayerLayer.tsDependency injection layers
ContextContext.tsType-safe service context
ScopeScope.tsResource management
RuntimeRuntime.tsEffect execution

Data Types

ModuleFilePurpose
OptionOption.tsOptional values
EitherEither.tsSuccess/failure values
ChunkChunk.tsImmutable arrays
HashMapHashMap.tsImmutable hash maps
HashSetHashSet.tsImmutable hash sets
ListList.tsImmutable linked lists

Concurrency

ModuleFilePurpose
FiberFiber.tsLightweight threads
QueueQueue.tsConcurrent queues
RefRef.tsMutable references
SemaphoreSemaphore.tsConcurrency limiting
PubSubPubSub.tsPublish/subscribe

Schema & Validation

ModuleFilePurpose
SchemaSchema.tsData validation & encoding
ParseResultParseResult.tsParsing results
ArbitraryArbitrary.tsProperty-based testing

Streaming

ModuleFilePurpose
StreamStream.tsEffectful streams
SinkSink.tsStream consumers
ChannelChannel.tsBidirectional streaming

Scheduling & Time

ModuleFilePurpose
ScheduleSchedule.tsRetry/repeat schedules
DurationDuration.tsTime durations
DateTimeDateTime.tsDate/time handling
ClockClock.tsTime service
CronCron.tsCron expressions

Configuration

ModuleFilePurpose
ConfigConfig.tsType-safe configuration
ConfigProviderConfigProvider.tsConfiguration sources

Common Lookup Patterns

Find Function Signature

# In Effect.ts, functions are well-documented with JSDoc
grep -A 20 "export const map" docs/effect/packages/effect/src/Effect.ts

Find Type Definition

# Look for interface or type alias
grep -n "interface Effect<" docs/effect/packages/effect/src/Effect.ts

Find Examples in Tests

# Tests often have practical examples
grep -rn "Effect.gen" docs/effect/packages/effect/test/

Check Platform APIs

# HTTP client/server
ls docs/effect/packages/platform/src/Http*.ts

# FileSystem
cat docs/effect/packages/platform/src/FileSystem.ts

External References

Tips for Effective Lookups

  1. Start with MCP search - Use effect_docs_search for conceptual questions
  2. Read JSDoc comments - Effect source has excellent inline documentation
  3. Check tests for examples - Test files show real usage patterns
  4. Use module tables above - Quickly navigate to the right source file
  5. Platform packages - HTTP, FileSystem, etc. are in @effect/platform

スコア

総合スコア

65/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です