Claude Code Plugins

Community-maintained marketplace

Feedback

effect-index

@mepuka/crate
0
0

Skill index and decision guide. Use to pick the right Effect Skill quickly and follow a minimal decision tree.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name effect-index
description Skill index and decision guide. Use to pick the right Effect Skill quickly and follow a minimal decision tree.
allowed-tools Read, Grep, Glob, Edit, Write

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