返回 Skill 列表
extension
分类: 开发与工程无需 API Key

effect-index

技能索引和决策指南。用于快速选择合适的特效技能,并遵循最简决策树。

person作者: jakexiaohubgithub

Effect Skill Index

Use this as a quick router to the right Skill for your task. Each entry links to a focused Skill optimized for a coding agent’s limited context.

Decision Tree

Cross-Skill Patterns

All patterns are now available locally in the Patterns Hub (130+ patterns):

Tip: For any "How do I...?" question, check the Patterns Hub decision tree first!

Local Source Reference

CRITICAL: Always search local Effect source before implementing

The full Effect source code is available at docs/effect-source/. Every Effect skill now includes a "Local Source Reference" section with:

  • Key source files for that skill's domain
  • Example grep commands to find implementations
  • Workflow for searching before coding

Quick Access to Source

  • All Effect packages: docs/effect-source/
  • Core library: docs/effect-source/effect/src/
  • Platform APIs: docs/effect-source/platform/src/
  • SQL: docs/effect-source/sql/src/
  • Schema: docs/effect-source/schema/src/

Example: Finding Effect.gen

grep -F "Effect.gen" docs/effect-source/effect/src/Effect.ts

Workflow Reminder

  1. Read the relevant skill (from decision tree above)
  2. Review the skill's "Local Source Reference" section
  3. Search the Effect source code for the API you need
  4. Study the implementation and types
  5. Write your code based on real implementations

See CLAUDE.local.md for complete source reference guide

References