Skip to content

Commit cc3cfdb

Browse files
blog/twie_2025_08_15 (#1201)
Co-authored-by: Mirela Prifti <57798527+mirelaprifti@users.noreply.github.com>
1 parent 562ddc8 commit cc3cfdb

File tree

1 file changed

+224
-0
lines changed
  • content/src/content/docs/blog/this-week-in-effect/2025/08

1 file changed

+224
-0
lines changed
Lines changed: 224 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
---
2+
pagefind: false
3+
title: This Week in Effect - 2025-08-15
4+
excerpt: Claude Code from scratch with Effect, by Kit Langton. Amazon Bedrock AI provider integration. Implementing a feature or Effect Workflows.
5+
date: 2025-08-15
6+
authors:
7+
- davide_scognamiglio
8+
- mirela_prifti
9+
- michael_arnaldi
10+
tags:
11+
- This Week In Effect
12+
---
13+
14+
import { YouTube } from "@astro-community/astro-embed-youtube"
15+
import Tweet from "astro-tweet"
16+
import TwitchPlayerNonInteractive from "@/components/TwitchPlayerNonInteractive.astro"
17+
18+
Hi Effecters!
19+
20+
Welcome back to This Week In Effect (**TWIE**) - your weekly update of the latest developments in the Effect community and ecosystem.
21+
22+
Effect is a powerful TypeScript library that helps developers create complex, synchronous, and asynchronous programs. One key feature that sets Effect apart is how it leverages structured concurrency to provide features such as async cancellation and safe resource management, making it easier to build robust, scalable, and efficient programs.
23+
24+
To get started, below you’ll find links to our documentation as well as our guide for installing Effect. Enjoy!
25+
26+
- [Effect Documentation](/docs/getting-started/introduction/)
27+
- [Installing Effect](/docs/getting-started/installation/)
28+
29+
30+
**Recent major updates:**
31+
32+
- [Effect 3.17](https://effect.website/blog/releases/effect/317) Release.
33+
- Durable workflows in TypeScript with [`@effect/workflow`](https://github.com/Effect-TS/effect/blob/main/packages/workflow/README.md) - currently in alpha.
34+
- Effect AI integration packages, [`@effect/ai`](https://github.com/Effect-TS/effect/tree/main/packages/ai) - currently in alpha.
35+
- Effect crossed [10K Stars on GitHub](https://github.com/Effect-TS/effect) 🌟.
36+
- The [Effect community](https://discord.gg/effect-ts) on Discord reached 5050+ members!
37+
38+
&nbsp;
39+
## Technology
40+
41+
Here are all the technical changes from the past week.
42+
43+
### Effect AI
44+
- [Respect disableToolCallResolution flag in stream call](https://github.com/Effect-TS/effect/pull/5351) (Bug Fix)
45+
- [Add support for OpenAi GPT-5 options and AiLanguageModel.embedMany](https://github.com/Effect-TS/effect/pull/5361) (Feature)
46+
- [Fix: Tool calls with no argumets get ignored](https://github.com/Effect-TS/effect/pull/5352) (Bug Fix)
47+
48+
### Effect Cluster
49+
- [Improve RunnerHealth by detecting if Runner is connected to the host](https://github.com/Effect-TS/effect/pull/5358) (Improvement)
50+
51+
### Effect Experimental
52+
- [Only trigger Reactivity invalidation on successful mutation](https://github.com/Effect-TS/effect/pull/5365) (Bug Fix)
53+
- [Add setMany to ResultPersistence](https://github.com/Effect-TS/effect/pull/5385) (Feature)
54+
55+
### Effect Opentelemetry
56+
- [Temporarily disable otlp exporter if endpoint can't be reached](https://github.com/Effect-TS/effect/pull/5380) (Bug Fix)
57+
58+
### Effect Platform
59+
- [HttpServerResponse.redirect defaults to 302 Found status](https://github.com/Effect-TS/effect/pull/5355) (Improvement)
60+
- [Add HttpServerResponse.expireCookie](https://github.com/Effect-TS/effect/pull/5357) (Feature)
61+
- [Add cors to HttpLayerRouter rpc example](https://github.com/Effect-TS/effect/pull/5370) (Documentation Update)
62+
- [Ensure user input is always offered to the terminal mailbox](https://github.com/Effect-TS/effect/pull/5383) (Bug Fix)
63+
- [Adjust xForwardedHeaders middleware to always use x-forwarded-for](https://github.com/Effect-TS/effect/pull/5311) (Bug Fix, next-minor)
64+
- [Support multiple HttpLayerRouter.addHttpApi](https://github.com/Effect-TS/effect/pull/5391) (Feature)
65+
66+
### Effect RPC
67+
- [Improve: add flatten option to RpcTest.makeClient](https://github.com/Effect-TS/effect/pull/5375) (Improvement)
68+
- [Expose clientId to rpc request handlers](https://github.com/Effect-TS/effect/pull/5389) (Improvement)
69+
70+
### Effect Vitest
71+
- [Fix: Correct error message for when the test was interrupted](https://github.com/Effect-TS/effect/pull/5386) (Bug Fix)
72+
73+
&nbsp;
74+
75+
## Community Highlights
76+
77+
&nbsp;
78+
79+
- **Claude Code from Scratch with Effect** by Kit Langton.
80+
81+
<YouTube
82+
id="https://www.youtube.com/embed/aueu9lm2ubo?si=ZJiEyJ_vZLDZ54Tp"
83+
title="Claude Code from Scratch with Effect"
84+
/>
85+
86+
&nbsp;
87+
88+
- Four more videos from the **Build an App with Effect** series by Lucas Barake.
89+
90+
<YouTube
91+
id="https://www.youtube.com/embed/pzSxzxp_7ZM?si=h62fuZy02DRBOkjN"
92+
title="Writable Atoms | #8 Building an App with Effect"
93+
/>
94+
95+
&nbsp;
96+
97+
<YouTube
98+
id="https://www.youtube.com/embed/ZXnrsTYLMhQ?si=ogYQaNhm7_ztLmTN"
99+
title="Toastify Atoms! | #9 Building an App with Effect"
100+
/>
101+
102+
&nbsp;
103+
104+
<YouTube
105+
id="https://www.youtube.com/embed/aWL4jFldjww?si=ZGxQdk-jiDhKGs1h"
106+
title="Atom's Time-to-Live System | #10 Building an App with Effect"
107+
/>
108+
109+
&nbsp;
110+
111+
<YouTube
112+
id="https://www.youtube.com/embed/6-2M71dc-d4?si=XEdYPeljz5k_9EFp"
113+
title="Creating an OpenAI Service | #11 Building an App with Effect"
114+
/>
115+
116+
&nbsp;
117+
## Effect Content Update
118+
119+
**Implementing a Feature for Effect Workflows** & **Amazon Bedrock AI provider integration for the Effect AI SDKs** are now on our YouTube Channel.
120+
121+
<YouTube
122+
id="https://www.youtube.com/embed/1p5M2HotTxE?si=or5q4GULl6qOtOeu"
123+
title="Implementing a Feature for Effect Workflows"
124+
/>
125+
126+
&nbsp;
127+
128+
<YouTube
129+
id="https://www.youtube.com/embed/foXwx_5I_v4?si=4IpjSo4CfpteUv-K"
130+
title="Amazon Bedrock AI provider integration for the Effect AI SDKs"
131+
/>
132+
133+
&nbsp;
134+
## Cause & Effect Podcast
135+
136+
Don't forget to listen to our **Cause & Effect** podcast hosted by Johannes Schickling and available on [Youtube](https://www.youtube.com/@effect-ts), [X(Twitter)](https://x.com/EffectTS_/status/1952323630945477085), and audio platforms like [Spotify](https://open.spotify.com/episode/55UP4hMa20s7taw16kABEU) and [Apple Podcast](https://podcasts.apple.com/us/podcast/from-skeptic-to-advocate-scaling-effect-at-vercel-4/id1781879869?i=1000720579998).
137+
138+
This podcast highlights stories from software engineers and companies using Effect in production. Each episode explores their journey of adopting Effect, including the learning process, challenges faced, and benefits of integrating Effect into their tech stack.
139+
140+
We've published our fourth episode with Dillon Mulroy, Domains Lead at [Vercel](https://vercel.com), who shares his own journey with Effect and how Vercel gradually adopted it across their Domains platform. Dillon explains why Effect feels like having superpowers for error handling, observability, testing, and more!
141+
142+
<YouTube
143+
id="https://www.youtube.com/embed/rPKohHGPqCY?si=wLEZ5iEtn7aG0NeM"
144+
title="From Skeptic to Advocate: Scaling Effect at Vercel | Dillon Mulroy | Cause & Effect #4"
145+
/>
146+
147+
&nbsp;
148+
## Effect Job Opportunities
149+
150+
More and more companies are adopting Effect in their projects. Here’s a list of companies looking for software engineers with Effect experience:
151+
152+
- **Expand.ai**: [Founding Engineer](https://www.expand.ai/careers/founding-engineer)
153+
154+
- **Platonic Systems**: [Remote Effect Engineers](https://twitter.com/platonicsystems/status/1861470819861311945)
155+
156+
- **Inato**: [Product Engineers / Fullstack Engineers](https://jobs.lever.co/inato/6df2d1e3-ce0a-487b-a930-840759803d44)
157+
158+
- **Medbill.ai**: [Founding Software Engineers (full-stack and backend)](https://www.linkedin.com/posts/codingtom_medbill-ai-activity-7260092522708762624-N7TH)
159+
160+
- **Oneiro Solutions**: Software Engineer - Core Team. [Join Effect Discord](https://discord.com/channels/795981131316985866/796153351372275743) and DM *leighman* for further info.
161+
162+
- **Microsub**: [TS Developer](https://x.com/0xdownshift/status/1880013835878154510)
163+
164+
- **Samsung Food**: [Full Stack Developer](https://whisk.bamboohr.com/careers/110)
165+
166+
- **Margins**: [Product Engineer](https://margins.app/jobs/product-engineer)
167+
168+
- **[Precurion](https://precurion.com/)** looking for a remote‑first Founding Engineer with Effect experience – See the job posting in the `#job-board` channel on [our Discord](https://discord.com/channels/795981131316985866/796153351372275743/1362610725931061258).
169+
170+
- **Vitalize Care** is hiring a full-stack engineer with Effect experience: [Full-Stack Engineer](https://jobs.ashbyhq.com/vitalize/d907ba5f-0f2f-4bb4-931a-1680d6daf81a)
171+
172+
- **Embedded Insurance** is hiring for a [Senior Software Engineering](https://embeddedinsurance.bamboohr.com/careers/23) position.
173+
174+
- **Betalyra**, an AI consulting company from Portugal, is looking for a part-time freelance software engineer (TypeScript/Effect) with AI experience – see the job posting in the `#job-board` channel on [our Discord](https://discord.com/channels/795981131316985866/796153351372275743/1362610725931061258).
175+
176+
- **Software Intelligence Works**: [Senior Full-Stack Engineer](https://remotive.com/remote-jobs/software-dev/senior-full-stack-engineer-2011648)
177+
178+
- **14.ai**: [Founding engineer](https://14.ai/careers)
179+
180+
- **Wander** is hiring [Software Developers](https://ship.wander.com) with experience in Effect.
181+
182+
- **Glide**: [Senior Frontend Product Engineer](https://www.glideapps.com/jobs/frontend-product-engineer)
183+
184+
- **Stealth team** looking for a software engineer with Effect experience – see the job posting in the `#job-board` channel on [our Discord](https://discord.com/channels/795981131316985866/796153351372275743/1362610725931061258).
185+
186+
- **A French-speaking** startup team led by Stephan Le Dorze is looking for a freelancer to join them - [see his LinkedIn post](https://www.linkedin.com/posts/stephaneledorze_mission-longue-avec-moi-entre-autre-activity-7310947252741570560-Bqsh/) for more details.
187+
188+
- **Freckle.io** is hiring [Platform Engineers](https://x.com/code_typist/status/1930326662677434561) with experience in Effect.
189+
190+
- **A stealth team** that has already scaled their product to 50K daily active users in the last year, is looking for [Effect Developers](https://x.com/wireless_dev/status/1930314012723687739). DM [wireless](https://x.com/wireless_dev) on X for more info.
191+
192+
- Job opening for [Japanese-speaking developers](https://note.com/luma/n/n679d4dcdb363)
193+
194+
- **VST**: [Senior Full Stack Software Engineer](https://www.linkedin.com/jobs/view/3854111540/)
195+
196+
- **Globe Commerce**: [Founding Product Engineer](https://www.linkedin.com/jobs/view/4264203054)
197+
198+
- **Introw**: [Staff Software Engineer](https://join.com/companies/introw/14395111-staff-software-engineer)
199+
200+
- **spring.new**, Anthropic's flagship costumer, is hiring engineers experienced in Effect. See the job posting in the `#job-board` channel on [our Discord](https://discord.com/channels/795981131316985866/796153351372275743/1405134163287343196).
201+
202+
- **ManageSpace** is looking for a Senior Developer to mentor other developers and migrate to Effect – see the job posting in the `#job-board` channel on [our Discord](https://discord.com/channels/795981131316985866/796153351372275743/1389557459949060098).
203+
204+
- **coteach.ai** is looking for a Software Engineer – see the job posting in the `#job-board` channel on [our Discord](https://discord.com/channels/795981131316985866/796153351372275743/1394724166309253290) and DM *Peter Edmonds* for further info.
205+
206+
- **Small SaaS team** is looking for a part-time Effect Developer to implement Effect in their stack. The job posting is available in the `#job-board` channel on [our Discord](https://discord.com/channels/795981131316985866/796153351372275743/1397684638834491412), DM *jonpage* for further info.
207+
208+
_Disclaimer: Please note that these job postings are shared for informational purposes, and we encourage applicants to verify details directly with the hiring companies._
209+
210+
211+
&nbsp;
212+
## Effect Merch Store
213+
214+
The [Effect Merch Store](https://effect.website/merch) offers a selection of Effect-branded items designed for the community. All orders are processed and fully managed through [Printful](https://www.printful.com/).
215+
216+
<Tweet id="1868605126862385238" />
217+
218+
219+
&nbsp;
220+
## Closing Notes
221+
222+
That's all for this week. Thank you for being a vital part of our community. Your feedback is highly valued as we fine-tune this format. Feel free to share your thoughts, and we'll do our best to tailor it to the needs of our community.
223+
224+
_Effect Community Team_

0 commit comments

Comments
 (0)