agentsclimarketplace

Effect services layers

Skill theseus-run/theseus/.agents/skills/effect-services-layers

the harness rebuilds itself — agents rewrite agents, skills replace skills.

Install
npx -y skills add theseus-run/theseus --skill effect-services-layers

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when defining or wiring Effect services in Theseus, including Context.Service, service interfaces, Layer.effect/succeed/mergeAll/provideMerge, dependency graphs, runtime construction, and test seams.

SKILL.md

2.9 KB, as published. Nobody here has run it

Effect Services And Layers

Use this skill for replaceable dependencies and runtime wiring. Keep domain methods as effects and construction in layers.

Workflow

  1. Search current service/layer patterns before adding a new style.
  2. Inspect local Effect type declarations for unfamiliar Context or Layer APIs.
  3. Decide whether the dependency is a primitive contract, infrastructure adapter, runtime service, or test seam.
  4. Keep service interfaces free of construction details.

Service Shape

import { Context, Effect, Layer } from "effect"

interface UsersService {
  readonly find: (id: UserId) => Effect.Effect<User, UserNotFound>
}

export class Users extends Context.Service<Users, UsersService>()("Users") {}

export const UsersLive = Layer.effect(Users)(
  Effect.gen(function* () {
    const db = yield* Db
    return Users.of({
      find: (id) => db.queryUser(id),
    })
  }),
)

Rules:

  • This repo currently prefers Context.Service<Service, Shape>()("Name").
  • Do not cargo-cult Effect.Service unless local v4 types and repo patterns support it for the case at hand.
  • Declare service requirements in return types; do not hide them with any.
  • Use Layer.succeed(Service)(implementation) when the implementation already exists.
  • Use Layer.effect(Service)(effect) when construction needs effects or dependencies.
  • Compose same-level layers with Layer.mergeAll.
  • Use Layer.provideMerge when wiring dependencies into another layer while preserving provided services.
  • Avoid repeated Effect.provide inside hot paths; provide layers at composition boundaries.

Boundaries

  • Runtime services, clocks, random/id generation, stores, language models, and mutable context should be read from the Effect environment at execution time.
  • Constructors and factories may capture static configuration.
  • Constructors/builders should shape data and service values only. They should not perform I/O, allocate runtime resources, read config, call providers, or start fibers.
  • Runtime code should avoid ambient Date.now(), new Date(), Math.random(), and crypto.randomUUID(). Use services/layers or explicit injected providers; boundary adapters and tests may wrap those primitives.
  • Do not call Effect.runPromise or Effect.runSync inside services. Run effects at process, test, or script edges.
  • For test seams, provide alternate layers instead of conditionals inside production services.

Checks

  • Is this dependency replaceable in tests?
  • Does the service interface expose behavior, not its implementation backend?
  • Did layer wiring preserve requirements the caller still needs?
  • Did the change introduce a package dependency in the wrong direction?

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.