diff --git a/.changeset/thick-snakes-yell.md b/.changeset/thick-snakes-yell.md deleted file mode 100644 index 396e212..0000000 --- a/.changeset/thick-snakes-yell.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@tanstack/intent': patch ---- - -Add agent-safe hidden skill source handling to `intent list`. - -`intent list` now detects agent sessions with `std-env` and redacts unlisted allowlist candidates from agent-facing output. Agents see allowed skills plus a count-only hidden-source notice, while `intent list --show-hidden` reveals hidden source names only outside agent sessions. - -Agent-mode JSON output includes `hiddenSourceCount` but leaves `hiddenSources` empty, preventing structured output from leaking package names that could be added to `package.json#intent.skills`. diff --git a/packages/intent/CHANGELOG.md b/packages/intent/CHANGELOG.md index 45c6b6b..c4827f4 100644 --- a/packages/intent/CHANGELOG.md +++ b/packages/intent/CHANGELOG.md @@ -1,5 +1,15 @@ # @tanstack/intent +## 0.3.1 + +### Patch Changes + +- [#176](https://github.com/TanStack/intent/pull/176) [`5419b02`](https://github.com/TanStack/intent/commit/5419b0273ed3d1b09b488f10acf5f004dfec7e10) - Add agent-safe hidden skill source handling to `intent list`. + + `intent list` now detects agent sessions with `std-env` and redacts unlisted allowlist candidates from agent-facing output. Agents see allowed skills plus a count-only hidden-source notice, while `intent list --show-hidden` reveals hidden source names only outside agent sessions. + + Agent-mode JSON output includes `hiddenSourceCount` but leaves `hiddenSources` empty, preventing structured output from leaking package names that could be added to `package.json#intent.skills`. + ## 0.3.0 ### Minor Changes diff --git a/packages/intent/package.json b/packages/intent/package.json index d26484c..cea048a 100644 --- a/packages/intent/package.json +++ b/packages/intent/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/intent", - "version": "0.3.0", + "version": "0.3.1", "description": "Ship compositional knowledge for AI coding agents alongside your npm packages", "license": "MIT", "type": "module",