From 55d1ce3a0195a2208e7898c2c14f22af4effa81f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Jun 2026 07:28:45 +0000 Subject: [PATCH] ci: changeset release --- .changeset/crisp-flies-mate.md | 7 ------- .changeset/green-dingos-refuse.md | 12 ------------ packages/intent/CHANGELOG.md | 16 ++++++++++++++++ packages/intent/package.json | 2 +- 4 files changed, 17 insertions(+), 20 deletions(-) delete mode 100644 .changeset/crisp-flies-mate.md delete mode 100644 .changeset/green-dingos-refuse.md diff --git a/.changeset/crisp-flies-mate.md b/.changeset/crisp-flies-mate.md deleted file mode 100644 index 2283bb4..0000000 --- a/.changeset/crisp-flies-mate.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@tanstack/intent': minor ---- - -Add `package.json#intent.skills` source allowlisting to gate which discovered packages can contribute skills. - -`intent.exclude` now supports skill-level matching (for example `@scope/pkg#skill-id` and globs), and policy filtering is applied consistently across `intent list`, `intent load`, `intent install`, and `intent stale`. Notices are surfaced separately from warnings to keep command output machine-safe. diff --git a/.changeset/green-dingos-refuse.md b/.changeset/green-dingos-refuse.md deleted file mode 100644 index 65d00f7..0000000 --- a/.changeset/green-dingos-refuse.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@tanstack/intent': minor ---- - -Add a persistent `intent exclude` command for managing `package.json#intent.exclude` (`list`, `add`, `remove`), and document it in the CLI/config guides. - -Add notice suppression controls for automation: - -- `--no-notices` on `intent list` and `intent install` -- `INTENT_NO_NOTICES=1` environment variable - -Remove one-off CLI exclude flags from command surfaces (`list/load --exclude`); excludes are now managed via `package.json#intent.exclude` and `intent exclude`. diff --git a/packages/intent/CHANGELOG.md b/packages/intent/CHANGELOG.md index 9d2ab72..9be0fb1 100644 --- a/packages/intent/CHANGELOG.md +++ b/packages/intent/CHANGELOG.md @@ -1,5 +1,21 @@ # @tanstack/intent +## 0.1.0 + +### Minor Changes + +- [#157](https://github.com/TanStack/intent/pull/157) [`665370e`](https://github.com/TanStack/intent/commit/665370eeda0187643141f7bfb40619a0c62383e9) - Add `package.json#intent.skills` source allowlisting to gate which discovered packages can contribute skills. + + `intent.exclude` now supports skill-level matching (for example `@scope/pkg#skill-id` and globs), and policy filtering is applied consistently across `intent list`, `intent load`, `intent install`, and `intent stale`. Notices are surfaced separately from warnings to keep command output machine-safe. + +- [#157](https://github.com/TanStack/intent/pull/157) [`665370e`](https://github.com/TanStack/intent/commit/665370eeda0187643141f7bfb40619a0c62383e9) - Add a persistent `intent exclude` command for managing `package.json#intent.exclude` (`list`, `add`, `remove`), and document it in the CLI/config guides. + + Add notice suppression controls for automation: + - `--no-notices` on `intent list` and `intent install` + - `INTENT_NO_NOTICES=1` environment variable + + Remove one-off CLI exclude flags from command surfaces (`list/load --exclude`); excludes are now managed via `package.json#intent.exclude` and `intent exclude`. + ## 0.0.44 ### Patch Changes diff --git a/packages/intent/package.json b/packages/intent/package.json index cc4baf0..f2f0a09 100644 --- a/packages/intent/package.json +++ b/packages/intent/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/intent", - "version": "0.0.44", + "version": "0.1.0", "description": "Ship compositional knowledge for AI coding agents alongside your npm packages", "license": "MIT", "type": "module",