Effect services layers
Skill theseus-run/theseus/.agents/skills/effect-services-layers
the harness rebuilds itself — agents rewrite agents, skills replace skills.
npx -y skills add theseus-run/theseus --skill effect-services-layersAssembled 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
- Search current service/layer patterns before adding a new style.
- Inspect local Effect type declarations for unfamiliar
ContextorLayerAPIs. - Decide whether the dependency is a primitive contract, infrastructure adapter, runtime service, or test seam.
- 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.Serviceunless 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.provideMergewhen wiring dependencies into another layer while preserving provided services. - Avoid repeated
Effect.provideinside 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(), andcrypto.randomUUID(). Use services/layers or explicit injected providers; boundary adapters and tests may wrap those primitives. - Do not call
Effect.runPromiseorEffect.runSyncinside 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?