원클릭으로
effect
Work with Effect v4 / effect-smol TypeScript code in this repo
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Work with Effect v4 / effect-smol TypeScript code in this repo
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
DEEP multi-step research harness. Decomposes queries into sub-questions, executes parallel web searches via Pieces MCP, iteratively refines with gap detection, and synthesizes cited reports. Architecture inspired by GPT Researcher (27.6k stars), Vane/Perplexica (35.2k stars), and Gemini Deep Research. Use when user asks for deep research, investigation, analysis, comparison, or any task requiring exhaustive web research.
DEFAULT THINKING MODE — not a feature, but how the agent operates. Every task gets innovation-overdrive thinking: research, ground, reflect on contradictions, propose, then build. This is the agent's identity, not a command. Integrates MiMo-Code's 6-phase memory consolidation.
Chain execution manager: validates dependencies, enforces order, tracks violations. Use to verify that all required skill chains were executed and to get the correct execution order.
API design patterns, REST conventions, and endpoint standards. Use when creating or modifying API endpoints. Covers routing, request/response patterns, error handling, and versioning.
Architectural design, system patterns, and dependency management. Use when designing new modules, refactoring existing systems, or making architectural decisions. Covers layering, coupling, cohesion, and design patterns.
Trigger-driven automation definitions and runner management. Use when creating, running, or managing skill-based automation pipelines.
| name | effect |
| description | Work with Effect v4 / effect-smol TypeScript code in this repo |
This codebase uses Effect for typed, composable TypeScript services, schemas, and workflows.
Use the current Effect v4 / effect-smol source, not memory or older Effect v2/v3 examples.
.opencode/references/effect-smol is missing, clone https://github.com/Effect-TS/effect-smol there. Do this in the project, not in the skill folder..opencode/references/effect-smol for exact APIs, examples, tests, and naming patterns before answering or implementing Effect-specific code.Effect.gen(function* () { ... }) for multi-step workflows.Effect.fn("Name") or Effect.fnUntraced(...) for named effects when adding reusable service methods or important workflows.Schema for API and domain data shapes. Use branded schemas for IDs and Schema.TaggedErrorClass for typed domain errors when modeling new error surfaces.any, non-null assertions, unchecked casts, or older Effect APIs just to satisfy types..opencode/references/effect-smol or nearby code first.testEffect(...) from packages/opencode/test/lib/effect.ts for tests that exercise Effect services, layers, runtime context, scoped resources, or platform integrations.it.live(...) for filesystem, git repositories, HTTP servers, sockets, child processes, locks, real time, and other live platform behavior.packages/opencode; never run package tests from the repo root.