From 2128f723440a43d9f658f670f56cf001776a56d0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jun 2026 03:08:00 +0000 Subject: [PATCH] ci: changeset release --- .changeset/yellow-queens-doubt.md | 17 ----------------- packages/intent/CHANGELOG.md | 18 ++++++++++++++++++ packages/intent/package.json | 2 +- 3 files changed, 19 insertions(+), 18 deletions(-) delete mode 100644 .changeset/yellow-queens-doubt.md diff --git a/.changeset/yellow-queens-doubt.md b/.changeset/yellow-queens-doubt.md deleted file mode 100644 index ff0426e..0000000 --- a/.changeset/yellow-queens-doubt.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'@tanstack/intent': patch ---- - -Fix skill discovery in Yarn Berry (PnP) projects. With `nodeLinker: pnp` and no -`node_modules`, dependencies live in `.yarn/cache/*.zip` archives readable only -through Yarn's libzip-patched filesystem. `intent list` and `intent load` now -read package metadata and `SKILL.md` files from those archives — including when -Intent runs via `npx`/`dlx` from outside the project's PnP graph. A failed PnP -load fails closed with a clear diagnostic, and the PnP resolution hook is no -longer left installed in Intent's process. - -Speed up skill discovery. Frontmatter parsing now reads only the leading region -of each `SKILL.md` instead of the whole file (~4x faster on large skill bodies), -and dependency resolution reuses its module resolver per package instead of -rebuilding it for every dependency. Also drops redundant filesystem checks in the -skill-file walk. diff --git a/packages/intent/CHANGELOG.md b/packages/intent/CHANGELOG.md index a306083..f92cae7 100644 --- a/packages/intent/CHANGELOG.md +++ b/packages/intent/CHANGELOG.md @@ -1,5 +1,23 @@ # @tanstack/intent +## 0.0.43 + +### Patch Changes + +- [#151](https://github.com/TanStack/intent/pull/151) [`ae42b35`](https://github.com/TanStack/intent/commit/ae42b3503ea0d6b759795396b87e55d3d9bf72cc) - Fix skill discovery in Yarn Berry (PnP) projects. With `nodeLinker: pnp` and no + `node_modules`, dependencies live in `.yarn/cache/*.zip` archives readable only + through Yarn's libzip-patched filesystem. `intent list` and `intent load` now + read package metadata and `SKILL.md` files from those archives — including when + Intent runs via `npx`/`dlx` from outside the project's PnP graph. A failed PnP + load fails closed with a clear diagnostic, and the PnP resolution hook is no + longer left installed in Intent's process. + + Speed up skill discovery. Frontmatter parsing now reads only the leading region + of each `SKILL.md` instead of the whole file (~4x faster on large skill bodies), + and dependency resolution reuses its module resolver per package instead of + rebuilding it for every dependency. Also drops redundant filesystem checks in the + skill-file walk. + ## 0.0.42 ### Patch Changes diff --git a/packages/intent/package.json b/packages/intent/package.json index 6f1e1e6..cb0ec13 100644 --- a/packages/intent/package.json +++ b/packages/intent/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/intent", - "version": "0.0.42", + "version": "0.0.43", "description": "Ship compositional knowledge for AI coding agents alongside your npm packages", "license": "MIT", "type": "module",