fix(workflow-executor): align @forestadmin/* deps with the workspace - #1643
Merged
Conversation
The pinned versions lagged the workspace and lacked APIs the source uses (AiClient/BaseChatModel from ai-proxy, ServerUtils from forestadmin-client, Collection.getOne from agent-client), so workflow-executor:build failed in CI. Bump them to the current workspace versions so it builds against the same sources every other package does. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Scra3
approved these changes
Jun 10, 2026
|
Coverage Impact This PR will not change total coverage. 🚦 See full report on Qlty Cloud »🛟 Help
|
claude-fable-5 has always-on thinking: it rejects the
thinking: {type: 'disabled'} param LangChain sends by default, and
requires thinking blocks to be replayed verbatim on multi-turn tool
calls, which the proxy's OpenAI-format message conversion drops.
Excluding it gives a clear AIModelNotSupportedError upfront instead of
provider 400s, and unblocks the llm.integration CI job.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
hercemer42
commented
Jun 10, 2026
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
forest-bot
added a commit
that referenced
this pull request
Jun 10, 2026
## @forestadmin/ai-proxy [1.11.1](https://github.com/ForestAdmin/agent-nodejs/compare/@forestadmin/ai-proxy@1.11.0...@forestadmin/ai-proxy@1.11.1) (2026-06-10) ### Bug Fixes * **workflow-executor:** align @forestadmin/* deps with the workspace ([#1643](#1643)) ([a901753](a901753))
forest-bot
added a commit
that referenced
this pull request
Jun 10, 2026
# @forestadmin/workflow-executor 1.0.0 (2026-06-10) ### Bug Fixes * **workflow-executor:** align @forestadmin/* deps with the workspace ([#1643](#1643)) ([a901753](a901753)) ### Features * **executor:** introduce workflow executor ([#1564](#1564)) ([1545069](1545069)) ### Dependencies * **@forestadmin/agent-client:** upgraded to 1.6.1 * **@forestadmin/ai-proxy:** upgraded to 1.11.1 * **@forestadmin/forestadmin-client:** upgraded to 1.40.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
@forestadmin/workflow-executor:buildis currently failing in CI (and onmain) with a wall ofTS2305/TS2339/TS2614errors:Root cause:
workflow-executorpins its@forestadmin/*deps to stale exact versions that lag the workspace and don't export the APIs its source uses. Every other package in the monorepo references the current workspace versions and builds fine —workflow-executoris the lone laggard. (It's a chicken-and-egg: semantic-release bumps these on release, but the broken build blocks the release that would fix them.)Change
Bump the three pinned deps to the current workspace versions:
@forestadmin/agent-client@forestadmin/ai-proxy@forestadmin/forestadmin-client(plus the corresponding
yarn.lockupdate).Also: exclude
claude-fable-5from tool-supporting models (ai-proxy)Fixing the build let the full test matrix run for the first time in a while, which unmasked a pre-existing failure in the required
LLM Integration Tests (ai-proxy)job: Anthropic's newclaude-fable-5fails the tool-support sweep. It has always-on thinking — it rejects thethinking: {type: "disabled"}param that LangChain sends by default, and it requires thinking blocks to be replayed verbatim on multi-turn tool calls, which the proxy's OpenAI-format message conversion drops. Adding it toANTHROPIC_UNSUPPORTED_MODELSgives users a clearAIModelNotSupportedErrorupfront instead of provider 400s (same pattern as the o1/o3/o4 exclusions on the OpenAI side). Proper Fable support would need thinking-block passthrough in the wire format — a separate feature.This has to land here rather than in its own PR because the integration job can't go green on any branch until this PR's build fix is on it.
Verification
lerna run build --scope @forestadmin/workflow-executor --include-dependenciesnow succeeds (tscclean) where it previously failed. ai-proxy unit tests (404) and lint pass; the previously failingdatasource-mongoand OpenAI-503 failures cleared on re-run (flaky/transient).This is independent of #1641 (PRD-496) — it unblocks the
workflow-executorbuild onmainfor everyone.🤖 Generated with Claude Code
Note
Align
@forestadmin/*dependencies inworkflow-executorwith workspace versionsBumps three direct dependencies in package.json to match the rest of the workspace:
@forestadmin/agent-clientto 1.6.0,@forestadmin/ai-proxyto 1.11.0, and@forestadmin/forestadmin-clientto 1.40.0. The lockfile is updated accordingly.Changes since #1643 opened
ANTHROPIC_UNSUPPORTED_MODELSconstant in theai-proxypackage with documentation explaining the incompatibility is due to always-on thinking requirements and mandatory verbatim replay of thinking blocks across tool calls, and added test cases verifying thatisModelSupportingToolscorrectly identifies 'claude-fable-5' with provider 'anthropic' as unsupported while confirming 'claude-opus-4-8' remains supported [655833a]ANTHROPIC_UNSUPPORTED_MODELSconstant [2e56cd2]Macroscope summarized 13493e0.