Skip to content

chore(deps): bump the minor group with 13 updates#1245

Merged
benbrandt merged 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-59ed8105e9
May 19, 2026
Merged

chore(deps): bump the minor group with 13 updates#1245
benbrandt merged 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-59ed8105e9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor group with 13 updates:

Package From To
mint 4.2.566 4.2.568
@mintlify/cli 4.0.1169 4.0.1171
@mintlify/common 1.0.898 1.0.900
@mintlify/link-rot 3.0.1077 3.0.1079
@mintlify/models 0.0.309 0.0.310
@mintlify/prebuild 1.0.1042 1.0.1044
@mintlify/previewing 4.0.1103 4.0.1105
@mintlify/scraping 4.0.762 4.0.764
@mintlify/validation 0.1.704 0.1.706
@types/node 25.8.0 25.9.0
arktype 2.1.27 2.2.0
mdast-util-from-markdown 2.0.2 2.0.3
remark-gfm 4.0.0 4.0.1

Updates mint from 4.2.566 to 4.2.568

Commits

Updates @mintlify/cli from 4.0.1169 to 4.0.1171

Commits

Updates @mintlify/common from 1.0.898 to 1.0.900

Commits

Updates @mintlify/link-rot from 3.0.1077 to 3.0.1079

Commits

Updates @mintlify/models from 0.0.309 to 0.0.310

Commits

Updates @mintlify/prebuild from 1.0.1042 to 1.0.1044

Commits

Updates @mintlify/previewing from 4.0.1103 to 4.0.1105

Commits

Updates @mintlify/scraping from 4.0.762 to 4.0.764

Commits

Updates @mintlify/validation from 0.1.704 to 0.1.706

Commits

Updates @types/node from 25.8.0 to 25.9.0

Commits

Updates arktype from 2.1.27 to 2.2.0

Changelog

Sourced from arktype's changelog.

2.2.0

Full announcement: https://arktype.io/docs/blog/2.2

type.fn - Validated functions

Define functions with runtime-validated parameters and return types. Supports defaults, optionals, and variadics.

const len = type.fn("string | unknown[]", ":", "number")(s => s.length)
len("foo") // 3
len([1, 2]) // 2

Type-safe regex via arkregex

Regex literals in definitions now carry full type inference. x-prefix parses capture groups at runtime.

const T = type({
	birthday: "x/^(?<month>\\d{2})-(?<day>\\d{2})-(?<year>\\d{4})$/"
})
T.assert({ birthday: "05-21-1993" }).birthday.groups.month // "05"

@ark/json-schema - Bidirectional JSON Schema

Parse JSON Schema into ArkType Types with the new @ark/json-schema package, complementing toJsonSchema(). Thanks to @​TizzySaurus.

Configurable toJsonSchema

Handle incompatibilities between ArkType and JSON Schema with granular fallback codes. Supports draft-07/draft-2020-12 targets and cyclic types.

Standard Schema as definitions

Any Standard Schema compliant validator (Zod, Valibot, etc.) can be embedded directly in ArkType definitions.

select - Deep reference introspection

Query the internal structure of a type by node kind and predicate. Use selectors to configure specific references.

Improved type.declare

Now supports morph-aware declarations via a side context, and optionality via property values.

N-ary operators

type.or, type.and, type.merge, and type.pipe accept variadic definitions.

... (truncated)

Commits

Updates mdast-util-from-markdown from 2.0.2 to 2.0.3

Release notes

Sourced from mdast-util-from-markdown's releases.

2.0.3

Fix

  • 971e026 Fix passing encoding: undefined w/ options

Full Changelog: syntax-tree/mdast-util-from-markdown@2.0.2...2.0.3

Commits

Updates remark-gfm from 4.0.0 to 4.0.1

Release notes

Sourced from remark-gfm's releases.

4.0.1

Types

  • 4af823a Refactor to use interface for exposed types
  • 3a57a5b Add declaration maps
  • 76559f9 Refactor to use @imports

Docs

Full Changelog: remarkjs/remark-gfm@4.0.0...4.0.1

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the minor group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [mint](https://github.com/mintlify/mint/tree/HEAD/packages/mint) | `4.2.566` | `4.2.568` |
| [@mintlify/cli](https://github.com/mintlify/mint/tree/HEAD/packages/cli) | `4.0.1169` | `4.0.1171` |
| [@mintlify/common](https://github.com/mintlify/mint/tree/HEAD/packages/common) | `1.0.898` | `1.0.900` |
| [@mintlify/link-rot](https://github.com/mintlify/mint/tree/HEAD/packages/link-rot) | `3.0.1077` | `3.0.1079` |
| [@mintlify/models](https://github.com/mintlify/mint/tree/HEAD/packages/models) | `0.0.309` | `0.0.310` |
| [@mintlify/prebuild](https://github.com/mintlify/mint/tree/HEAD/packages/prebuild) | `1.0.1042` | `1.0.1044` |
| [@mintlify/previewing](https://github.com/mintlify/mint/tree/HEAD/packages/previewing) | `4.0.1103` | `4.0.1105` |
| [@mintlify/scraping](https://github.com/mintlify/mint/tree/HEAD/packages/scraping) | `4.0.762` | `4.0.764` |
| [@mintlify/validation](https://github.com/mintlify/mint/tree/HEAD/packages/validation) | `0.1.704` | `0.1.706` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.8.0` | `25.9.0` |
| [arktype](https://github.com/arktypeio/arktype/tree/HEAD/ark/type) | `2.1.27` | `2.2.0` |
| [mdast-util-from-markdown](https://github.com/syntax-tree/mdast-util-from-markdown) | `2.0.2` | `2.0.3` |
| [remark-gfm](https://github.com/remarkjs/remark-gfm) | `4.0.0` | `4.0.1` |


Updates `mint` from 4.2.566 to 4.2.568
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/mint)

Updates `@mintlify/cli` from 4.0.1169 to 4.0.1171
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/cli)

Updates `@mintlify/common` from 1.0.898 to 1.0.900
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/common)

Updates `@mintlify/link-rot` from 3.0.1077 to 3.0.1079
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/link-rot)

Updates `@mintlify/models` from 0.0.309 to 0.0.310
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/models)

Updates `@mintlify/prebuild` from 1.0.1042 to 1.0.1044
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/prebuild)

Updates `@mintlify/previewing` from 4.0.1103 to 4.0.1105
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/previewing)

Updates `@mintlify/scraping` from 4.0.762 to 4.0.764
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/scraping)

Updates `@mintlify/validation` from 0.1.704 to 0.1.706
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/validation)

Updates `@types/node` from 25.8.0 to 25.9.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `arktype` from 2.1.27 to 2.2.0
- [Release notes](https://github.com/arktypeio/arktype/releases)
- [Changelog](https://github.com/arktypeio/arktype/blob/main/ark/type/CHANGELOG.md)
- [Commits](https://github.com/arktypeio/arktype/commits/arktype@2.2.0/ark/type)

Updates `mdast-util-from-markdown` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/syntax-tree/mdast-util-from-markdown/releases)
- [Commits](syntax-tree/mdast-util-from-markdown@2.0.2...2.0.3)

Updates `remark-gfm` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/remarkjs/remark-gfm/releases)
- [Commits](remarkjs/remark-gfm@4.0.0...4.0.1)

---
updated-dependencies:
- dependency-name: mint
  dependency-version: 4.2.568
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/cli"
  dependency-version: 4.0.1171
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/common"
  dependency-version: 1.0.900
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/link-rot"
  dependency-version: 3.0.1079
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/models"
  dependency-version: 0.0.310
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/prebuild"
  dependency-version: 1.0.1044
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/previewing"
  dependency-version: 4.0.1105
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/scraping"
  dependency-version: 4.0.764
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/validation"
  dependency-version: 0.1.706
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-version: 25.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: arktype
  dependency-version: 2.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: mdast-util-from-markdown
  dependency-version: 2.0.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: remark-gfm
  dependency-version: 4.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 18, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner May 18, 2026 23:59
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 18, 2026
@benbrandt
benbrandt merged commit 49e5b48 into main May 19, 2026
8 checks passed
@benbrandt
benbrandt deleted the dependabot/npm_and_yarn/minor-59ed8105e9 branch May 19, 2026 07:20
Copilot AI pushed a commit to marekdkropiewnicki-dotcom/agent-client-protocol that referenced this pull request May 24, 2026
…l#1245)

Bumps the minor group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [mint](https://github.com/mintlify/mint/tree/HEAD/packages/mint) | `4.2.566` | `4.2.568` |
| [@mintlify/cli](https://github.com/mintlify/mint/tree/HEAD/packages/cli) | `4.0.1169` | `4.0.1171` |
| [@mintlify/common](https://github.com/mintlify/mint/tree/HEAD/packages/common) | `1.0.898` | `1.0.900` |
| [@mintlify/link-rot](https://github.com/mintlify/mint/tree/HEAD/packages/link-rot) | `3.0.1077` | `3.0.1079` |
| [@mintlify/models](https://github.com/mintlify/mint/tree/HEAD/packages/models) | `0.0.309` | `0.0.310` |
| [@mintlify/prebuild](https://github.com/mintlify/mint/tree/HEAD/packages/prebuild) | `1.0.1042` | `1.0.1044` |
| [@mintlify/previewing](https://github.com/mintlify/mint/tree/HEAD/packages/previewing) | `4.0.1103` | `4.0.1105` |
| [@mintlify/scraping](https://github.com/mintlify/mint/tree/HEAD/packages/scraping) | `4.0.762` | `4.0.764` |
| [@mintlify/validation](https://github.com/mintlify/mint/tree/HEAD/packages/validation) | `0.1.704` | `0.1.706` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.8.0` | `25.9.0` |
| [arktype](https://github.com/arktypeio/arktype/tree/HEAD/ark/type) | `2.1.27` | `2.2.0` |
| [mdast-util-from-markdown](https://github.com/syntax-tree/mdast-util-from-markdown) | `2.0.2` | `2.0.3` |
| [remark-gfm](https://github.com/remarkjs/remark-gfm) | `4.0.0` | `4.0.1` |


Updates `mint` from 4.2.566 to 4.2.568
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/mint)

Updates `@mintlify/cli` from 4.0.1169 to 4.0.1171
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/cli)

Updates `@mintlify/common` from 1.0.898 to 1.0.900
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/common)

Updates `@mintlify/link-rot` from 3.0.1077 to 3.0.1079
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/link-rot)

Updates `@mintlify/models` from 0.0.309 to 0.0.310
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/models)

Updates `@mintlify/prebuild` from 1.0.1042 to 1.0.1044
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/prebuild)

Updates `@mintlify/previewing` from 4.0.1103 to 4.0.1105
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/previewing)

Updates `@mintlify/scraping` from 4.0.762 to 4.0.764
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/scraping)

Updates `@mintlify/validation` from 0.1.704 to 0.1.706
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/validation)

Updates `@types/node` from 25.8.0 to 25.9.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `arktype` from 2.1.27 to 2.2.0
- [Release notes](https://github.com/arktypeio/arktype/releases)
- [Changelog](https://github.com/arktypeio/arktype/blob/main/ark/type/CHANGELOG.md)
- [Commits](https://github.com/arktypeio/arktype/commits/arktype@2.2.0/ark/type)

Updates `mdast-util-from-markdown` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/syntax-tree/mdast-util-from-markdown/releases)
- [Commits](syntax-tree/mdast-util-from-markdown@2.0.2...2.0.3)

Updates `remark-gfm` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/remarkjs/remark-gfm/releases)
- [Commits](remarkjs/remark-gfm@4.0.0...4.0.1)

---
updated-dependencies:
- dependency-name: mint
  dependency-version: 4.2.568
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/cli"
  dependency-version: 4.0.1171
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/common"
  dependency-version: 1.0.900
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/link-rot"
  dependency-version: 3.0.1079
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/models"
  dependency-version: 0.0.310
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/prebuild"
  dependency-version: 1.0.1044
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/previewing"
  dependency-version: 4.0.1105
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/scraping"
  dependency-version: 4.0.764
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/validation"
  dependency-version: 0.1.706
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-version: 25.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: arktype
  dependency-version: 2.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: mdast-util-from-markdown
  dependency-version: 2.0.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: remark-gfm
  dependency-version: 4.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: marekdkropiewnicki-dotcom <259442047+marekdkropiewnicki-dotcom@users.noreply.github.com>
marekdkropiewnicki-dotcom added a commit to marekdkropiewnicki-dotcom/agent-client-protocol that referenced this pull request Jul 13, 2026
* Update author link in diff-delete RFD (agentclientprotocol#1111)

* docs: update supported platforms for ACP UI (agentclientprotocol#1112)

* docs: update registry agents (agentclientprotocol#1113)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1114)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1115)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1116)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1117)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1118)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1119)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* chore(deps): bump the minor group with 16 updates (agentclientprotocol#1122)

Bumps the minor group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [mint](https://github.com/mintlify/mint/tree/HEAD/packages/mint) | `4.2.531` | `4.2.546` |
| [@mintlify/cli](https://github.com/mintlify/mint/tree/HEAD/packages/cli) | `4.0.1134` | `4.0.1149` |
| [@mintlify/link-rot](https://github.com/mintlify/mint/tree/HEAD/packages/link-rot) | `3.0.1043` | `3.0.1057` |
| [@mintlify/prebuild](https://github.com/mintlify/mint/tree/HEAD/packages/prebuild) | `1.0.1008` | `1.0.1022` |
| [@mintlify/previewing](https://github.com/mintlify/mint/tree/HEAD/packages/previewing) | `4.0.1069` | `4.0.1083` |
| [b4a](https://github.com/holepunchto/b4a) | `1.8.0` | `1.8.1` |
| [bare-os](https://github.com/holepunchto/bare-os) | `3.9.0` | `3.9.1` |
| [bare-stream](https://github.com/holepunchto/bare-stream) | `2.13.0` | `2.13.1` |
| [basic-ftp](https://github.com/patrickjuchli/basic-ftp) | `5.3.0` | `5.3.1` |
| [es-toolkit](https://github.com/toss/es-toolkit) | `1.46.0` | `1.46.1` |
| [fast-uri](https://github.com/fastify/fast-uri) | `3.1.0` | `3.1.1` |
| [ip-address](https://github.com/beaugunderson/ip-address) | `10.1.1` | `10.2.0` |
| [nanoid](https://github.com/ai/nanoid) | `3.3.11` | `3.3.12` |
| [node-abi](https://github.com/electron/node-abi) | `3.89.0` | `3.90.0` |
| [socks](https://github.com/JoshGlazebrook/socks) | `2.8.7` | `2.8.8` |
| [yaml](https://github.com/eemeli/yaml) | `2.8.3` | `2.8.4` |


Updates `mint` from 4.2.531 to 4.2.546
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/mint)

Updates `@mintlify/cli` from 4.0.1134 to 4.0.1149
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/cli)

Updates `@mintlify/link-rot` from 3.0.1043 to 3.0.1057
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/link-rot)

Updates `@mintlify/prebuild` from 1.0.1008 to 1.0.1022
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/prebuild)

Updates `@mintlify/previewing` from 4.0.1069 to 4.0.1083
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/previewing)

Updates `b4a` from 1.8.0 to 1.8.1
- [Release notes](https://github.com/holepunchto/b4a/releases)
- [Commits](holepunchto/b4a@v1.8.0...v1.8.1)

Updates `bare-os` from 3.9.0 to 3.9.1
- [Release notes](https://github.com/holepunchto/bare-os/releases)
- [Commits](holepunchto/bare-os@v3.9.0...v3.9.1)

Updates `bare-stream` from 2.13.0 to 2.13.1
- [Release notes](https://github.com/holepunchto/bare-stream/releases)
- [Commits](holepunchto/bare-stream@v2.13.0...v2.13.1)

Updates `basic-ftp` from 5.3.0 to 5.3.1
- [Release notes](https://github.com/patrickjuchli/basic-ftp/releases)
- [Changelog](https://github.com/patrickjuchli/basic-ftp/blob/master/CHANGELOG.md)
- [Commits](patrickjuchli/basic-ftp@v5.3.0...v5.3.1)

Updates `es-toolkit` from 1.46.0 to 1.46.1
- [Release notes](https://github.com/toss/es-toolkit/releases)
- [Changelog](https://github.com/toss/es-toolkit/blob/main/CHANGELOG.md)
- [Commits](toss/es-toolkit@v1.46.0...v1.46.1)

Updates `fast-uri` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/fastify/fast-uri/releases)
- [Commits](fastify/fast-uri@v3.1.0...v3.1.1)

Updates `ip-address` from 10.1.1 to 10.2.0
- [Commits](https://github.com/beaugunderson/ip-address/commits)

Updates `nanoid` from 3.3.11 to 3.3.12
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@3.3.11...3.3.12)

Updates `node-abi` from 3.89.0 to 3.90.0
- [Release notes](https://github.com/electron/node-abi/releases)
- [Commits](electron/node-abi@v3.89.0...v3.90.0)

Updates `socks` from 2.8.7 to 2.8.8
- [Release notes](https://github.com/JoshGlazebrook/socks/releases)
- [Commits](https://github.com/JoshGlazebrook/socks/commits/2.8.8)

Updates `yaml` from 2.8.3 to 2.8.4
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.8.3...v2.8.4)

---
updated-dependencies:
- dependency-name: mint
  dependency-version: 4.2.546
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/cli"
  dependency-version: 4.0.1149
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/link-rot"
  dependency-version: 3.0.1057
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/prebuild"
  dependency-version: 1.0.1022
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/previewing"
  dependency-version: 4.0.1083
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: b4a
  dependency-version: 1.8.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: bare-os
  dependency-version: 3.9.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: bare-stream
  dependency-version: 2.13.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: basic-ftp
  dependency-version: 5.3.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: es-toolkit
  dependency-version: 1.46.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: fast-uri
  dependency-version: 3.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: ip-address
  dependency-version: 10.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: nanoid
  dependency-version: 3.3.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: node-abi
  dependency-version: 3.90.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: socks
  dependency-version: 2.8.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: yaml
  dependency-version: 2.8.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump the minor group with 2 updates (agentclientprotocol#1121)

Bumps the minor group with 2 updates: [serde_with](https://github.com/jonasbb/serde_with) and [serde_with_macros](https://github.com/jonasbb/serde_with).


Updates `serde_with` from 3.18.0 to 3.19.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.18.0...v3.19.0)

Updates `serde_with_macros` from 3.18.0 to 3.19.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.18.0...v3.19.0)

---
updated-dependencies:
- dependency-name: serde_with
  dependency-version: 3.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: serde_with_macros
  dependency-version: 3.19.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump crate-ci/typos from 1.45.2 to 1.46.0 (agentclientprotocol#1120)

Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.45.2 to 1.46.0.
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](crate-ci/typos@7c57295...bbaefad)

---
updated-dependencies:
- dependency-name: crate-ci/typos
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1123)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1125)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1126)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1127)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1128)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* transports: Revisions on streamable-http/ws GET streams (agentclientprotocol#1124)

* transports: Revisions on streamable-http/ws GET streams

Server->client messages are now delivered over two long-lived GET SSE
streams per connection:

  1. Connection-scoped stream (GET with Acp-Connection-Id) carries
     connection-level messages, including responses to session/new and
     session/load which are produced before the client has a sessionId.

  2. Session-scoped stream (GET with Acp-Connection-Id + Acp-Session-Id)
     carries session updates, request_permission, and responses to
     session-scoped POSTs.

Routing is now done by HTTP header rather than by inspecting the
sessionId in every JSON-RPC payload, and per-session streams have
independent lifetimes (open/close/resume) without disturbing other
sessions on the same connection.

Updates the elevator pitch, HTTP transport characteristics, routing
table, identity model, message flow diagram (with per-stream C/S
annotations), content negotiation rules, unified endpoint routing,
connection/session struct, MCP comparison, deviations, FAQ, and
revision history.

* Format streamable-http-websocket-transport.mdx with prettier

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Anna.Zhdan <anna.zhdan@jetbrains.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* docs: update registry agents (agentclientprotocol#1129)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs(rfd): Add v2 Draft folder (agentclientprotocol#1130)

* docs: update registry agents (agentclientprotocol#1131)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs(rfd): v2 plan overview (agentclientprotocol#1132)

Still a lot to do, but putting some of the framework in place.

* docs(rfd): Fix link in overview doc (agentclientprotocol#1134)

* docs: update registry agents (agentclientprotocol#1135)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1136)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1137)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1138)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1139)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1140)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1141)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1142)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1143)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1144)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1145)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs(rfd): Add `model_config` rfd (agentclientprotocol#930)

* Add plan rfd

* Update website

---------

Co-authored-by: Ben Brandt <benjamin.j.brandt@gmail.com>

* docs: Clients page: create CLI/TUI category (agentclientprotocol#1146)

* [Docs] Clients: create CLI/TUI category

* Header

* docs: update registry agents (agentclientprotocol#1147)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1148)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1149)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1150)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1151)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1152)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1153)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1154)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* chore(deps-dev): bump fast-uri from 3.1.1 to 3.1.2 (agentclientprotocol#1155)

Bumps [fast-uri](https://github.com/fastify/fast-uri) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/fastify/fast-uri/releases)
- [Commits](fastify/fast-uri@v3.1.1...v3.1.2)

---
updated-dependencies:
- dependency-name: fast-uri
  dependency-version: 3.1.2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1156)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1157)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1158)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1159)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1160)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1161)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1163)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1164)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1165)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1167)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1168)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: Add agentrq to clients and move gemini to alphanumeric sorted order (agentclientprotocol#1162)

* docs: update registry agents (agentclientprotocol#1169)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1171)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1172)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1174)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* chore(deps): bump crate-ci/typos from 1.46.0 to 1.46.1 (agentclientprotocol#1176)

Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.46.0 to 1.46.1.
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](crate-ci/typos@bbaefad...5374cbf)

---
updated-dependencies:
- dependency-name: crate-ci/typos
  dependency-version: 1.46.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump actions-rust-lang/setup-rust-toolchain (agentclientprotocol#1177)

Bumps [actions-rust-lang/setup-rust-toolchain](https://github.com/actions-rust-lang/setup-rust-toolchain) from 1.16.0 to 1.16.1.
- [Release notes](https://github.com/actions-rust-lang/setup-rust-toolchain/releases)
- [Changelog](https://github.com/actions-rust-lang/setup-rust-toolchain/blob/main/CHANGELOG.md)
- [Commits](actions-rust-lang/setup-rust-toolchain@2b1f5e9...46268bd)

---
updated-dependencies:
- dependency-name: actions-rust-lang/setup-rust-toolchain
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump release-plz/action from 0.5.128 to 0.5.129 (agentclientprotocol#1175)

Bumps [release-plz/action](https://github.com/release-plz/action) from 0.5.128 to 0.5.129.
- [Release notes](https://github.com/release-plz/action/releases)
- [Commits](release-plz/action@1528104...064f4d1)

---
updated-dependencies:
- dependency-name: release-plz/action
  dependency-version: 0.5.129
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump the minor group with 3 updates (agentclientprotocol#1178)

Bumps the minor group with 3 updates: [serde_with](https://github.com/jonasbb/serde_with), [cc](https://github.com/rust-lang/cc-rs) and [serde_with_macros](https://github.com/jonasbb/serde_with).


Updates `serde_with` from 3.19.0 to 3.20.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.19.0...v3.20.0)

Updates `cc` from 1.2.61 to 1.2.62
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.61...cc-v1.2.62)

Updates `serde_with_macros` from 3.19.0 to 3.20.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.19.0...v3.20.0)

---
updated-dependencies:
- dependency-name: serde_with
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: cc
  dependency-version: 1.2.62
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: serde_with_macros
  dependency-version: 3.20.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump the minor group with 15 updates (agentclientprotocol#1180)

Bumps the minor group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [mint](https://github.com/mintlify/mint/tree/HEAD/packages/mint) | `4.2.546` | `4.2.558` |
| [@mintlify/cli](https://github.com/mintlify/mint/tree/HEAD/packages/cli) | `4.0.1149` | `4.0.1161` |
| [@mintlify/link-rot](https://github.com/mintlify/mint/tree/HEAD/packages/link-rot) | `3.0.1057` | `3.0.1069` |
| [@mintlify/prebuild](https://github.com/mintlify/mint/tree/HEAD/packages/prebuild) | `1.0.1022` | `1.0.1034` |
| [@mintlify/previewing](https://github.com/mintlify/mint/tree/HEAD/packages/previewing) | `4.0.1083` | `4.0.1095` |
| [@types/estree](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/estree) | `1.0.8` | `1.0.9` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.6.0` | `25.7.0` |
| [@ungap/structured-clone](https://github.com/ungap/structured-clone) | `1.3.0` | `1.3.1` |
| [bare-url](https://github.com/holepunchto/bare-url) | `2.4.2` | `2.4.3` |
| [get-east-asian-width](https://github.com/sindresorhus/get-east-asian-width) | `1.5.0` | `1.6.0` |
| [is-core-module](https://github.com/inspect-js/is-core-module) | `2.16.1` | `2.16.2` |
| [node-abi](https://github.com/electron/node-abi) | `3.90.0` | `3.92.0` |
| [socks](https://github.com/JoshGlazebrook/socks) | `2.8.8` | `2.8.9` |
| [undici-types](https://github.com/nodejs/undici) | `7.19.2` | `7.21.0` |
| [yaml](https://github.com/eemeli/yaml) | `2.8.4` | `2.9.0` |


Updates `mint` from 4.2.546 to 4.2.558
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/mint)

Updates `@mintlify/cli` from 4.0.1149 to 4.0.1161
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/cli)

Updates `@mintlify/link-rot` from 3.0.1057 to 3.0.1069
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/link-rot)

Updates `@mintlify/prebuild` from 1.0.1022 to 1.0.1034
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/prebuild)

Updates `@mintlify/previewing` from 4.0.1083 to 4.0.1095
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/previewing)

Updates `@types/estree` from 1.0.8 to 1.0.9
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/estree)

Updates `@types/node` from 25.6.0 to 25.7.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@ungap/structured-clone` from 1.3.0 to 1.3.1
- [Commits](ungap/structured-clone@v1.3.0...v1.3.1)

Updates `bare-url` from 2.4.2 to 2.4.3
- [Release notes](https://github.com/holepunchto/bare-url/releases)
- [Commits](holepunchto/bare-url@v2.4.2...v2.4.3)

Updates `get-east-asian-width` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/sindresorhus/get-east-asian-width/releases)
- [Commits](sindresorhus/get-east-asian-width@v1.5.0...v1.6.0)

Updates `is-core-module` from 2.16.1 to 2.16.2
- [Changelog](https://github.com/inspect-js/is-core-module/blob/main/CHANGELOG.md)
- [Commits](inspect-js/is-core-module@v2.16.1...v2.16.2)

Updates `node-abi` from 3.90.0 to 3.92.0
- [Release notes](https://github.com/electron/node-abi/releases)
- [Commits](electron/node-abi@v3.90.0...v3.92.0)

Updates `socks` from 2.8.8 to 2.8.9
- [Release notes](https://github.com/JoshGlazebrook/socks/releases)
- [Commits](JoshGlazebrook/socks@2.8.8...2.8.9)

Updates `undici-types` from 7.19.2 to 7.21.0
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v7.19.2...v7.21.0)

Updates `yaml` from 2.8.4 to 2.9.0
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.8.4...v2.9.0)

---
updated-dependencies:
- dependency-name: mint
  dependency-version: 4.2.558
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/cli"
  dependency-version: 4.0.1161
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/link-rot"
  dependency-version: 3.0.1069
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/prebuild"
  dependency-version: 1.0.1034
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/previewing"
  dependency-version: 4.0.1095
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/estree"
  dependency-version: 1.0.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-version: 25.7.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@ungap/structured-clone"
  dependency-version: 1.3.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: bare-url
  dependency-version: 2.4.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: get-east-asian-width
  dependency-version: 1.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: is-core-module
  dependency-version: 2.16.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: node-abi
  dependency-version: 3.92.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: socks
  dependency-version: 2.8.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: undici-types
  dependency-version: 7.21.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: yaml
  dependency-version: 2.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1181)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* add unstable mcp-over-acp additions to the schema (agentclientprotocol#1173)

* feat: ignore agent-specific files

* Gate MCP-over-ACP types behind unstable_mcp_over_acp feature

Gate McpServer::Acp, McpServerAcp, and McpCapabilities.acp behind
convention for unstable protocol features.

* Cleanups

* Mirror MCP-over-ACP types in v2 module

v2 protocol types currently mirror v1 (enforced by JSON round-trip tests
in conversion.rs). Mirror the new unstable MCP-over-ACP additions:

- McpServerAcpId newtype
- McpServerAcp struct
- McpServer::Acp variant
- McpCapabilities.acp field

Plus IntoV1/IntoV2 conversions for the new types, all gated behind
unstable_mcp_over_acp.

Regenerates schema.v2.unstable.json and draft/schema-v2.mdx.

---------

Co-authored-by: Ben Brandt <benjamin.j.brandt@gmail.com>

* docs: update registry agents (agentclientprotocol#1182)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1183)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1184)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1186)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* feat(unstable): Add experimental MCP-over-ACP message types (agentclientprotocol#1185)

* chore: release v0.13.0 (agentclientprotocol#1179)

Co-authored-by: acp-release-bot[bot] <246668977+acp-release-bot[bot]@users.noreply.github.com>

* docs(rfd): Move Rust SDK RFD to Preview (agentclientprotocol#1187)

* docs: Add Sniptail to ACP clients (agentclientprotocol#1170)

Co-authored-by: JC <jc@actionaly.com>

* docs: update registry agents (agentclientprotocol#1188)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1189)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1190)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1191)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1192)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1193)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1194)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1195)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1197)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1198)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1200)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* Complete prompt variable processing implementation

- Regenerate JSON schemas to include new prompt variable types
- Fix PromptVariableType serialization test to correctly handle Select variant
- All schema files now include PromptTemplate, PromptVariable, and PromptVariableType
- Schema generation covers both stable and unstable versions (v1 and v2)
- All 275 tests now pass successfully

Co-authored-by: QuantuM <qumusai@proton.me>

* docs: update registry agents (agentclientprotocol#1203)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1204)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1205)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1206)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1207)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1208)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1209)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1210)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1211)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1212)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1213)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1215)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* feat(unstable): Add unstable session delete support (agentclientprotocol#1216)

* docs: Add acp-components to ACP clients (agentclientprotocol#1201)

Co-authored-by: weishao <weishaoo@noreply.gitcode.com>

* chore: release v0.13.1 (agentclientprotocol#1217)

Co-authored-by: acp-release-bot[bot] <246668977+acp-release-bot[bot]@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1218)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1219)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1221)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1223)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs(rfd): Move logout method RFD to Preview (agentclientprotocol#1225)

* docs(rfd): Move logout method RFD to Preview

* Document draft authentication flow

* docs: update registry agents (agentclientprotocol#1226)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* fix(unstable): Update additionalDirectories guidance (agentclientprotocol#1227)

In the implementation phase it has become clear most agents treat this
as optional data in their persistence, and it is ok to change on
resume/load. Given this, loosening the requirements of the RFD.

Remove additional-root filter from session list as well, since it is
best-effort anyway, and probably more of a footgun than not.

* chore: release v0.13.2 (agentclientprotocol#1228)

Co-authored-by: acp-release-bot[bot] <246668977+acp-release-bot[bot]@users.noreply.github.com>

* docs: Document ACP versioning semantics (agentclientprotocol#1229)

* chore: update mint version (agentclientprotocol#1230)

* chore: Set minimum supported Rust version (agentclientprotocol#1232)

Also check feature compatibility

* docs: update registry agents (agentclientprotocol#1234)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1235)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1236)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1238)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1239)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1240)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1254)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* chore(deps): bump the minor group with 13 updates (agentclientprotocol#1245)

Bumps the minor group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [mint](https://github.com/mintlify/mint/tree/HEAD/packages/mint) | `4.2.566` | `4.2.568` |
| [@mintlify/cli](https://github.com/mintlify/mint/tree/HEAD/packages/cli) | `4.0.1169` | `4.0.1171` |
| [@mintlify/common](https://github.com/mintlify/mint/tree/HEAD/packages/common) | `1.0.898` | `1.0.900` |
| [@mintlify/link-rot](https://github.com/mintlify/mint/tree/HEAD/packages/link-rot) | `3.0.1077` | `3.0.1079` |
| [@mintlify/models](https://github.com/mintlify/mint/tree/HEAD/packages/models) | `0.0.309` | `0.0.310` |
| [@mintlify/prebuild](https://github.com/mintlify/mint/tree/HEAD/packages/prebuild) | `1.0.1042` | `1.0.1044` |
| [@mintlify/previewing](https://github.com/mintlify/mint/tree/HEAD/packages/previewing) | `4.0.1103` | `4.0.1105` |
| [@mintlify/scraping](https://github.com/mintlify/mint/tree/HEAD/packages/scraping) | `4.0.762` | `4.0.764` |
| [@mintlify/validation](https://github.com/mintlify/mint/tree/HEAD/packages/validation) | `0.1.704` | `0.1.706` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.8.0` | `25.9.0` |
| [arktype](https://github.com/arktypeio/arktype/tree/HEAD/ark/type) | `2.1.27` | `2.2.0` |
| [mdast-util-from-markdown](https://github.com/syntax-tree/mdast-util-from-markdown) | `2.0.2` | `2.0.3` |
| [remark-gfm](https://github.com/remarkjs/remark-gfm) | `4.0.0` | `4.0.1` |


Updates `mint` from 4.2.566 to 4.2.568
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/mint)

Updates `@mintlify/cli` from 4.0.1169 to 4.0.1171
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/cli)

Updates `@mintlify/common` from 1.0.898 to 1.0.900
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/common)

Updates `@mintlify/link-rot` from 3.0.1077 to 3.0.1079
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/link-rot)

Updates `@mintlify/models` from 0.0.309 to 0.0.310
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/models)

Updates `@mintlify/prebuild` from 1.0.1042 to 1.0.1044
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/prebuild)

Updates `@mintlify/previewing` from 4.0.1103 to 4.0.1105
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/previewing)

Updates `@mintlify/scraping` from 4.0.762 to 4.0.764
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/scraping)

Updates `@mintlify/validation` from 0.1.704 to 0.1.706
- [Commits](https://github.com/mintlify/mint/commits/HEAD/packages/validation)

Updates `@types/node` from 25.8.0 to 25.9.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `arktype` from 2.1.27 to 2.2.0
- [Release notes](https://github.com/arktypeio/arktype/releases)
- [Changelog](https://github.com/arktypeio/arktype/blob/main/ark/type/CHANGELOG.md)
- [Commits](https://github.com/arktypeio/arktype/commits/arktype@2.2.0/ark/type)

Updates `mdast-util-from-markdown` from 2.0.2 to 2.0.3
- [Release notes](https://github.com/syntax-tree/mdast-util-from-markdown/releases)
- [Commits](syntax-tree/mdast-util-from-markdown@2.0.2...2.0.3)

Updates `remark-gfm` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/remarkjs/remark-gfm/releases)
- [Commits](remarkjs/remark-gfm@4.0.0...4.0.1)

---
updated-dependencies:
- dependency-name: mint
  dependency-version: 4.2.568
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/cli"
  dependency-version: 4.0.1171
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/common"
  dependency-version: 1.0.900
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/link-rot"
  dependency-version: 3.0.1079
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/models"
  dependency-version: 0.0.310
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/prebuild"
  dependency-version: 1.0.1044
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/previewing"
  dependency-version: 4.0.1105
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/scraping"
  dependency-version: 4.0.764
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@mintlify/validation"
  dependency-version: 0.1.706
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-version: 25.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: arktype
  dependency-version: 2.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: mdast-util-from-markdown
  dependency-version: 2.0.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: remark-gfm
  dependency-version: 4.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump num-conv from 0.2.1 to 0.2.2 in the minor group (agentclientprotocol#1244)

Bumps the minor group with 1 update: [num-conv](https://github.com/jhpratt/num-conv).


Updates `num-conv` from 0.2.1 to 0.2.2
- [Commits](jhpratt/num-conv@v0.2.1...v0.2.2)

---
updated-dependencies:
- dependency-name: num-conv
  dependency-version: 0.2.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump taiki-e/install-action from 2.77.6 to 2.79.1 (agentclientprotocol#1243)

Bumps [taiki-e/install-action](https://github.com/taiki-e/install-action) from 2.77.6 to 2.79.1.
- [Release notes](https://github.com/taiki-e/install-action/releases)
- [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md)
- [Commits](taiki-e/install-action@c070f87...b550161)

---
updated-dependencies:
- dependency-name: taiki-e/install-action
  dependency-version: 2.79.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump actions/create-github-app-token from 3.1.1 to 3.2.0 (agentclientprotocol#1242)

Bumps [actions/create-github-app-token](https://github.com/actions/create-github-app-token) from 3.1.1 to 3.2.0.
- [Release notes](https://github.com/actions/create-github-app-token/releases)
- [Changelog](https://github.com/actions/create-github-app-token/blob/main/CHANGELOG.md)
- [Commits](actions/create-github-app-token@1b10c78...bcd2ba4)

---
updated-dependencies:
- dependency-name: actions/create-github-app-token
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* chore(deps): bump crate-ci/typos from 1.46.1 to 1.46.2 (agentclientprotocol#1241)

Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.46.1 to 1.46.2.
- [Release notes](https://github.com/crate-ci/typos/releases)
- [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md)
- [Commits](crate-ci/typos@5374cbf...aca895b)

---
updated-dependencies:
- dependency-name: crate-ci/typos
  dependency-version: 1.46.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1256)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: Document protocol naming conventions (agentclientprotocol#1257)

Closes agentclientprotocol#1249

* docs: update registry agents (agentclientprotocol#1258)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1259)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: Fill out draft protocol documentation (agentclientprotocol#1260)

Makes it easier to see diffs as we iterate on these for new RFDs

* docs: update registry agents (agentclientprotocol#1262)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1263)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1265)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1266)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1267)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: Add schema download note to schema page (agentclientprotocol#1269)

* ci: Skip feature powerset when Rust is unchanged (agentclientprotocol#1270)

* docs: update registry agents (agentclientprotocol#1271)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* fix(unstable): Rename provider method types to singular (agentclientprotocol#1272)

For set and disable, these only ever operate on one at a time.

* docs: add ACP to AG-UI connector to clients list (agentclientprotocol#1268)

ACP to AG-UI is a protocol bridge that connects any ACP-compatible
agent to web frontends via AG-UI events over SSE. Tested with Kiro CLI
and Claude Agent ACP, supports CopilotKit, AG-UI HttpAgent, and custom
UI integrations.

Co-authored-by: Naman Rajpal <namanraj@amazon.com>

* docs: update registry agents (agentclientprotocol#1274)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1275)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs(rfd): Move additional directories RFD to Preview (agentclientprotocol#1276)

* docs: update registry agents (agentclientprotocol#1277)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1278)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1279)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* docs: update registry agents (agentclientprotocol#1280)

Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>

* feat: Stabilize logout method (agentclientprotocol#1273)

* chore: release v0.13.3 (agentclientprotocol#1231)

Co-authored-by: acp-release-bot[bot] <246668977+acp-release-bot[bot]@users.noreply.github.com>

* Complete prompt variable processing implementation

- Regenerate JSON schemas to include new prompt variable types
- Fix PromptVariableType serialization test to correctly handle Select variant
- All schema files now include PromptTemplate, PromptVariable, and PromptVariableType
- Schema generation covers both stable and unstable versions (v1 and v2)
- All 275 tests now pass successfully

Co-authored-by: QuantuM <qumusai@proton.me>

Co-authored-by: marekdkropiewnicki-dotcom <259442047+marekdkropiewnicki-dotcom@users.noreply.github.com>

* fix: resolve rebase conflicts and pass CI checks

Agent-Logs-Url: https://github.com/marekdkropiewnicki-dotcom/agent-client-protocol/sessions/b38ad0ed-dab7-46bc-9426-8a5132e29e5d

Co-authored-by: marekdkropiewnicki-dotcom <259442047+marekdkropiewnicki-dotcom@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Paul Kuruvilla <rohitpaulk@gmail.com>
Co-authored-by: Jun Han <formulahendry@gmail.com>
Co-authored-by: acp-release-bot[bot] <246668977+acp-release-bot[bot]@users.noreply.github.com>
Co-authored-by: benbrandt <2111074+benbrandt@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Hancock <alexhancock@block.xyz>
Co-authored-by: Anna.Zhdan <anna.zhdan@jetbrains.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-authored-by: Ben Brandt <benjamin.j.brandt@gmail.com>
Co-authored-by: Artem Tyurin <artem@poolside.ai>
Co-authored-by: Mustafa Turan <mustafaturan.net@gmail.com>
Co-authored-by: Niko Matsakis <niko@alum.mit.edu>
Co-authored-by: Justkog <j_c_blondeau@hotmail.com>
Co-authored-by: JC <jc@actionaly.com>
Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: 威少 <zvzuola@users.noreply.github.com>
Co-authored-by: weishao <weishaoo@noreply.gitcode.com>
Co-authored-by: Naman Rajpal <namanrajpal16@ufl.edu>
Co-authored-by: Naman Rajpal <namanraj@amazon.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant