Skip to content

Commit 18a8fc1

Browse files
ci: changeset release
1 parent 393b912 commit 18a8fc1

File tree

7 files changed

+15
-26
lines changed

7 files changed

+15
-26
lines changed

.changeset/fix-notify-intent-hardcoded-repo.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/keyword-based-detection.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/neat-pots-melt.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/workspace-scanning-integration-tests.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/young-bats-shop.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/intent/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @tanstack/intent
22

3+
## 0.0.21
4+
5+
### Patch Changes
6+
7+
- Replace hardcoded `TanStack/intent` dispatch target in `notify-intent.yml` template with `${{ github.repository }}` so the workflow works for any repo, not just TanStack org libraries. ([#82](https://github.com/TanStack/intent/pull/82))
8+
9+
- Replace bin.intent detection with tanstack-intent keyword check for package discovery. Remove the `add-library-bin` command and bin shim generation system — packages are now identified by having `"tanstack-intent"` in their keywords array, which was already required for registry discovery. Also fix `collectPackagingWarnings` to skip the `!skills/_artifacts` warning for monorepo packages. ([#81](https://github.com/TanStack/intent/pull/81))
10+
11+
- Make `scanForIntents` and `scanLibrary` synchronous instead of returning Promises for purely synchronous work. Clean up unnecessary async/await throughout source and tests, extract DRY test helpers, and improve type narrowing. ([#55](https://github.com/TanStack/intent/pull/55))
12+
13+
- Add workspace-aware scanning so `intent list` discovers skills in monorepo workspace packages when run from the root. Replace `resolveDepDir` with `createRequire`-based resolution that handles hoisted deps, pnpm symlinks, and export maps. The `resolveDepDir` public API signature changed from 4 parameters to 2 — callers using the old signature should update to `resolveDepDir(depName, parentDir)`. `detectPackageManager` now checks workspace root for lockfiles when scanning from a subdir. ([#79](https://github.com/TanStack/intent/pull/79))
14+
15+
- Improves the intent CLI with better setup validation, clearer feedback, version conflict detection, and improved monorepo support. ([#72](https://github.com/TanStack/intent/pull/72))
16+
317
## 0.0.18
418

519
### Patch Changes

packages/intent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/intent",
3-
"version": "0.0.20",
3+
"version": "0.0.21",
44
"description": "Ship compositional knowledge for AI coding agents alongside your npm packages",
55
"license": "MIT",
66
"type": "module",

0 commit comments

Comments
 (0)