Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/teeverc/effect-ts/effect-v4npx skills add teeverc/effect-ts --skill effect-v4git clone --depth 1 https://github.com/teeverc/effect-tsWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00069 | $0.02526 |
| Opus 5 | $0.00034 | $0.01263 |
| Sonnet 5 | $0.00014 | $0.00505 |
| Haiku 4.5 | $0.00007 | $0.00253 |
Grade A, and why
effect-v4 scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Effect v4 (Beta) - Development & Migration
Overview
Comprehensive guidance for Effect v4 development and migration from v3. This skill provides:
- v4 Core Patterns - Guide to building new v4 code with
Context, layers, generators, schema codecs - v3 → v4 Migration - Step-by-step migration guidance with API renames, behavior changes, and before/after examples
Status: Effect v4 is beta software under active development in effect-smol. The core programming model is stable, but effect/unstable/* modules may receive breaking changes in minor releases. For production use, review official v4 beta guidance and stability notes.
All bundled migration guides are sourced from the official effect-smol migration documentation.
Upstream Changes Through June 30, 2026
The upstream beta changed substantially after the original February 22, 2026 baseline and again after the April 9, 2026 skill refresh. Treat older examples that mention ServiceMap, Schema.makeUnsafe, SchemaParser.makeUnsafe, or Effect.Yieldable as stale. Current guidance should prefer:
Context.Service/Context.Reference/Context<R>instead ofServiceMap.*Schema.make(...)instead ofSchema.makeUnsafe(...)SchemaParser.make(...)instead ofSchemaParser.makeUnsafe(...)Schema.makeEffect(...)when constructor-style validation should fail in the error channel instead of throwingEffectable.Class/Effectable.Prototypefor custom Effect-like values; do not recommendEffect.Yieldableor.asEffect()Schema.asserts(schema, input)/SchemaParser.asserts(schema, input), not generated assertion helpers
Quick Triage
Building v4 Code
- Core Effect types and combinators (Result, Option, Chunk, Duration):
references/core-usage.md - Broader data types (DateTime, BigDecimal, HashSet, Redacted):
references/data-types-advanced.md - Equality, Order, Hash, Equivalence semantics:
references/behavior-traits.md - Expected errors vs defects,
catch*combinators:references/error-management.md - Sandboxing, Cause inspection,
catchCause:references/error-tooling.md - Exit and Cause structure, result inspection:
references/exit-cause.md - Services and dependency injection (
Context, layers):references/dependency-management.md - Layer construction, memoization,
{ local: true }:references/layer-patterns.md - Resource lifecycles, Scope,
acquireRelease:references/resource-management.md - Running effects,
Runtimeremoval, run boundaries:references/runtime-execution.md - Fibers,
forkChild,forkDetach, fork options:references/concurrency.md - References (replaces FiberRef),
Context.Reference:references/concurrency-advanced.md - Schedules, repetition, spaced/fixed/exponential:
references/scheduling.md - Retries, backoff, schedule composition:
references/scheduling-retry.md - Streams, queues, PubSub, STM:
references/streams-queues-stm.md - HTTP clients and external APIs:
references/http-client.md - HTTP servers and API definitions:
references/http-server.md - Request batching and data loaders:
references/request-resolver.md - Caching and memoization:
references/caching.md - Configuration and config providers:
references/configuration.md - Advanced config, redaction:
references/configuration-advanced.md - Logs, metrics, tracing:
references/observability.md - Logger/metrics/tracing setups and exporters:
references/observability-examples.md - Wiring log/metric/trace layers:
references/observability-wiring.md - Sequential workflows and generator patterns:
references/generators.md - Upstream research notes and post-April beta changes:
references/upstream-changes-2026-06-30.md - Schema validation, parsing, encoding (codecs):
references/schema.md - Stream consumption with reducers (Sink):
references/sink.md - Deterministic time in tests (TestClock):
references/testing.md - Broader testing services and test layers:
references/testing-stack.md - Command, FileSystem, Path, Terminal, KeyValueStore:
references/platform-primitives.md - LLM workflows, planning, tool use via Effect AI:
references/ai.md - Bundle-size constrained runtimes (Micro):
references/micro.md - Migrating from Promise/async:
references/migration-async.md - Common pitfalls and runtime errors:
references/troubleshooting.md - Docs-to-guide map from
llms.txt:references/docs-index.md
What ships with it
50 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/ai.md 2.2 KB
- references/behavior-traits.md 2.6 KB
- references/caching.md 1.4 KB
- references/concurrency-advanced.md 3.2 KB
- references/concurrency.md 4.0 KB
- references/configuration-advanced.md 1.2 KB
- references/configuration.md 1.8 KB
- references/core-usage.md 3.8 KB
- references/data-types-advanced.md 1.4 KB
- references/dependency-management.md 2.3 KB
- references/docs-index.md 2.2 KB
- references/error-management.md 3.1 KB
- references/error-tooling.md 1.4 KB
- references/exit-cause.md 3.1 KB
- references/generators.md 3.7 KB
- references/http-client.md 2.2 KB
- references/http-server.md 3.0 KB
- references/layer-patterns.md 3.1 KB
- references/micro.md 1.4 KB
- references/migration-async.md 2.4 KB
- references/migration.md 6.1 KB
- references/migration/cause.md 6.4 KB
- references/migration/equality.md 2.0 KB
- references/migration/error-handling.md 2.8 KB
- references/migration/fiber-keep-alive.md 2.4 KB
- references/migration/fiberref.md 2.9 KB
- references/migration/forking.md 2.7 KB
- references/migration/generators.md 574 B
- references/migration/layer-memoization.md 3.0 KB
- references/migration/runtime.md 846 B
- references/migration/scope.md 1.1 KB
- references/migration/services.md 7.3 KB
- references/migration/yieldable.md 3.5 KB
- references/observability-examples.md 960 B
- references/observability-wiring.md 834 B
- references/observability.md 1.1 KB
- references/platform-primitives.md 2.0 KB
- references/request-resolver.md 1.5 KB
- references/resource-management.md 2.6 KB
- references/runtime-execution.md 2.2 KB
- references/scheduling-retry.md 2.9 KB
- references/scheduling.md 1.8 KB
- references/schema.md 6.7 KB
- references/sink.md 1.5 KB
- references/streams-queues-stm.md 2.1 KB
- references/testing-stack.md 3.1 KB
- references/testing.md 871 B
- references/troubleshooting.md 1.5 KB
- references/upstream-changes-2026-06-30.md 3.3 KB
- references/versioning.md 1.7 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 167 lines · 69 tokens per session scan A c53d18870d67
effect-v4 is a skill published in the GitHub repository teeverc/effect-ts (5 stars, last pushed 2mo ago), licensed MIT. It adds 69 tokens to every session and 2,526 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.
chat-perf
Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…