Alchemy Effect is an Infrastructure-as-Effects (IaE) framework that extends Infrastructure-as-Code (IaC) by combining business logic and infrastructure config into a single, type-safe program expressed as Effects.
It includes a core IaC engine built with Effect. Effect provides the foundation for type-safe, composable, and testable infrastructure programs. It brings errors into the type-system and provides declarative/composable retry logic that ensure proper and reliable handling of failures.
- Cloud Provider - a cloud provider that offers a set of Services, e.g. AWS, Azure, GCP, Cloudflare, Stripe, Planetscale, Neon, etc.
- Service - a collection of Resources, Functions, and Bindings offered by a Cloud Provider.
- Resource - a named entity that is configuted with "Input Properties" and produces "Output Attributes". May or may not have Binding Contract.
- Input Properties - the properties passed as input to configure a Resource. Otherwise known as the "desired state" of the Resource.
- Output Attributes - the attributes produced by a Resource. Otherwise known as the "current state" of the Resource.
- Stable Properties - properties that are not affected by an Update, e.g. the ID or ARN of a Resource.
- Function (aka. Runtime) - a special kind of Resource that includes a runtime implementation expressed as a Function producing an
Effect<A, Err, Req>. TheReqtype captures runtime dependencies, from which Infrastructure Dependencies are inferred. - Resource Provider (see Provider)
A Resource Provider implements the following Lifecycle Operations:
- Diff - compares new props with old props and determines if the Resource needs to be updated or replaced. For updates, it can also specify a list of Stable Properties that will not be changed by the update.
- Read - reads the current state of a Resource and returns the current Output Attributes. May return
Unowned(attrs)to signal an existing-but-foreign resource that the engine should refuse to take over unless--adoptis set. - Pre-Create - an optional operation that creates a stub of a Resource before reconcile runs. Used to resolve circular dependencies — e.g. Function A and B depend on each other, so we create a stub of Function A first and then
reconcilelater wires up the real dependency. - Reconcile - converges a Resource's actual cloud state to the desired state described by the new Input Properties. Called for both first-time provisioning and subsequent updates. The provider receives
output(current Attributes) andolds(previous Props) which may both beundefinedon a greenfield create, both defined on an update, oroutput !== undefined && olds === undefinedon an adoption. See the Reconciler doctrine section below for the required shape. - Delete - deletes an existing Resource. It must be designed as idempotent because it is always possible for state persistence to fail after the delete operation is called. If the resource doesn't exist during deletion, it should not be considered an error.
- Capability - a runtime requirement of a Function (e.g. require read access to an
R2Bucket, orSQS.SendMessageon aSQS.Queue). A Capability is modeled as one or moreBinding.Services. Where the underlying API distinguishes access levels, split it intoRead/Write/ReadWriteservices (see the Read/Write/ReadWrite binding convention below); otherwise a single service suffices. Each service typically ships two interchangeable implementations: a native binding (*Binding) and a token-scoped HTTP client (*Http). - Binding.Service - an Effect Service that exposes a
.bind(resource)method returning a typed runtime client. Its outer (init) Effect resolves the host Function/Worker and its environment, then registers the deploy-time binding — environment variables, IAM policy statements (AWS), or a native Cloudflare binding — by callinghost.bind`${resource}`(data), guarded by!globalThis.__ALCHEMY_RUNTIME__so it is a no-op once running inside the deployed Function/Worker. Provided as a Layer on the Function/Worker Effect so it gets bundled into the Lambda/Worker. See Binding. - Binding - data attached to a target Function/Worker via
host.bind`${resource}`(data)from inside aBinding.Service. The binding data is collected on the Stack during plan/deploy. Bindings enable circular references between Resources — e.g. a capability binds{ policyStatements: [...] }(AWS) or{ bindings: [...] }(Cloudflare) onto the host. The Resource Provider then receives the resolved binding data in itsreconcilelifecycle operation via thebindingsparameter. - Binding Contract - the shape of data a Resource accepts from Bindings. For example, a Lambda Function accepts
{ env?: Record<string, any>, policyStatements?: PolicyStatement[] }because it needs environment variables and IAM policies. A Cloudflare Worker accepts{ bindings: Worker.Binding[] }for its native binding system. The Binding Contract is declared as the fourth type parameter on theResourceinterface. See Lambda Function and Cloudflare Worker. - Dependency - Resources depend on other Resources through two mechanisms:
- Output Properties of one Resource passed as Input Properties to another Resource (non-circular, directed acyclic graph)
- Bindings that attach data (IAM policies, env vars, Cloudflare bindings) from one Resource to another, enabling circular references between Resources.
- Output - a reference to (or derived from) a Resource's "Output Attributes". E.g. Bucket.bucketArn
- Stack - a collection of Resources, Functions, and Bindings that are deployed together.
- Stack Name - the name of a Stack, e.g.
my-stack - Stage - the stage of a Stack, e.g.
dev,prod,dev-sam - Stack Instance - a deployed instance of a Stack+Stage
- Resource Type - the type of a Resource, e.g.
Bucket,Instance - Physical Name - a unique name for a Resource, e.g.
my-bucket-1234567890. It is usually best to generate them using the built-in createPhysicalName utility function which generates - Logical ID - the logical ID identifying a resource within a Stack, e.g.
my-bucket. It is stable across creates, updates, deletes and replaces. - Instance ID - a unique identifier for an instance of a Resource. It is stable across creates, updates and deletes. It changes when a resource is replaced. It is truncated and used as the suffix of the Physical Name.
- Event Source - a special kind of Binding between a Function and a Resource that produces events that invoke the Function, e.g.
SQS.QueueEventSource. Implemented as aBinding.Servicewhose init Effect both registers the runtime event listener on the host and, at deploy time, yields the event-source mapping resource (or calls the cloud provider API to create/update it). - Replacement - the process of replacing a Resource with a new one. A new one is created, downstream dependencies are updated with the new reference, and then the old one is deleted. Or, the old one is deleted first and then the new one is created.
- Dependency Violation - an error that some APIs call when an operation cannot be performed because a dependency is not met. E.g. you cannot delete an EIP until the NAT Gateway it is attached to is deleted. Lifecycle operations typically retry Dependency Violations.
- Eventual Consistency - create/update/delete operations can be eventually consistent leading to a variety of failure modes. For example, a Resource may be created but not yet available for use, or a Resource may be deleted but still appear in the console. Errors caused by eventual consistency should be retried, and lifecycle operations/tests should be carefully designed to wait for consistency before proceeding.
- Retryable Error - an error that can be retried. E.g. a Dependency Violation, Eventual Consistency Error, Transient Failure, etc.
- Non-Retryable Error - an error that cannot be retried. E.g. a Validation Error, Authorization Error, etc.
- Retry Policy - a policy for retrying errors. E.g. a fixed delay, exponential backoff, max retries, while some condition is true, or until some condition is true/false, etc.
First-class sibling repositories we maintain live in submodules/:
submodules/distilled— generated Effect SDKs (workspace packages). Initialized bygit submodule update --init.submodules/floci— our fork of the local AWS emulator. Skipped by default; fetch withgit submodule update --init --checkout -- submodules/floci.
Each Service's Resources follow the same pattern. Resource contract and provider are co-located in the same file. Each Capability lives in its own file(s) named after the capability and access level (Binding.Service contract + the *Binding / *Http implementations).
# source files
packages/alchemy/src/{Cloud}/{Service}/index.ts # re-exports resources, capability contracts, and impl layers
packages/alchemy/src/{Cloud}/{Service}/{Resource}.ts # resource contract + resource provider
packages/alchemy/src/{Cloud}/{Service}/{Capability}.ts # Binding.Service contract + runtime client interface
# test files
packages/alchemy/test/{Cloud}/{Service}/{Resource}.test.ts
# docs (auto-generated from source-code JSDoc - DO NOT manually edit)
website/src/content/docs/providers/{Cloud}/{Resource}.md # API reference, generated by `pnpm docs:gen`A capability that exposes distinct access levels is split into a contract per level plus interchangeable native-binding and HTTP implementations, with shared scaffolding kept in un-exported helper files (see the Read/Write/ReadWrite binding convention below). For example, the Cloudflare R2 bucket capability:
packages/alchemy/src/Cloudflare/R2/BucketTypes.ts # shared types + error (exported)
packages/alchemy/src/Cloudflare/R2/BucketRead.ts # BucketRead Binding.Service + ReadBucketClient (exported)
packages/alchemy/src/Cloudflare/R2/BucketWrite.ts # BucketWrite Binding.Service + WriteBucketClient (exported)
packages/alchemy/src/Cloudflare/R2/BucketReadWrite.ts # BucketReadWrite Binding.Service + ReadWriteBucketClient (exported)
packages/alchemy/src/Cloudflare/R2/BucketBinding.ts # shared worker-binding scaffolding (NOT exported from index)
packages/alchemy/src/Cloudflare/R2/BucketReadBinding.ts # ReadBucketBinding layer + makeRead (exported)
packages/alchemy/src/Cloudflare/R2/BucketWriteBinding.ts # WriteBucketBinding layer + makeWrite (exported)
packages/alchemy/src/Cloudflare/R2/BucketReadWriteBinding.ts # ReadWriteBucketBinding layer (exported)
packages/alchemy/src/Cloudflare/R2/BucketHttp.ts # shared HTTP/token scaffolding (NOT exported from index)
packages/alchemy/src/Cloudflare/R2/BucketReadHttp.ts # ReadBucketHttp layer (exported)
packages/alchemy/src/Cloudflare/R2/BucketWriteHttp.ts # WriteBucketHttp layer (exported)
packages/alchemy/src/Cloudflare/R2/BucketReadWriteHttp.ts # ReadWriteBucketHttp layer (exported)Examples of actual paths:
packages/alchemy/src/AWS/S3/Bucket.ts # S3 Bucket resource + provider
packages/alchemy/src/AWS/S3/GetObject.ts # S3 GetObject capability (Binding.Service)
packages/alchemy/src/AWS/S3/PutObject.ts # S3 PutObject capability (Binding.Service)
packages/alchemy/src/AWS/SQS/Queue.ts # SQS Queue resource + provider
packages/alchemy/src/AWS/SQS/SendMessage.ts # SQS SendMessage capability
packages/alchemy/src/AWS/Kinesis/Stream.ts # Kinesis Stream resource + provider
packages/alchemy/src/AWS/Kinesis/PutRecord.ts # Kinesis PutRecord capability
packages/alchemy/src/AWS/Lambda/Function.ts # Lambda Function resource + provider
packages/alchemy/src/AWS/DynamoDB/Table.ts # DynamoDB Table resource + provider
packages/alchemy/src/AWS/DynamoDB/GetItem.ts # DynamoDB GetItem capability
packages/alchemy/src/AWS/EC2/Vpc.ts # VPC resource + provider
packages/alchemy/src/AWS/EC2/Subnet.ts # Subnet resource + providerAlchemy resource coverage is produced as a software factory: fleets of agents implement and live-test IaC resources in waves, and every API mismatch the tests surface is fed back as a patch to distilled. The factory was used to take Cloudflare from 36 to 239 cataloged resources (250 test files / 600+ test cases, 1000+ patched operations) and is the template for every future provider.
catalog ──> implement ──> live test ──> unmatched error / wrong schema?
^ │
│ v
update statuses <── regenerate service <── patch distilled
- Catalog — fan out research agents over the provider's distilled service modules (one batch per thematic group). Each agent reads the generated SDK (
submodules/distilled/packages/{cloud}/src/services/{service}.ts), cross-references the vendor API docs, and writes a self-contained design spec toprocesses/{Cloud}/catalog/{service}.md: resources, namespaces, props/attrs with replacement rules, lifecycle-to-operation mapping, scope (account/zone), testability, priority. The coordinator aggregates a machine-readablesummary.json+ humanINDEX.mdthat tracksimplemented | partial | missingper resource — this is the factory's order book. - Implement + test in waves (below). Tests run against the real cloud (
pnpm test --profile testing); zone-scoped tests use the standing test zone (alchemy-test-2.usviafindZoneByName). - Patch the SDK, never the consumer — every
UnknownCloudflareError, out-of-union status error, or wrong request/response schema found by a test becomes an RFC 6902 JSON Patch against the service's Smithy model, undersubmodules/distilled/packages/{cloud}/patches/{service}/{op}.json(see the Typed Error Doctrine section). Regenerate only that service. The typed union improves for every future consumer of the SDK — that is the flywheel's output. - Update the catalog statuses after each wave and pick the next batch from the order book. Repeat until everything left is documented as out of scope (deprecated APIs, billing/data-only endpoints, closed-beta, needs-external-systems).
- One workflow at a time, ~12 concurrent agents (cap ≈ CPU cores − 2). Two parallel workflows double throughput but also double crash blast-radius — only do it when the machine and budget clearly allow.
- One agent per distilled service. Service ownership is the unit of isolation: only the owner may touch
patches/{service}/and regeneratesrc/services/{service}.ts, so generator runs never race. An agent may own several resources of its service; a very large same-service backlog (e.g. zero-trust) runs as a sequential chain of agents inside the workflow, in parallel with all other services. - Shared-file discipline.
Providers.tsand the provider barrelindex.tsare edited by every agent: single minimal insertions only, re-read and retry on edit conflict, never rewrite wholesale. Layer.mergeAllceiling. KeepProviders.ts's provider layers in nestedLayer.mergeAllgroups (~90 entries each). A flat ~200-argument call exceeds tsc's variadic inference and silently drops the tail layers from the inferred union, producing bafflingProvider<X> is not assignable to StackServicescascades across every test file.- Crash resilience. Word every task as assess-first: "partial work may exist from an interrupted run — list your dirs, read existing files, check registration, FINISH rather than rewrite." Completed agent results are banked in the workflow journal even if the workflow dies; the coordinator recovers them from
journal.jsonland re-dispatches only the lost tasks. - The coordinator (not agents) does: the authoritative type-check, distilled lib rebuilds, combined verification runs, catalog/index updates, cross-cutting fixes (shared-file restructures, Effect-version API migrations), and deterministic mass transforms (mechanical codemods are scripted centrally, not fanned out).
- Monitor for stalls: an agent transcript that hasn't been written for ~5 minutes with no child test process is stalled — kill and re-dispatch; don't wait.
tsc -b over the workspace is expensive; dozens of agents running it concurrently thrashes the machine (and concurrent tsbuildinfo writes race). Instead:
- Agents are banned from running
tscorpnpm build(root or distilled) in any form. The coordinator owns type-checking and runs a one-shotpnpm exec tsc -bat wave boundaries. - The test runner resolves distilled from
src/*.tsdirectly, NOT the builtlib/(alchemy-testruns in plain bun, which resolves thebunexport condition natively). So a regenerated service is immediately test-visible the momentbun scripts/generate.ts --resource {service}(+ oxfmt) finishes — there is nothing to rebuild and nothing to wait for. Do NOT sleep and do NOT gate a test re-run on a build after regenerating. This applies to response-schema patches as well as error-tag-only patches.
- Run tests with
pnpm test(works from the repo root orpackages/alchemy; suite paths are relative topackages/alchemy, e.g.test/Cloudflare/...). Wrap every test invocation in a hard kill:timeout 240 pnpm test <suite> --profile testing. Hitting the wall is the failure — read the partial output (and the run's log under.alchemy/log/test/), find the hang (unbounded retry, infinite pagination, the engine deadlock below), fix the root cause. Never just re-run hoping. The runner also prints the currently-running tests whenever nothing finishes for 10s — use that list to identify the hang. - Per-test timeout ≤ 90–120s (
{ timeout: ... }on the test, or--timeoutfor the whole run). A suite needing more than ~3–5 minutes total is a bug. - Every
Effect.retry/Effect.repeatis bounded:times ≤ 8–10, total backoff under ~45–60s. Never poll for asynchronous provisioning slower than ~90s — skipIf-gate instead. - Known engine bug: a deploy that replaces a resource while simultaneously removing its old dependency deadlocks. Keep both dependencies deployed across replacement steps in tests (see
test/Cloudflare/R2/BucketEventNotification.test.ts). - Three-iteration budget: if a suite is not green after ~3 fix iterations and the blocker is platform behavior (entitlement, slow async provisioning, beta API), implement fully, skipIf-gate with the typed tag and exact error, verify a skip-clean run, and report honestly. Do not burn an hour on one resource.
Most enterprise/plan-gated resources are still fully implementable; only the live lifecycle is gated:
- Probe once against the real API to capture the exact rejection (code + message). If it surfaces as an untyped catch-all, patch distilled first so the entitlement error is a typed tag (e.g.
MagicTransitNotOnboardedcode 1012,SaasQuotaNotAllocatedcode 1404,AdvancedCertificateManagerRequiredcode 1450). - Keep an ungated probe test that asserts the typed tag is returned — this proves both the patch and the gating are correct, forever, at near-zero cost.
- skipIf-gate the full lifecycle behind an env var (
CLOUDFLARE_TEST_MAGIC_TRANSIT=1,CLOUDFLARE_TEST_DLP=1, …) so an entitled account can run it unchanged. - Record the testability verdict (
yes | limited | no) and the exact error in the catalog notes.
Deprecated APIs (superseded by Rulesets etc.), billing/subscription objects, pure data-APIs, and closed-beta endpoints are documented as out of scope in INDEX.md rather than implemented.
A wave task prompt is a contract. Include, every time:
- The distilled service the agent owns and the resources to build (with namespace + directory).
- Assess-first instruction (finish partial work, don't rewrite).
- The reading list: this file's Reconciler doctrine + Typed Error Doctrine, the catalog spec, the distilled service module + existing patches, current exemplar resources/tests (account-level CRUD, zone singleton capture-and-restore, observe-before-delete), and the registration files.
- The type-check/build ban (above) — agents never run
tsc/pnpm build; the coordinator owns type-checking. - The speed doctrine (above) verbatim — agents rediscover unbounded waits otherwise.
- The Typed Error Doctrine hard rule with the patch-regenerate command for their service only.
- Registration discipline for the shared files, including the nested-mergeAll note.
- Test requirements:
test.provider, start and end withstack.destroy(), deterministic names (engine default or constant), out-of-band verification via distilled, typed wait-until-gone, replacement coverage where applicable. - Known footguns:
diffreceivesInput<Props>— narrow withisResolved(news)before property access; neverInput<T>in declared Props; Effect 4 APIs (Effect.result+Result.isSuccess/isFailure, notEffect.either/effect/Either); JSON Patches address the Smithy model, so shape IDs arecom.cloudflare.{service}#Nameand member names are wire names (snake_case) — the camelCase TS surface is derived at codegen; fixtures (CSRs, PEMs, JWKS) are generated once and checked in as constants, never at test time. - A structured result schema:
{ service, resources, testsPassed, testCommand, files, patches (with reasons), skippedTests (with exact errors), notes }— the coordinator aggregates these into the catalog.
Source of truth: The source code is the single source of truth for all API documentation. JSDoc comments in packages/alchemy/src/**/*.ts are extracted and used to generate the public API reference markdown.
:::warning
Never edit the generated markdown files under website/src/content/docs/providers/{Cloud}/. They are overwritten on every regeneration.
To "update the docs", edit the JSDoc on the source .ts file (resource-level JSDoc on the exported const, plus field-level JSDoc on each prop/attribute) and re-run the generator. There is no separate doc file to update.
:::
How to generate docs:
pnpm docs:gen # -> website/src/content/docs/providers/{Cloud}/{Resource}.mdThis is the only doc generator that produces user-facing output. (scripts/generate-api-reference.ts) does the following:
- Discovers documented files across its configured source roots —
packages/alchemy/src/{Cloud}/{Service}/plus flat single-provider packages likepackages/better-auth/src/(mapped onto a synthetic provider directory, e.g.BetterAuth/) - Parses TypeScript with the native TypeScript API (
typescript-apitooling alias) - Extracts the page-level summary plus Markdown section/example blocks from JSDoc on the export tagged
@resource,@binding, or@layer - Writes one markdown file per page at
website/src/content/docs/providers/{Provider}/{Name}.md
Layer pages (@layer) document exported Layer factories — the pluggable implementations of a Context service (e.g. better-auth's database layers). Alongside the shared tags, a Layer declares what it satisfies and needs:
/**
* Neon database layer for Better Auth over Neon's serverless driver.
*
* ### Connecting from a Worker or Lambda
* **Example:** Worker or Lambda with Neon-backed Better Auth
* ```typescript
* // ...
* ```
*
* @layer
* @provides BetterAuth.Database
* @peer @neondatabase/serverless
* @product Neon
*/
export const Neon = (url: ConnectionSource, options?: NeonOptions): Layer.Layer<Database> => ...@provides <Service.Tag>— the Context service tag(s) the Layer satisfies (repeatable)@peer <package>— optional peer dependencies the Layer needs at runtime (repeatable)
Both render as a metadata line under the page's Source: blockquote. Every Layer implementation should carry these annotations — a Layer without them is an undocumented integration surface.
Keep all API-generator metadata tags (@resource, @binding, @layer,
@product, @category, @provides, and @peer) together at the very end of
the JSDoc block. Do not put prose, sections, or examples after them: TypeScript
treats subsequent content as part of the block tag, which breaks editor JSDoc
rendering. The generator also supports @group as an alias for @category and
@label as an alias for @product.
After editing JSDoc on a resource, run pnpm docs:gen to refresh the website
docs. Run pnpm docs:check-jsdoc to validate the source layout, or
pnpm docs:fix-jsdoc to normalize it automatically.
Writing good documentation: When adding or updating a resource, ensure all Props and Attrs have JSDoc comments:
export interface BucketProps {
/**
* Name of the bucket. If omitted, a unique name will be generated.
* Must be lowercase and between 3-63 characters.
*/
bucketName?: string;
/**
* Whether to delete all objects when the bucket is destroyed.
* @default false
*/
forceDestroy?: boolean;
}The @default tag is used to document default values and will appear in the generated documentation.
Examples are critical for documentation. Every resource should have examples demonstrating common use cases. Use Markdown headings and labels on the main Resource export to organize examples into a navigable table of contents.
Format:
### <Section Title>- Creates a heading in the Examples section and adds an entry to the Quick Reference table of contents**Example:** <Example Title>- Creates a labeled code example (must follow a section heading)- A level-three heading that is ordinary page prose rather than an example section must end with
<!-- api-prose -->; the generator removes the marker and preserves it as###in the output - Code blocks inside examples use standard markdown fenced code blocks (
) - Put the API-generator metadata tags after all sections and examples
Example:
/**
* An S3 bucket for storing objects.
*
* ### Creating a Bucket
* **Example:** Basic Bucket
* ```typescript
* const bucket = yield* Bucket("my-bucket", {});
* ```
*
* **Example:** Bucket with Force Destroy
* ```typescript
* const bucket = yield* Bucket("my-bucket", {
* forceDestroy: true,
* });
* ```
*
* ### Reading Objects
* **Example:** Get Object from Bucket
* ```typescript
* const response = yield* getObject(bucket, { key: "my-key" });
* const body = yield* Effect.tryPromise(() => response.Body?.transformToString());
* ```
*
* ### Writing Objects
* **Example:** Put Object to Bucket
* ```typescript
* yield* putObject(bucket, {
* key: "hello.txt",
* body: "Hello, World!",
* contentType: "text/plain",
* });
* ```
*
* @resource
*/
export const Bucket = Resource<...>("AWS.S3.Bucket");This generates:
- A "Quick Reference" section with links to each
###section - An "Examples" section with organized code examples under each section heading
Best practices for examples:
- Start with the simplest use case and progress to more complex ones
- Include examples for all major capabilities (GetObject, PutObject, etc.)
- Show real-world patterns like error handling, combining with other resources
- Use descriptive titles that explain what the example demonstrates
This is the inner loop that each factory agent (see The Resource Factory Process above) executes for the service it owns — it applies equally when a single engineer brings up one service by hand.
Development of Alchemy-Effect Resources is heavily pattern based. Each Service has many Resources that each have 0 or more Capabilities and Event Sources. When working on a new Service, the following steps should be followed.
- Research the AWS Service and identify its Resources, Identifier Types, Structs, Capabilities, and Event Sources. Refer to the corresponding Terraform Provider, Pulumi Provider, and CloudFormation docs for that service (use the provided tools specifically for searching these docs for services and resources).
Example (abbreviated):
Service: S3
Resources:
- Bucket
- BucketPolicy
- etc.
Bucket Capabilities:
- GetObject
- PutObject
- DeleteObject
Identifier Types:
- Bucket Name
- Bucket ARN
Structs:
- CorsRule
- LifecycleConfiguration
- Document each of the Resource interfaces
Include the following information:
- ResourceName, e.g. Bucket, Instance, Queue
- Input Properties (for each property: Name, Type, Description, Default Value, Required, Constraints, Replaces: true/false)
- Output Attributes (for each attribute: Name, Type, Description)
- Document each of the Capabilities and Bindings
Include the following information:
- Capability Name, e.g.
GetObject,PutObject(it maps 1:1 with an AWS API) - Constraints (e.g.
Key) - IAM Policies (how the capability maps to an IAM Policy, e.g. Effect: Allow, Action: s3:GetObject, Resource:
arn:aws:s3:::${bucketName}/${Key}) - Environment Variables (what environment variables should be added to a Lambda Function so that it can access the capability, e.g.
BUCKET_NAME,BUCKET_ARN,QUEUE_URL,QUEUE_ARN, etc.)
- Research and design each of the Lifecycle Operations
- Diff - identify which properties are always stable across any update, which properties change conditionally depending on new and old values, which properties trigger a replacement. This is usually just a distinct list, but can sometimes require if-this-then-that logic. Document it explicitly and exhaustively. Cross-reference with AWS CloudFormation, Terraform Provider and Pulumi Provider docs.
:::warning
You should almost never use no-op in the Diff. No-op should be explicitly designed as a way to say "i know this property changed, but i don't want it to trigger an update". This is an edge-case and not the norm. Usually you want diff to return undefined or void to let the engine apply the default update logic. Diff is usually just use as an optimization or to identify replacement instead of update.
:::
- Read - determine which API calls are required to read the Output Attributes of a Resource from the Cloud Provider state (otherwise known as refresh or synchronize resource state). This is usually a single Get{Resource} API call, but can be a complex set of calls depending on the Service. Read can also be called without the current Output Attributes because of past state persistence failures. These cases are handled by computing the deterministic Physical Name and looking it up or by searching for Resources using tags (if the Cloud Provider supports it). Read may return
Unowned(attrs)when the resource exists but lacks our ownership tags, signalling the engine to gate adoption behind--adoptoradopt(true). - Pre-Create - determine if the Resource needs a pre-create operation. This is usually only the case for the special Function/Runtime Resources like AWS Lambda Functions. If it is required, then document which API call(s) should be called and what the empty (unit) input properties are. E.g. a Lambda Function takes a simple script that exports a no-op handler function.
- Reconcile - determine the API calls needed to converge the cloud's actual state to the desired state described by the new Input Properties. Reconcile must be a single flow that works whether the resource is missing (greenfield create), pre-existing under our ownership (update), or freshly adopted (
outputdefined butoldsabsent). See the Reconciler doctrine section below. - Delete - determine which APIs should be called and in what order to delete an existing Resource. Delete should be idempotent so that if the resource has already been deleted, it is not considered an error. It is common for deletions to fail because of Dependency Violations or Eventual Consistency Errors. These are not always called Dependency Violations in the API docs, so attention should be paid to investigating each API's possible error codes and how they should be handled by the Delete operation. Should we retry for a period of time, indefinitely, or fail immediately?
The provider's reconcile function replaces the legacy create + update pair. It runs every time the engine wants to make the cloud match the desired state — whether that's the first time the resource is being provisioned, a routine update, or a takeover after read returned an existing cloud resource.
It receives output: Attributes | undefined and olds: Props | undefined:
output |
olds |
Meaning |
|---|---|---|
undefined |
undefined |
Greenfield — no prior physical resource |
| defined | defined | Routine update — engine-owned resource |
| defined | undefined |
Adoption — engine adopted via read |
A reconciler MUST work correctly for all three combinations. It MUST NOT branch the body on output === undefined and run different code paths for "create" vs "update". That pattern is just rename-and-branch and re-introduces every assumption the old create/update split made. Instead, write one flow:
1. Observe — derive the physical identifier; read live cloud state via getX/describeX
2. Ensure — if the resource is missing, call createX. Catch AlreadyExists/ConflictException
as a race and continue. Wait for active state if applicable.
3. Sync — for each mutable aspect (settings, sub-resources, tags, policy):
- read OBSERVED cloud state (not olds)
- compute desired state from news + bindings
- diff observed against desired
- apply only the delta API call (skip the API entirely on no-op)
4. Return — re-read final state if needed; return the fresh Attributes shape
Key invariants:
- Observation > assumption. Cloud state is authoritative.
oldsis at most a hint to skip a no-op API call; it is never the source of truth for what's actually deployed. - Each sync step is independently idempotent. Crash mid-reconcile, re-run, you converge.
outputis treated as a cache for stable identifiers (physical name, ARN, immutable id). It is NOT a guarantee that the resource still exists. If it doesn't, observation falls through to "missing" and ensure recreates.AlreadyExists/NotFoundException/ResourceInUseException-style errors are caught, not propagated — they're races or eventual-consistency, not failures.- Tags use observed cloud tags as the diff baseline, not
olds.tagsoroutput.tags. Adoption may bring you a resource with foreign tags that need to be reconciled.
:::warning
Do not write if (output === undefined) { /* create body */ } else { /* update body */ }. That is rename-and-branch, not reconciliation. The reconciler's body is one observe-ensure-sync flow that produces correct cloud state regardless of starting point.
:::
The canonical reference reconcilers cover the common shapes:
- S3 Bucket — uses
ensureBucketExists+syncBucketTags+syncBucketPolicyhelpers; each helper is itself a tiny reconciler. - SQS Queue — observe via
getQueueUrl, ensure viacreateQueue(toleratesQueueNameExistsrace), sync attributes by diffinggetQueueAttributesagainst desired, sync tags. - Kinesis Stream — many mutable aspects (mode, shards, retention, encryption, metrics), each its own observed-vs-desired sync block.
- DynamoDB Table — multi-API observation (table + tags + PITR + TTL), per-aspect diffing, GSI delta application.
- EC2 Vpc — auto-assigned id, observe via
describeVpcs([output.vpcId])with NotFound fallback to create, sync DNS attrs by readingdescribeVpcAttribute, sync tags from observedvpc.Tags. - Lambda Function — uses
createOrUpdateFunction/createOrUpdateFunctionUrl/attachBindingshelpers, each idempotent. - Cloudflare Worker — non-AWS API; the underlying
putWorkeris a true upsert, so reconcile observes existing settings and delegates.
Existence-only resources (Lambda Permission, EC2 Route, EC2 RouteTableAssociation, IAM AccessKey, etc.) have nothing mutable beyond their identity. Their reconciler is just observe → if missing, create. There is no sync step.
- Research and design the test cases for each resource. Test cases can be single or multi-step. Single-step test cases are just testing a single create success or failure mode. Multi-step cases are testing a sequence of operations, starting with create and then updating or replacing the resource multiple times. Test cases should be designed to be exhaustive and cover all possible success and failure modes, starting from simple happy paths to long, complicated aggregate (including other resources) smoke tests.
- Implement the Resource contract and Provider in
packages/alchemy/src/{Cloud}/{Service}/{Resource}.ts.
The Resource contract (Props, Attributes, Binding Contract) and the Resource Provider (lifecycle operations) are co-located in the same file.
Read through the established examples to understand the pattern:
The Resource interface takes four type parameters: Resource<Type, Props, Attributes, BindingContract>.
export interface Stream extends Resource<
"AWS.Kinesis.Stream",
StreamProps,
{
streamName: string;
streamArn: string;
streamStatus: StreamStatus;
}
> {}
export const Stream = Resource<Stream>("AWS.Kinesis.Stream");For Resources that accept Bindings (like Lambda Function), include a fourth type parameter for the Binding Contract:
export interface Function extends Resource<
"AWS.Lambda.Function",
FunctionProps,
{
functionArn: string;
functionName: string;
functionUrl: string | undefined;
roleName: string;
roleArn: string;
},
{
env?: Record<string, any>;
policyStatements?: PolicyStatement[];
}
> {}:::warning
Never use Input<T> in declared Props interfaces. Declare plain types (zoneId: string, ips?: string[], nested structs with plain fields). The Resource machinery applies Input automatically — and Input<T> is deep (it recursively distributes over arrays and object fields), so even nested references like memberships: [{ identifier: zone.zoneId }] accept Output<string> without any explicit annotation. Writing Input<string> in a Props interface produces a redundant double-wrap.
// ❌ wrong
export interface LoadBalancerProps {
zoneId: Input<string>;
}
// ✅ right — the engine wraps automatically and deeply
export interface LoadBalancerProps {
zoneId: string;
}Input<T> in a function signature is still legitimate when the function genuinely receives unresolved values at runtime (e.g. helpers that resolve tag maps, or DurableObjectNamespace.from(scriptName: Input<string>)).
:::
- Implement each Capability as a
Binding.Serviceinpackages/alchemy/src/{Cloud}/{Service}/{Capability}.ts.
A single Binding.Service does both halves of a capability in one Effect:
- Init (outer) Effect — resolves the host Function/Worker and its environment, then registers the deploy-time binding by calling
host.bind`${resource}`(data)(environment variables + IAM policy statements for AWS, native bindings for Cloudflare), guarded by!globalThis.__ALCHEMY_RUNTIME__so it becomes a no-op once running inside the deployed Function/Worker. - Runtime (inner) callable — the typed client returned to the caller; its methods require
Alchemy.RuntimeContext(see below).
There is no separate deploy-time policy object and nothing to register in providers() — the implementation layer is provided directly on the Function/Worker Effect.
Read through the established capabilities to understand the pattern:
- S3 GetObject, S3 PutObject
- SQS SendMessage, DynamoDB GetItem
- Kinesis PutRecord, Lambda InvokeFunction
- Access-split Cloudflare capabilities: R2 Bucket, KV Namespace, Queue
For Event Sources, see:
Each capability exports its contract plus one or more implementation layers:
// 1. The Binding.Service class (the contract) + a bind alias for ergonomic use
export class PutRecord extends Binding.Service<...>()("AWS.Kinesis.PutRecord") {}
export const putRecord = PutRecord.bind;
// 2. The implementation layer — resolves the host + environment, registers the
// binding inline (guarded by __ALCHEMY_RUNTIME__), and returns the runtime client.
export const PutRecordLive = Layer.effect(
PutRecord,
Effect.gen(function* () {
const host = yield* Worker; // or the AWS Function host
const env = yield* WorkerEnvironment; // or Lambda.FunctionEnvironment
return Effect.fn(function* (stream: Stream) {
if (!globalThis.__ALCHEMY_RUNTIME__) {
// AWS: { policyStatements: [...] } Cloudflare: { bindings: [...] }
yield* host.bind`${stream}`({ policyStatements: [...] });
}
return /* typed runtime client closing over `env` */;
});
}),
);Provide the implementation layer on the Function/Worker Effect (Effect.provide(PutRecordLive)).
When a capability's API distinguishes access levels (R2 head/get/list vs put/delete; KV get/getWithMetadata/list vs put/delete), split it into three Binding.Services so consumers can request least privilege, each with two interchangeable implementations:
{Cap}Read.ts/{Cap}Write.ts/{Cap}ReadWrite.ts— theBinding.Serviceclass + runtime client interface + abindalias (e.g.ReadBucket = BucketRead.bind).ReadWrite's client interfaceextendsboth theReadandWriteclient interfaces.{Cap}Binding.ts— shared worker-binding scaffolding: amake{Cap}Binding({ makeClient })that resolvesWorkerEnvironment+ hostWorker, registers the native binding viahost.bind`${resource}`(...)(guarded by__ALCHEMY_RUNTIME__), plus amake{Cap}Helpersreturning the low-levelraw/use/tryPromiseprimitives. Do NOT export this file fromindex.ts.{Cap}ReadBinding.ts/{Cap}WriteBinding.ts/{Cap}ReadWriteBinding.ts—Layer.effectimplementations over the native binding (ReadBucketBinding, …) plus themakeRead/makeWriteclient builders.ReadWritecomposes the read + write builders.{Cap}Http.ts— shared HTTP/token scaffolding: amakeHttp{Cap}Binding({ permissionGroups, makeClient })that mints a scopedAccountApiTokenwith the right permission groups, binds the token'svalue/accountIdinto the Worker, and resolves the per-operation scope. Do NOT export this file fromindex.ts.{Cap}ReadHttp.ts/{Cap}WriteHttp.ts/{Cap}ReadWriteHttp.ts—Layer.effectimplementations over the cloud's HTTP API (ReadBucketHttp, …). Operations the HTTP API can't supportEffect.diewith a typed error.
Rules:
- Keep shared scaffolding internal. Re-export only the contracts, the per-level layers, and the client builders from
index.ts. Exporting{Cap}Binding.ts/{Cap}Http.tsleaks generic helper names into the flatCloudflare/AWSnamespace and collides across services. - Use service-unique helper names. Avoid generic
makeHelpers/makeWrite; prefix with the capability (makeQueueHelpers,makeWriteQueueClient) so re-exported builders never clash. - Namespace the public surface. Export the service both flatly and as a namespace (
export * as KV from "./KV/index.ts") so callers writeCloudflare.KV.ReadWriteNamespace(ns). The bind-alias callables drop the redundant service prefix (ReadWriteNamespace, notReadWriteKVNamespace); the underlying classes/interfaces keep it (KVNamespaceReadWrite,ReadWriteKVNamespaceClient). - No resource-level
bind. The Resource is plainResource<T>("Cloud.Type")with nobind:field; callers bind via the namespaced capability, notresource.bind. - Single-mode capabilities stay single. A producer-only capability (e.g. Cloudflare Queue's send-only producer, which has no runtime read) ships just the
Writeservice — don't invent aReadthe runtime can't satisfy. The HTTP impl can still cover both directions where the API does.
Reference: Cloudflare R2 Bucket, KV Namespace, Queue.
The runtime callable returned by a Binding.Service (the inner Effect inside .bind(resource)'s return) must declare Alchemy.RuntimeContext as a requirement. This is how Alchemy models "this code can only run inside a deployed Function/Worker" at the type level — analogous to a colored function.
import type { RuntimeContext } from "../../RuntimeContext.ts";
export class GetItem extends Binding.Service<
GetItem,
<T extends Table>(
table: T,
) => Effect.Effect<
(
request: GetItemRequest,
) => Effect.Effect<
DynamoDB.GetItemOutput,
DynamoDB.GetItemError,
RuntimeContext // ← runtime-only
>
>
>()("AWS.DynamoDB.GetItem") {}Rules:
- Outer Effect (the
bind(resource)setup) runs at the Function's init phase. It does NOT requireRuntimeContext. - Inner Effect (the actual SDK invocation) only makes sense inside a running Function. It MUST require
RuntimeContext. - Resolve cloud-environment services (
WorkerEnvironment, AWS SDK clients, etc.) once during Layer construction and close over them. Do NOT leakWorkerEnvironment/Lambda.FunctionEnvironmentonto the runtime callable — that couples downstream service code to a specific cloud and breaks Layer encapsulation. The Function/Worker runtime satisfiesRuntimeContextautomatically. - The implementation can return
Effect.Effect<A, E>without explicitly providingRuntimeContext(it's contravariant inR); just declare it on the interface.
Why this matters: consumers can build cloud-agnostic services on top of bindings using Layer.effect(Tag, ...) without polluting their service interface with WorkerEnvironment. See Layers concept.
After implementing, re-export the contract and implementation layers from the service's index.ts (but keep the shared {Cap}Binding.ts/{Cap}Http.ts scaffolding un-exported).
Layer construction is isolate-scoped; the effects built services expose are request-scoped.
- At layer build / Worker init (instance scope) a layer MAY resolve services and env/config, register listeners and
binddeclarations, assembleEffect.fnclients, and perform one-shot I/O that produces a plain cached value (e.g. fetch a secret and cache it for a client). It MUST NOT acquire disposable resources — connections, pools, streams, anything with a finalizer (Layer.scoped/Effect.acquireRelease/ init-levelEffect.addFinalizer) — or retain I/O-backed objects or promises across events (workerd pins them to the creating request's IoContext). The runtime bridges (Worker event, Durable Object call, Workflow run, Lambda invoke) build the layer stack once per instance on the first event. Instance finalizers run at instance shutdown at best: never on workerd (no teardown hook), and in a best-effort 500 ms SIGTERM window on Lambda (the generated entry registers an internal extension to obtain it and closes the instance scope on SIGTERM; not delivered on hard failures). Server processes (Containers, ECS Tasks) close their root scope on graceful exit. - At request scope, anything needing I/O or cleanup is an effect requiring
Scope.Scope, acquired lazily per call. Every bridge provides a freshScopeper event;Effect.addFinalizerin a handler attaches to it and runs after the response (registered withctx.waitUntilon workerd; settled inline on Lambda). Per-request memoization keys on the scope object (yield* Effect.scope) — see Drizzle/Postgres.ts for the canonical WeakMap pattern. One pool/socket per event is the law on workerd (sockets are IoContext-pinned); Hyperdrive is the cross-request pooler.
:::tip If you need to know what AWS region or account ID the resource is being created/updated in, you can use this inside any of the lifecycle operations.
const region = yield * Region;
const account = yield * Account;:::
:::warning You should favor getting the region/account INSIDE the lifecycle operations instead of inside the Layer effect like this because then it's scoped to the resource isntead of the resource provider:
reconcile: Effect.fn(function* ({ id, news, output, session }) {
const { accountId, region } = yield* AWSEnvironment.current;
});:::
:::warning
Do not use Effect.orDie in the lifecycle operations since this will crash the whole IaC engine.
:::
:::warning
Never use async/await, raw Promise, node:fs/promises, node:fs, node:os, or pathe directly in resource code. Always use the Effect platform services so that effects remain composable, traceable, retryable, and testable:
| Don't | Do |
|---|---|
import fs from "node:fs/promises" |
const fs = yield* FileSystem.FileSystem |
await fs.readFile(p, "utf8") |
yield* fs.readFileString(p) |
await fs.mkdtemp(...) |
yield* fs.makeTempDirectory({ prefix: ... }) |
import path from "pathe" / node:path |
const path = yield* Path.Path |
await fetch(...) |
yield* HttpClient.HttpClient + HttpClientRequest |
Effect.promise(() => listSqlFiles(dir)) |
Make listSqlFiles itself return Effect and yield* it |
new Promise((res) => setTimeout(res, ms)) |
yield* Effect.sleep(Duration.millis(ms)) |
Sync, CPU-only Node APIs (e.g. crypto.createHash().update().digest(), process.cwd(), Buffer, TextEncoder) must still be wrapped in Effect.sync(() => ...) (or Effect.try if they can throw) so the call participates in the Effect runtime — tracing, interruption, and error channels. Don't call them as bare expressions inside Effect.gen.
const hash = yield* Effect.sync(() =>
crypto.createHash("sha256").update(input).digest("hex"),
);
const cwd = yield* Effect.sync(() => process.cwd());This applies to lifecycle operations, helpers, AND tests. Tests must use FileSystem.FileSystem/Path.Path for any file/path access (see Database.test.ts for the pattern).
:::
:::tip If a Resource supports tags, you should always include the internal Alchemy tags to brand the resource with the app, stage and logical ID so that we can "know" that we created it and are responsible for it.
reconcile: Effect.fn(function* ({ id, news, output, session }) {
const internalTags = yield* createInternalTags(id);
const userTags = news.tags ?? {};
const allTags = { ...internalTags, ...userTags };
});:::
:::warning
Do not roll your own tag diffing logic, always use diffTags from Tags.ts, and diff against observed cloud tags (not olds.tags or output.tags). Adoption can hand you a resource whose tags don't match what we last persisted.
reconcile: Effect.fn(function* ({ id, news, output, session }) {
const internalTags = yield* createInternalTags(id);
const newTags = { ...news.tags, ...internalTags };
// Read tags fresh from the cloud so adoption (where tags may not match
// what we last persisted) converges correctly.
const oldTags = yield* fetchObservedTags(/* … */);
// Option 1. use `upsert` if the API expects you to create/update tags in one call
const { removed, upsert } = diffTags(oldTags, newTags);
// Option 2. use `added` and `updated` if the API expects you to create/update tags in separate calls
const { removed, added, updated } = diffTags(oldTags, newTags);
// Option 3. use `upsert` only if the API doesn't expect you to remove tags (only PUT/UPDATe)
const { upsert } = diffTags(oldTags, newTags);:::
- Implement the test cases in
packages/alchemy/test/{Cloud}/{Service}/{Resource}.test.ts.
Read through the established test cases before continuing so that you understand the pattern and structure of the test cases.
- S3 Bucket Test Cases
- SQS Queue Test Cases
- Lambda Function Test Cases
- Kinesis Stream Test Cases
- DynamoDB Table Test Cases
- VPC Test Cases
- Subnet Test Cases
:::warning
Never use Date.now() when constructing the physical name of a resource. You should either:
-
Do not proide a name and rely on the resource provider to generate a unique name for you from the app, stage and logical ID.
-
Construct a deterministic one unique to each test case. But it should be the same on each subsequent run of the test case. :::
-
Consider implementing an aggregate Smoke test that brings together multiple resources that are often used together.
See the VPC Smoke Test for an example.
- Add the resource-level JSDoc (
###section headings +**Example:**labels, with generator metadata tags last) and field-level JSDoc on each prop/attribute on the source.tsfile. Runpnpm docs:check-jsdoc, thenpnpm docs:gento refreshwebsite/src/content/docs/providers/{Cloud}/{Resource}.md. Do NOT manually edit the generated markdown.
Distilled is a Smithy-based SDK factory. Every provider package (submodules/distilled/packages/{cloud}) runs the same pipeline:
- Convert — the provider's spec source is converted into Smithy 2.0 JSON models, one per service, in
.generated-specs/{service}.json. Cloudflare mines them from the downloaded API docs (scripts/spec-to-smithy.tsoverspecs/api/resources/**); AWS consumes the officialapi-models-awsSmithy models submodule directly. Hand-authored models for APIs the spec source doesn't cover live inmanual-specs/. - Patch — an RFC 6902 JSON Patch chain (files shaped
{ "description": ..., "patches": [ops] }) is applied to the provider's intermediary spec before codegen. For Cloudflare, patches inpatches/{service}/*.jsontarget the Smithy model, applied in filename order with*.manual.jsonfiles last;_metadata.jsoncarries service-level/metadata/keyDictionaryand/metadata/opAliases. OpenAPI-sourced providers (Neon, PlanetScale, Stripe, …) patch the OpenAPI document upstream of the smithy conversion instead. A patch whose target path is stale (no longer in the model) warns and is skipped; a malformed patch fails the generator run. - Generate — the shared smithy→SDK compiler in
@distilled.cloud/core/codegencompiles each patched model into an Effect SDK module atsrc/services/{service}.tsplus the barrel.
Consequences:
- Never edit
src/services/*.ts— regeneration overwrites it. Anything wrong in the generated SDK (missing error, wrong request/response schema, misnamed operation or member) is fixed with a JSON Patch (add/remove/replace/moveon the model) inpatches/{service}/. - Patch paths address the Smithy model: shape IDs are
com.cloudflare.{service}#Name, and member names are wire names (snake_case). The camelCase TS surface is derived at codegen;moveops rename shapes and members.
Every error a distilled operation can produce in practice MUST be a tagged error in that operation's type-level error union. The catch-all classes (UnknownCloudflareError, CloudflareHttpError, and the status-derived classes like NotFound/BadRequest that distilled leaves out of the typed union) exist only to surface gaps — they are never something alchemy code handles.
When you hit an unmatched error (an UnknownCloudflareError, or you find yourself wanting to check CloudflareHttpError.status or an out-of-union NotFound), the fix is ALWAYS a distilled patch, never a catch in alchemy:
-
Note the error's code / status / message from the failure output.
-
Add or extend
submodules/distilled/packages/cloudflare/patches/{service}/{operation}.jsonwith a JSON Patch that (a) adds an error structure carrying thesmithy.api#errortrait andcom.cloudflare.protocols#errorMatchersmatchers, and (b) attaches it to the operation'serrorslist. Use a meaningful, resource-specific tag (e.g.WidgetNotFound, not a bareNotFound):{ "description": "Type the not-found error on getWidget", "patches": [ { "op": "add", "path": "/shapes/com.cloudflare.widgets#WidgetNotFound", "value": { "type": "structure", "members": { "code": { "target": "smithy.api#Integer" }, "message": { "target": "smithy.api#String" } }, "traits": { "smithy.api#error": "client", "com.cloudflare.protocols#errorMatchers": [{ "code": 1234 }] } } }, { "op": "add", "path": "/shapes/com.cloudflare.widgets#GetWidget/errors", "value": [{ "target": "com.cloudflare.widgets#WidgetNotFound" }] } ] }If the operation already has an
errorsarray (from an earlier patch), append with"path": ".../errors/-"instead of adding the whole array. Matchers may combinecode,status, andmessage(a string, or{ "includes": "..." }/{ "matches": "..." }) — e.g.[{ "status": 400, "message": { "includes": "snippet not found" } }]when Cloudflare misuses 400 for a missing resource. Prefer matching the Cloudflare errorcodewhen one exists; fall back tostatus+messageotherwise. The most specific matcher wins; ties break by declaration order. -
Regenerate ONLY that service:
cd submodules/distilled/packages/cloudflare && bun scripts/generate.ts --resource {service}(then format:pnpm exec oxfmt src/services/{service}.ts). A warned-stale or failed patch is a bug in your patch — fix it; never leave a red generate. -
Handle the now-typed tag in alchemy code and re-run the tests.
AWS is the one exception to the JSON Patch format: it layers typed-error metadata over the official Smithy models with a per-service schema file submodules/distilled/packages/aws/patches/{service}.json (error categories, aliases, synthetic errors with message matchers — see submodules/distilled/packages/aws/scripts/spec-schema.ts), regenerated with cd submodules/distilled/packages/aws && bun scripts/generate.ts --sdk {service}. The doctrine is identical; only the patch dialect differs.
Forbidden patterns — these defeat the type system and must never appear in alchemy code or tests:
// ❌ unknown-typed structural predicates
const isNotFoundError = (e: unknown): boolean =>
Predicate.hasProperty(e, "_tag") && (e as { _tag: unknown })._tag === "NotFound";
// ❌ widening casts to duck-typed tags
Effect.retry({ while: (e) => (e as { _tag?: string })._tag === "Forbidden" })
// ❌ catching the catch-all HTTP error by status
Effect.catchIf((e) => e._tag === "CloudflareHttpError" && e.status === 404, ...)Required patterns — fully inferred, no casts, no unknown:
// ✅ catch a typed tag
.pipe(Effect.catchTag("WidgetNotFound", () => Effect.void))
// ✅ retry while a typed tag is observed (e is the op's inferred error union)
Effect.retry({ while: (e) => e._tag === "WidgetNotFound", schedule, times })
// ✅ multiple tags
Effect.catchTag(["WidgetNotFound", "Gone"], () => Effect.succeed(undefined))If Effect.catchTag("SomeTag", ...) fails to typecheck, that is the signal that distilled's union is missing the error — patch distilled (step 2 above); do not loosen the alchemy-side types.
Some resource types have TWO implementations: a live provider (converges real cloud state, alchemy deploy) and a local provider (emulates the resource on the developer's machine, alchemy dev). Provider mode is a first-class engine concept — see ProviderMode.ts, Local/ProviderLayer.ts, Local/LocalProvider.ts, and the user-facing guide at website/src/content/docs/infrastructure-as-code/local-provider.mdx.
Engine semantics (never re-implement these per provider):
- Register both variants with
ProviderLayer.dual(cls, { live: () => ..., local: () => ... })— never select one at layer build. The run-default variant builds eagerly; the other is lazy and memoized, so mode-specific dependency layers (workerd, Docker) MUST compose inside thelocalthunk (e.g.LocalWorkerProvider().pipe(Layer.provide(localRuntimeServices()))), never globally — a plain deploy must not construct local machinery unless a local-mode row needs deleting. Dep layers shared across several local providers must be module-memoized layer references so the build MemoMap dedupes them to one instance. - Every state commit stamps
providerMode. A persisted mode that differs from the resolved mode plans a REPLACEMENT (the provider diff is not consulted), and every delete — replacement old generations, GC chain draining, orphans,destroy,sync/tail/logs— resolves the provider variant of the row's stamped mode viafindProviderByType(type, mode). Legacy rows without a stamp are assumed live (pre-mode engines and mode-agnostic providers only ever acted on the real cloud), so a dev run replaces them like any stamped live row — assuming the run's mode instead would silently adopt a deployed live resource as a local instance and leak it untracked. The exception is an unstamped row whose attrs carry the local identity marker (dev:-prefixed ids, seestampedModeinProviderMode.ts): it was reconciled by a pre-stampingalchemy devrun and is treated as local, so a plain destroy/deploy never hands itsdev:identity to the live cloud API. Alchemy.remote()opts a resource or scope OUT of local emulation during dev (captured at registration likeadopt(); a no-op during deploy). There is deliberately nolocal()— dev mode IS the local default; tests simulate a dev run by overridingAlchemyContext.dev(inDevin test.resources.ts) orTest.make({ dev: true }). Conflicting decorations on one FQN die withConflictingProviderModeError. Single-implementation providers are mode-agnostic: they satisfy any requested mode, never stamp, never replace on a switch — dev runs over constructs mixing emulatable and live-only resources (R2) just work.
A local provider whose physical resource is a running process (dev server, workerd instance) MUST be built with LocalProvider.make(cls, serverEntryUrl, spec) — do not hand-roll FiberMap/instance-registry/hash machinery in the provider:
resolveConfig(ctx)— the restart surface. Plain, canonically-hashable data only (no closures or runtime objects: derive plain descriptors here and materializeBindingHooks etc. insidestart— see the descriptor/hook split in LocalWorkerProvider.ts). Must be cheap and side-effect-free — it runs insidediffon every plan. Its canonical hash decides noop-vs-restart AND the same value is handed tostart, so "what changed?" and "what starts?" can never drift. Deliberately EXCLUDE runtime wiring observed at start time (e.g. queue consumers read fromLocalRuntimeState) — sibling reconciles drive those via restart hooks, not config.start(ctx)— boot ONE instance in the ambientScopeand return Attributes at readiness; the process keeps running until the runner closes the scope on restart/delete. For processes that can die on their own, forkctx.invalidateafter the exit so the next plan reportsupdate.stop(ctx)— delete-only cleanup for state that intentionally survives restarts (URL proxies kept for address stability, restart hooks). NOT called on restarts.- Generated for you: instance registry, per-id lock (restarts never interleave), config-hash noop/restart, instanceId-guarded delete (a create-first replacement's old-generation delete cannot kill its successor),
list. The provider is wrapped inRpcProvider, so duringalchemy devthe registry lives in the sidecar and survives user-code hot reloads. - Never use
Hash.structureto compare configs — it XOR-folds sibling fields, so a value mirrored into two subtrees (env ↔ bindings) cancels out. The helper's canonical hash (sorted-key JSON + sha256, Redacted/bytes/cycle-aware) is the law.
Registry-style local providers (the "instance" is an in-memory row, e.g. Cloudflare's local Queue mutating LocalRuntimeState) do NOT use LocalProvider.make — write a plain provider and register it via dual.
Reference implementations: Command/Dev.ts (minimal: spawn + URL readiness), Cloudflare Workers LocalWorkerProvider.ts (full-size: bundler watch loop, cross-restart proxy in stop), Cloudflare Queues Queue.ts (registry-style, no runner). Engine coverage lives in test/provider-mode.test.ts and the "provider modes" describes in plan.test.ts / apply.test.ts.
Every resource with a local (dev) provider gets a {Resource}.local.test.ts co-located with its live test, using Test.make({ providers, dev: true }). Dev-mode tests run local providers behind a file-scoped RPC sidecar by default — the same RpcProviderProxy topology the real alchemy dev command uses, where providerServicesEffect layers (e.g. localRuntimeServices()) are EMPTY in the test process and RPC-backed providers run their lifecycle in the sidecar. This is what catches a plain local provider that needs those services in the main process (the class of bug behind #1007, which in-process tests masked). Test.make({ ..., sidecar: false }) opts a file back into the in-process topology — reserve it for debugging provider code or pinning the in-process path a plain alchemy deploy takes when deleting providerMode: "local" rows.
The suite must cover, minimum:
- The local roundtrip — deploy the resource + a worker binding it (file-based fixture
main, never inlinescript— unsupported in dev) and drive the binding over HTTP against the local simulator. Assert the resource's identity carries thedev:marker (proof no cloud call ran; for the Worker itself the marker is ahttp://localhost:<port>url). - The
Alchemy.remote()opt-out — the same shape with the resource piped throughAlchemy.remote(): assert a real (non-dev:) identity, round-trip through the remote-proxied binding, verify out-of-band via distilled that the write landed in the real cloud resource, and afterstack.destroy()verify the cloud resource is gone (pins the stamped-mode delete path).
Reference: KV Namespace.local.test.ts (includes the mixed local + live stack), R2 Bucket.local.test.ts, D1 Database.local.test.ts (includes local migrations and the #1007 regression), Queues Queue.local.test.ts (produce→consume through RPC-backed providers). The harness contract itself is pinned by TestSidecar.test.ts.
To test runtime behavior of an Effect-native Worker, Workflow, Lambda, etc., write a fixture that defines the Worker/Function with the bindings under test and exposes one HTTP route per behavior, then write a test that deploys the fixture once via beforeAll and drives it over HTTP.
Put fixtures in a fixtures/ directory next to the test file. Each test suite owns its own fixtures — never reach across suites:
packages/alchemy/test/{Cloud}/{Service}/{Resource}.test.ts
packages/alchemy/test/{Cloud}/{Service}/fixtures/{worker|workflow|handler}.tsResolve the bindings, expose one route per behavior, default-export the class so the test can deploy it directly:
// fixtures/worker.ts
import * as Cloudflare from "@/Cloudflare/index.ts";
import * as Effect from "effect/Effect";
import { HttpServerRequest } from "effect/unstable/http/HttpServerRequest";
import * as HttpServerResponse from "effect/unstable/http/HttpServerResponse";
import { Gateway } from "./gateway.ts";
export default class TestWorker extends Cloudflare.Worker<TestWorker>()(
"TestWorker",
{
main: import.meta.url,
},
Effect.gen(function* () {
const aiGateway = yield* Cloudflare.AI.QueryGateway(Gateway);
return {
fetch: Effect.gen(function* () {
const request = yield* HttpServerRequest;
if (request.url.startsWith("/url")) {
const url = yield* aiGateway.getUrl().pipe(Effect.orDie);
return yield* HttpServerResponse.json({ url });
}
return HttpServerResponse.text("ok");
}),
};
}).pipe(Effect.provide(Cloudflare.AI.QueryGatewayBinding)),
) {}Compose a Stack that deploys the fixture, share one deploy across the file with beforeAll/afterAll, drive it via HttpClient, and retry the first request through edge propagation:
// Service.test.ts
import * as Alchemy from "@/index.ts";
import * as Cloudflare from "@/Cloudflare";
import * as Test from "@/Test/Alchemy";
import { expect } from "alchemy-test";
import * as Effect from "effect/Effect";
import * as Schedule from "effect/Schedule";
import * as HttpClient from "effect/unstable/http/HttpClient";
import TestWorker from "./fixtures/worker.ts";
const { test, beforeAll, afterAll, deploy, destroy } = Test.make({
providers: Cloudflare.providers(),
});
const Stack = Alchemy.Stack(
"ServiceTestStack",
{ providers: Cloudflare.providers(), state: Cloudflare.state() },
Effect.gen(function* () {
const worker = yield* TestWorker;
return { url: worker.url.as<string>() };
}),
);
const stack = beforeAll(deploy(Stack));
afterAll.skipIf(!!process.env.NO_DESTROY)(destroy(Stack));
test(
"deployed worker exercises the binding",
Effect.gen(function* () {
const { url } = yield* stack;
const client = yield* HttpClient.HttpClient;
const res = yield* client.get(`${url}/url`).pipe(
Effect.retry({ schedule: Schedule.exponential("500 millis"), times: 10 }),
);
expect(res.status).toBe(200);
const body = (yield* res.json) as { url: string };
expect(body.url).toContain("gateway.ai.cloudflare.com");
}),
{ timeout: 180_000 },
);Notes:
-
Test.make({ providers: Cloudflare.providers() })gives youtest,beforeAll,afterAll,deploy,destroy. -
beforeAll(deploy(Stack))returns a handle (stackabove) that everytestbody canyield*to get the stack outputs. -
afterAll.skipIf(!!process.env.NO_DESTROY)(destroy(Stack))is the standard cleanup — setNO_DESTROY=1locally to keep the deployment around between runs while iterating. -
Always retry the first request (
Schedule.exponential("500 millis")) — fresh workers.dev URLs and Lambda function URLs take a few seconds to start serving 200s. -
For POST: use
client.post(url)for empty bodies, orHttpClient.execute(HttpClientRequest.post(url).pipe(HttpClientRequest.bodyJsonUnsafe(body)))for typed bodies. -
Never use
while (Date.now() < deadline)loops to poll for an async side effect (a workflow status, a cron fire, a queue drain, eventual-consistency read, etc.). UseEffect.repeatwith aScheduleand anuntilpredicate so the polling participates in the Effect runtime — tracing, interruption, and error propagation work correctly, and the intent is declarative. Cap iterations withtimes: N(or a bounded schedule) so the test fails fast instead of running until the test timeout:// good — declarative, bounded, interruption-safe const value = yield* fetchValue.pipe( Effect.repeat({ schedule: Schedule.spaced("5 seconds"), until: (v) => v.ready, times: 36, }), ); // bad — opaque loop, ignores interruption, leaks into the test timeout let value: Value | undefined; const deadline = Date.now() + 180_000; while (Date.now() < deadline) { value = yield* fetchValue; if (value.ready) break; yield* Effect.sleep("5 seconds"); }
See CronEventSource.test.ts for a real-world example (polling a DO via the worker's
/timesroute until the cron handler fires).
- Cloudflare.AI.Gateway — worker fixture + test (the deploy+fetch case lives at the bottom of the file)
- Cloudflare D1Connection — worker fixture + test
- Cloudflare Workflow — workflow fixture + worker fixture + test
- Cloudflare Cron Trigger — worker + DO fixture + test (cron handler writes to a DO; test polls a fetch route with
Effect.repeatuntil the scheduled handler fires) - Cloudflare Images — effect fixture + async fixture + test
- AWS Lambda (DynamoDB bindings) — Lambda fixture + test (one
describe("<BindingName>")per binding, all driving the same deployed Lambda)
Use @processes/AWS.md as the source of truth for bringing a single AWS service from zero to full coverage.
That process covers:
- deriving resources, bindings, event sources, and helpers from distilled
- the audit-driven implementation loop
- deterministic checks for registration and binding test coverage
- Lambda fixture testing conventions
- learned conventions like no auto-marshalling and one
describe("<BindingName>")block per binding
Keep AGENTS.md high-level and update @processes/AWS.md when the process evolves.
When a canonical resource needs mutable event-source configuration and there is any chance of circularity, prefer a resource binding contract over a plain input prop. DynamoDB Streams is the reference case: Table owns the actual stream state, while streams(table) injects that state via bindings and the runtime-specific layer handles the subscription mechanics. See @processes/AWS.md for the DynamoDB Streams case study.
Always run type checking before committing changes:
pnpm exec tsc -bThis runs the TypeScript compiler in build mode, which checks all projects in the workspace (including the distilled packages, which are project references). This is critical because CI will fail if there are type errors.
packages/alchemy/test runs on alchemy-test (packages/alchemy-test), our own single-process, Effect-native test runner. The CLI is vitest/bun-test compatible: positional paths (files or directories) and -t work the same way.
There is exactly ONE entry point: pnpm test <options>. It works identically from the repo root and from packages/alchemy (the root script just cds into packages/alchemy); suite paths are always relative to packages/alchemy. Compose the flags you need — there are no per-variant package scripts. NOTE: pnpm test, not bun test — the latter invokes bun's own built-in test runner.
# a suite, against the real cloud
pnpm test test/Cloudflare/{Service}/{Resource}.test.ts --profile testing
# a directory, filtered by test name
pnpm test test/Cloudflare/Workers -t "cron" --profile testing
# positional args that aren't real paths are file-name substring filters
pnpm test Bucket --profile testing # every *Bucket* test file
# skip the slow tests (replaces the old FAST=1 env prefix)
pnpm test --fast --profile testing
# interactive TUI (humans only — never in an agent shell)
pnpm test --tui(examples/ still use plain bun test.)
If an interrupted live-cloud test leaves resources behind, do not add test-specific API cleanup helpers, adoption workarounds, or alternate names to make the test pass. Clean the testing account with the account-wide teardown command, then rerun the failing test:
pnpm nuke
pnpm clear:state --profile testingLifecycle tests should continue to validate normal stack ownership and cleanup; they must not silently adopt or directly delete leaked resources from earlier runs.
Additional flags beyond vitest:
| Flag | Default | Purpose |
|---|---|---|
-t <regex> |
— | Test-name pattern (regex, like bun/vitest) tested against the full nested title (file > describes > name), so any fragment matches regardless of nesting. An invalid regex degrades to a literal substring instead of erroring. Remember to escape regex metacharacters when filtering literally: -t "create \(default\)" |
--profile <name> |
— | Sets ALCHEMY_PROFILE before any test module is imported. Use --profile testing for live-cloud suites instead of an ALCHEMY_PROFILE=testing env prefix |
--fast |
off | Sets FAST=1 before imports — suites skipIf(process.env.FAST) their slow tests (long-provisioning resources, smoke tests). Replaces the FAST=1 env prefix |
--timeout <ms> |
120000 | Default per-test timeout |
--retry <n> |
2 | Re-runs of a failing test body (use --retry 0 when debugging) |
--concurrency <n|unbounded> |
32 | Files running concurrently (one bun process, no forks). Bounded by default — unbounded saturates the event loop on large suites and produces spurious 0ms beforeAll timeouts |
--sequential |
off | Run tests within each file sequentially |
--tui |
off | Opt-in interactive TUI (default is line-per-test output) |
Output behavior (plain mode, the default):
- The collection phase (importing every test file, ~45s for the full suite) reports
collecting N/TOTAL test files (elapsed) <current file>— repainted in place on a TTY, printed every 5s otherwise. A run that appears stuck before any test starts is almost always just collecting; if it really is stuck, the line names the file whose import hangs. - One line per test as it finishes, prefixed with a
[done/total]progress counter so the remaining count is visible; a failing test prints its error and captured output inline immediately. - Passing tests' output is swallowed on the console — but every test's output (passes included) is streamed to a per-run log at
.alchemy/log/test/{timestamp}-pid{pid}.log(relative to the cwd), so concurrent runs in different terminals never trample each other. The absolute path (with line/KB counts) is printed at the end of every run (Full log: …) — read that file when you need the complete record, e.g. a passing test's deploy output or a hang's partial log. The file is appended live, so it's readable mid-run; logs older than a week are pruned automatically (by stat mtime). - If nothing finishes for 10s, the runner prints the list of currently-running tests with elapsed times — the first place to look when a run seems hung.
- Exit code is non-zero if any test failed.
Runner semantics to know:
- Everything runs in ONE bun process: files run concurrently (respecting
describe.sequential), imports of all test files happen up-front (they must be lazy and pure — registration only, no top-level side effects beyondTest.make/describe/test). - Tests that mutate process-global state (e.g.
process.env.PATH) must pass{ exclusive: true }in the test options to take the whole-process write lock. - The harness (
alchemy-testpackage) providesdescribe,it/test(incl.it.effect/it.live), hooks,layer,expect, andassert— the codemodscripts/codemod-alchemy-test.tsmigrates vitest imports and is idempotent. - The runner runs in plain bun, so distilled resolves from
src/*.tsvia thebunexport condition — a regenerated service is test-visible immediately, nolib/rebuild required.
Ironing out the AWS suite is an iterative loop, driven by a coordinator, that terminates only when the suite is green AND the account is clean for two consecutive rounds. "Green" alone is not the bar — a passing test that leaves cloud resources behind is a provider bug by definition.
Each iteration:
- Clean slate — first run
aws sso login(the alchemytestingprofile and the rawawsCLI ride the same SSO session; an expired token mid-round breaks the pipeline with auth errors — only escalate to a human if the login doesn't complete automatically). Thenpnpm nuke --yes(deletes every alchemy-tagged cloud resource;scripts/nuke.shalready spares state buckets, SSO roles, and AWS-managed singletons) thenpnpm alchemy state delete Nuke --config ./stacks/nuke.ts --profile testing --recursive. Never overlap nuke with a running suite. Plainpnpm clear:statelacks the profile and dies on expired Cloudflare OAuth; nuke without--yeshangs on an interactive confirm in non-interactive shells. - Full suite, bounded —
pnpm test test/AWS --profile testing. The runner defaults to--concurrency 32; NEVER override it tounboundedon a full-suite run: all ~775 files'beforeAlldeploys start at once, the event loop saturates, and hundreds of fake 0msbeforeAll TimeoutErrorfailures drown the real signal (heap is ~8.5 GB regardless of N — the constraint is CPU, not memory). Target ≤10 min wall-clock, hard cap 128; measured 32 → ~21 min clean. The saturation tell isbeforeAllfailures at 0ms; real failures fail slow. If the cap can't reach 10 min, the residual is individual slow files — skipIf-gate them per the speed doctrine. - Leak census —
pnpm nuke --dry-runafter the suite; diff against the pre-suite baseline. Worklist = failed services ∪ leaking services (a service can pass green and still leak). Leave the leaked resources LIVE as forensic evidence for the fix agents; carry-over holdouts that survive repeated nuke passes (stuck deletes) go on the worklist too — their delete path is the bug. - Fix-fleet workflow — one agent per service on the worklist (account-singleton services — CloudTrail, Config, SecurityHub, GuardDuty, ControlTower, IdentityCenter — run as a sequential chain; everything else fans out). Each agent gets its exact failures, its leak inventory, and this root-cause priority: provider bug > distilled patch > test fix — never paper over a provider leak in the test. Each agent runs ONLY its own suite (
timeout 240 pnpm test test/AWS/{Service} --profile testing), audits its tests for non-deterministic names (rely on PhysicalName auto-naming; random data in message payloads/idempotency tokens is fine), verifies zero orphans from its service via out-of-band distilled list/describe calls, and reports a structured result. Agents never run tsc/build and never run the account-wide nuke. - Gate — the coordinator runs the one-shot
pnpm exec tsc -b, fixes cross-cutting fallout, commits the iteration (+ distilled submodule bump when patches were made), and loops back to 0. Terminate on two consecutive iterations of green-suite + census reduced to documented-undeletable residue (e.g. BackupSearch terminal records, Contributor-Insights rules with no delete API, keys in scheduled deletion).
When many agents work concurrently (see The Resource Factory Process), do NOT let each agent run pnpm exec tsc -b — concurrent runs thrash the machine and race on tsbuildinfo. Agents never invoke the compiler; the coordinator runs a one-shot pnpm exec tsc -b at wave boundaries as the authoritative type check.
| Command | Description |
|---|---|
pnpm exec tsc -b |
Type check all projects (always run before committing) |
pnpm build |
Clean, type check, and build the alchemy package |
pnpm build:clean |
Full clean rebuild: cleans all artifacts, reinstalls dependencies, builds, and downloads env |
Use pnpm build:clean when you encounter stale build artifacts or dependency issues. It runs:
pnpm clean .- Removes all untracked files except .envpnpm install- Reinstalls dependenciespnpm build- Builds the projectpnpm download:env- Downloads environment files
Tutorials under website/src/content/docs/tutorial/ are step-by-step and granular: every code snippet introduces exactly one new thing, followed by a short prose explanation of just that thing. Each step gets its own ## heading.
Anti-pattern — one snippet that adds multiple distinct changes, followed by a numbered list or bullet list explaining each:
## Bind the DO to the Worker
```diff lang="typescript"
+import Counter from "./counter.ts";
+import { HttpServerRequest } from "...";
Effect.gen(function* () {
+ const counters = yield* Counter;
return {
fetch: Effect.gen(function* () {
+ const request = yield* HttpServerRequest;
+ if (request.url.startsWith("/counter/") && ...) {
+ const next = yield* counters.getByName(name).increment();
+ return HttpServerResponse.text(String(next));
+ }
return HttpServerResponse.text("Hello!");
}),
};
})
```
Two things just happened:
1. `yield* Counter` registers the DO ...
2. `counters.getByName(name)` returns a typed stub ...Correct — split into one heading per step, each with one snippet and one explanation:
## Bind the DO to the Worker
```diff lang="typescript"
+import Counter from "./counter.ts";
Effect.gen(function* () {
+ const counters = yield* Counter;
...
})
```
`yield* Counter` registers the DO with the Worker (binding + class-migration metadata) and hands you the namespace.
## Call the DO from `fetch`
```diff lang="typescript"
+import { HttpServerRequest } from "...";
fetch: Effect.gen(function* () {
+ const request = yield* HttpServerRequest;
+ if (request.url.startsWith("/counter/") && ...) {
+ const next = yield* counters.getByName(name).increment();
+ return HttpServerResponse.text(String(next));
+ }
return HttpServerResponse.text("Hello!");
})
```
`counters.getByName(name)` returns a typed stub — `increment()` and `get()` round-trip through Cloudflare's RPC machinery.Rules of thumb:
- If you find yourself writing "Two/three things just happened", "A few things are happening here", or a numbered/bulleted list explaining separate parts of a single snippet — split the snippet.
- One concept ⇒ one heading ⇒ one diff snippet ⇒ one explanation paragraph (no bullets).
- Bullet/numbered lists are fine when they describe a recap, prerequisites, or genuinely list-shaped content (e.g. "the Worker now handles two routes: PUT and GET" at the end). They are not fine as a substitute for splitting a compound snippet.
- A single API call that internally does several things (e.g.
Cloudflare.upgrade()) doesn't need splitting — describe its behavior in prose. - Use
diff lang="typescript"blocks so each step shows what's added on top of the previous step.
When you automatically open a PR, it MUST follow this structure:
- Title: Use conventional commit format (e.g.
fix(website): mobile theme metas,feat(aws/s3): add bucket lifecycle rules). - Description heading levels: NEVER use
#or##in the PR description. The smallest heading allowed is###. The PR description must NOT begin with its own title heading — GitHub already renders the PR title above it. - Content: Aim for the minimal content needed to convey the idea.
- Use simple sentences. If there are multiple discrete changes, use bullet points.
- Prefer code snippets over prose. A short
```tsor```diffblock showing the new/changed shape is worth more than a paragraph explaining it. Reach for code first; only add prose to fill in the "why" the snippet can't show on its own. - Be direct and succinct. Cut adjectives, justifications, and anything that reads like marketing copy. If a sentence is restating what the diff already shows, delete it.
- Never include a "Test plan", "Testing", or checklist of TODOs. PR descriptions document the change, not the verification process. If something needs manual verification, follow the draft-PR rule below.
- Skip examples for trivial fixes, internal refactors, or doc-only changes.
Example PR description (good — code snippet does the talking):
Track which state-store backend each project uses by emitting a `state_store.init` span tagged with `alchemy.state_store.kind`.
```ts
// every Layer.effect(State, …) site now wraps construction:
makeLocalState().pipe(recordStateStoreInit("local"))
```
Dashboard groups projects by kind from these spans (Axiom can't APL-query metric datasets).
- Outstanding work / testing / review needed: If there are outstanding steps, manual testing required, or review items, DO NOT leave a comment on the PR and DO NOT include them in the PR description. Instead:
- Mark the PR as draft.
- Tell the user (in the chat that initiated the PR creation) what is outstanding.
:::warning
Markdown content must reach GitHub verbatim — un-escaped backticks, fenced code blocks, etc. The reliable shape is to write the description to a file and pass --body-file <path> to gh pr create / gh pr edit:
# write the body to a temp file (use Write tool, not echo/cat heredoc)
gh pr edit 179 --body-file /tmp/pr-body.mdDo not inline the body via --body "$(cat <<'EOF' ... EOF)". Even with a single-quoted heredoc some shells / gh versions still mangle backticks and backslashes; the resulting PR body ends up with literal \`` sequences instead of inline code spans. --body-file` sidesteps shell quoting entirely.
If you need to update an already-created PR's body, prefer gh pr edit --body-file .... If that silently no-ops (older gh versions), fall back to gh api -X PATCH repos/<owner>/<repo>/pulls/<n> -F body=@/tmp/pr-body.md.
:::
The summary goes at the very top of the description as plain prose — NO heading above it, no ### Summary, nothing. The PR title already serves as the title; do not repeat or re-title it. Only add ### subheadings further down if the description genuinely has multiple sections worth separating.
Example PR description (good):
Persist the user's selected theme across reloads and fix a hero scroll glitch on mobile.
- Read theme from `localStorage` on mount before first paint
- Add `<meta name="theme-color">` per theme so mobile chrome matches
Example PR description (BAD — do not do this):
## Theme persistence fix ← no, the PR title already exists
### Summary ← no, summary needs no heading
Persist the user's theme...
Release blog posts live in website/src/content/docs/blog/ named
YYYY-MM-DD-beta-NN.md (date = the release date).
Frontmatter title format: <version> - <short title>, e.g.
2.0.0-beta.45 - Config & RPC Workers. The title renders in the
blog TOC sidebar, so the descriptive suffix must be short — a few
words that fit neatly on one line. Lead with the version so the
list stays sorted and scannable.
Writing style (match the existing beta posts, e.g. beta.41, beta.44):
- Lean, concise, zero-fluff. Illustrate each new feature/fix and link to the relevant docs/tutorials/guides.
- Read each PR in the release's changelog to understand what actually changed before writing.
- Lead with the headline features (one
##heading each, with a short code snippet ordiff), then fold the long tail into an## Also in this releasebullet list. - Put breaking changes in a
:::cautioncallout at the top. - Cite PRs inline as
([#NNN](…/pull/NNN))and credit external contributors by name. - End with a
## Where to go nextlist of doc links plus the CHANGELOG and compare links.