Skip to content

[pull] main from VoltAgent:main#1

Open
pull[bot] wants to merge 921 commits into
wsnchristopher:mainfrom
VoltAgent:main
Open

[pull] main from VoltAgent:main#1
pull[bot] wants to merge 921 commits into
wsnchristopher:mainfrom
VoltAgent:main

Conversation

@pull

@pull pull Bot commented Jul 3, 2026

Copy link
Copy Markdown

See Commits and Changes for more details.


Created by pull[bot] (v2.0.0-alpha.4)

Can you help keep this open source service alive? 💖 Please sponsor : )

rallu and others added 30 commits January 19, 2026 05:12
…rences more effectively (#961)

* refactor: improve safeStringify function to handle circular references more effectively

Fixes #960

* chore: add changeset

* chore: review

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>

---------

Co-authored-by: Omer Aplak <omeraplak@gmail.com>
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* feat: add voltagent-level memory

* feat: add unit tests

* fix: code review
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
#973)

* fix: normalize Anthropic usage for finish events so totals reflect the last step in multi-step runs

* fix: code review
* feat: enhance Manifesto component

* fix: remove console log from fetchData in Manifesto component
#974)

* feat: add memory HTTP endpoints for conversations, messages, working memory, and search

* fix: code review issues

* fix: code reviews

* chore: fix code reviews

* fix: code reviews
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
#978)

* feat: allow tool-specific hooks and let `onToolEnd` override tool output #975

* chore: add recipes

* chore: fix code reviews

* chore: fix code reviews
…rols, and embedding routing (#980)

* feat: allow tool-specific hooks and let `onToolEnd` override tool output #975

* chore: add recipes

* feat: add tool routing for agents with router tools, pool/expose controls, and embedding routing

* chore: fix code reviews

* fix: build error

* chore: fix code reviews

* fix: code reviews
* feat: add Tool Routing documentation to explain scaling tool use and implementation

* fix: update image URL for Tool Routing blog post

* fix: update label for VoltAgent tab in documentation navbar
truffle-dev and others added 24 commits May 22, 2026 23:35
* fix(core): honor Retry-After header on retried model calls

The retry loop in `executeWithModelFallback` always used local exponential
backoff capped at 10 seconds, regardless of what the server asked for.
Under shared provider contention this caused concurrent agents to converge
their retry windows into the same window the provider had just told them
to wait past, amplifying load on already-overloaded endpoints.

Move the retry-delay math into a small `retry-after` module that parses
both delta-seconds and HTTP-date forms (RFC 7231 §7.1.3), takes the server
hint as a floor, keeps the exponential floor as a backpressure baseline,
and caps at 5 minutes so a misconfigured or hostile server cannot pin the
agent for hours.

Closes #1276.

* fix(core): match Retry-After header case-insensitively

`responseHeaders` is normalized to lowercase by the AI SDK, but providers
that build the bag from a raw `fetch` Response can leak any casing
through, so the lookup needs to match RFC 7230 §3.2 case-insensitively
instead of only checking `retry-after` and `Retry-After`.

Adds three regression tests for mixed-case spellings.
* feat(examples): add Xquik tools example

* docs: add Xquik tool docstrings

---------

Co-authored-by: kriptoburak <kriptoburak@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Ruan Chaves <ruanchaves@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
…1318)

* fix(server-core): validate workflow ownership on control endpoints

* chore(ci): rerun flaky build checks

* fix(server-core): harden workflow control request validation

---------

Co-authored-by: Ruan Chaves <ruanchaves@users.noreply.github.com>
The Airtable Agent and Slack Agent links in README.md and all i18n
variants pointed to /examples/guides/<slug> which returns 404. The
recipes plugin in website/docusaurus.config.ts uses
routeBasePath: 'recipes-and-guides' (line 160), and existing redirects
at lines 467-471 and 531-557 confirm /examples/guides/* was never a
valid route. Updates the 5 README files to use the correct
/recipes-and-guides/<slug> path.

Affected:
- README.md (lines 254-255)
- i18n/README-cn-bsc.md
- i18n/README-cn-traditional.md
- i18n/README-jp.md
- i18n/README-kr.md

Co-authored-by: dymux <putramkti@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* fix(core): sanitize tool inputs before replay

* chore(examples): remove issue 1336 repro
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Updated TestMu AI sponsor link with new branding and description.
* feat(core): add parallel input guardrails

* refactor(core): harden parallel input guardrails

* feat(core): emit input guardrail block events

* docs(core): align guardrail UI events with AI SDK

* fix(core): align guardrail stream forwarding

* fix(core): gate speculative guardrail side streams
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
WorkflowStateManager.finish() reassigned the stored input to the current
data, so reading state.input after a workflow completed returned the final
output instead of the initial input it documents. update() already preserves
the input during a run; finish() now does too. state.data still reflects the
final value. Adds a regression test.
…#1331)

* docs(server-core): add README with package overview and usage example

* docs(server-core): fix incorrect handler and registry names in README

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* ci: retrigger checks (Playwright lockfile flake)

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
@pull pull Bot locked and limited conversation to collaborators Jul 3, 2026
@pull pull Bot added ⤵️ pull merge-conflict Resolve conflicts manually labels Jul 3, 2026
@wsnchristopher wsnchristopher reopened this Jul 3, 2026
@wsnchristopher

Copy link
Copy Markdown
Owner

.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

⤵️ pull merge-conflict Resolve conflicts manually

Projects

None yet

Development

Successfully merging this pull request may close these issues.