Skip to content

ci: Version Packages - #1118

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main
Open

ci: Version Packages#1118
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@tanstack/ai@0.45.0

Minor Changes

  • #1114 0fb8263 - Rename Code Mode "skills" to "snippets" to disambiguate them from agent skills (the SKILL.md packaging system).

    Breaking — package rename. @tanstack/ai-code-mode-skills is now published as @tanstack/ai-code-mode-snippets. Update your dependency and imports. The /storage subpath is unchanged.

    Breaking — API rename. Every Skill/skill identifier in the package public API becomes Snippet/snippet, for example:

    • codeModeWithSkills()codeModeWithSnippets()
    • skillsToTools() / skillToTool()snippetsToTools() / snippetToTool()
    • skillsToBindings() / skillsToSimpleBindings()snippetsToBindings() / snippetsToSimpleBindings()
    • selectRelevantSkills()selectRelevantSnippets()
    • createSkillManagementTools()createSnippetManagementTools()
    • createSkillsSystemPrompt()createSnippetsSystemPrompt()
    • generateSkillTypes()generateSnippetTypes()
    • createFileSkillStorage() / createMemorySkillStorage()createFileSnippetStorage() / createMemorySnippetStorage()
    • Types: Skill, SkillStorage, SkillIndexEntry, SkillStats, SkillBinding, SkillsConfig, CodeModeWithSkillsOptions/Result → the Snippet… equivalents
    • Options: skillssnippets, skillsAsToolssnippetsAsTools, maxSkillsInContextmaxSnippetsInContext
    • Runtime tools: search_skills / get_skill / register_skillsearch_snippets / get_snippet / register_snippet
    • Sandbox bindings are now exposed with the snippet_ prefix (was skill_)

    Breaking — sandbox hook (@tanstack/ai-code-mode). The createCodeModeTool config option getSkillBindings is renamed to getSnippetBindings (same signature — an optional () => Promise<Record<string, ToolBinding>> returning dynamic bindings merged at execution time).

    Breaking — wire contract (@tanstack/ai). The Code Mode custom events are renamed: code_mode:skill_call / _result / _errorcode_mode:snippet_* (payload field skillsnippet), and skill:registeredsnippet:registered. The exported event types CodeModeSkillCallEvent / CodeModeSkillResultEvent / CodeModeSkillErrorEvent / SkillRegisteredEvent are renamed to their Snippet equivalents.

@tanstack/ai-code-mode@0.4.0

Minor Changes

  • #1114 0fb8263 - Rename Code Mode "skills" to "snippets" to disambiguate them from agent skills (the SKILL.md packaging system).

    Breaking — package rename. @tanstack/ai-code-mode-skills is now published as @tanstack/ai-code-mode-snippets. Update your dependency and imports. The /storage subpath is unchanged.

    Breaking — API rename. Every Skill/skill identifier in the package public API becomes Snippet/snippet, for example:

    • codeModeWithSkills()codeModeWithSnippets()
    • skillsToTools() / skillToTool()snippetsToTools() / snippetToTool()
    • skillsToBindings() / skillsToSimpleBindings()snippetsToBindings() / snippetsToSimpleBindings()
    • selectRelevantSkills()selectRelevantSnippets()
    • createSkillManagementTools()createSnippetManagementTools()
    • createSkillsSystemPrompt()createSnippetsSystemPrompt()
    • generateSkillTypes()generateSnippetTypes()
    • createFileSkillStorage() / createMemorySkillStorage()createFileSnippetStorage() / createMemorySnippetStorage()
    • Types: Skill, SkillStorage, SkillIndexEntry, SkillStats, SkillBinding, SkillsConfig, CodeModeWithSkillsOptions/Result → the Snippet… equivalents
    • Options: skillssnippets, skillsAsToolssnippetsAsTools, maxSkillsInContextmaxSnippetsInContext
    • Runtime tools: search_skills / get_skill / register_skillsearch_snippets / get_snippet / register_snippet
    • Sandbox bindings are now exposed with the snippet_ prefix (was skill_)

    Breaking — sandbox hook (@tanstack/ai-code-mode). The createCodeModeTool config option getSkillBindings is renamed to getSnippetBindings (same signature — an optional () => Promise<Record<string, ToolBinding>> returning dynamic bindings merged at execution time).

    Breaking — wire contract (@tanstack/ai). The Code Mode custom events are renamed: code_mode:skill_call / _result / _errorcode_mode:snippet_* (payload field skillsnippet), and skill:registeredsnippet:registered. The exported event types CodeModeSkillCallEvent / CodeModeSkillResultEvent / CodeModeSkillErrorEvent / SkillRegisteredEvent are renamed to their Snippet equivalents.

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-code-mode-snippets@0.4.0

Minor Changes

  • #1114 0fb8263 - Rename Code Mode "skills" to "snippets" to disambiguate them from agent skills (the SKILL.md packaging system).

    Breaking — package rename. @tanstack/ai-code-mode-skills is now published as @tanstack/ai-code-mode-snippets. Update your dependency and imports. The /storage subpath is unchanged.

    Breaking — API rename. Every Skill/skill identifier in the package public API becomes Snippet/snippet, for example:

    • codeModeWithSkills()codeModeWithSnippets()
    • skillsToTools() / skillToTool()snippetsToTools() / snippetToTool()
    • skillsToBindings() / skillsToSimpleBindings()snippetsToBindings() / snippetsToSimpleBindings()
    • selectRelevantSkills()selectRelevantSnippets()
    • createSkillManagementTools()createSnippetManagementTools()
    • createSkillsSystemPrompt()createSnippetsSystemPrompt()
    • generateSkillTypes()generateSnippetTypes()
    • createFileSkillStorage() / createMemorySkillStorage()createFileSnippetStorage() / createMemorySnippetStorage()
    • Types: Skill, SkillStorage, SkillIndexEntry, SkillStats, SkillBinding, SkillsConfig, CodeModeWithSkillsOptions/Result → the Snippet… equivalents
    • Options: skillssnippets, skillsAsToolssnippetsAsTools, maxSkillsInContextmaxSnippetsInContext
    • Runtime tools: search_skills / get_skill / register_skillsearch_snippets / get_snippet / register_snippet
    • Sandbox bindings are now exposed with the snippet_ prefix (was skill_)

    Breaking — sandbox hook (@tanstack/ai-code-mode). The createCodeModeTool config option getSkillBindings is renamed to getSnippetBindings (same signature — an optional () => Promise<Record<string, ToolBinding>> returning dynamic bindings merged at execution time).

    Breaking — wire contract (@tanstack/ai). The Code Mode custom events are renamed: code_mode:skill_call / _result / _errorcode_mode:snippet_* (payload field skillsnippet), and skill:registeredsnippet:registered. The exported event types CodeModeSkillCallEvent / CodeModeSkillResultEvent / CodeModeSkillErrorEvent / SkillRegisteredEvent are renamed to their Snippet equivalents.

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai-code-mode@0.4.0
    • @tanstack/ai@0.45.0

@tanstack/ai-acp@0.2.7

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-sandbox@0.3.3

@tanstack/ai-angular@0.4.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-client@0.23.3

@tanstack/ai-anthropic@0.16.6

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-bedrock@0.2.2

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/openai-base@0.9.13

@tanstack/ai-byteplus@0.1.2

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/openai-base@0.9.13

@tanstack/ai-claude-code@0.3.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-sandbox@0.3.3

@tanstack/ai-client@0.23.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-codex@0.3.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-sandbox@0.3.3

@tanstack/ai-cohere@0.1.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-devtools-core@0.5.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-durable-stream@0.1.2

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-elevenlabs@0.2.37

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-fal@0.10.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-gemini@0.23.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-grok@0.14.12

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/openai-base@0.9.13

@tanstack/ai-grok-build@0.3.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-acp@0.2.7
    • @tanstack/ai-sandbox@0.3.3

@tanstack/ai-groq@0.6.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/openai-base@0.9.13

@tanstack/ai-isolate-cloudflare@0.2.42

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai-code-mode@0.4.0

@tanstack/ai-isolate-daytona@0.1.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai-code-mode@0.4.0

@tanstack/ai-isolate-node@0.1.51

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai-code-mode@0.4.0

@tanstack/ai-isolate-quickjs@0.3.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai-code-mode@0.4.0

@tanstack/ai-isolate-quickjs-bun@0.1.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai-code-mode@0.4.0

@tanstack/ai-mcp@0.3.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-memory@0.1.2

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-mistral@0.3.2

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-ollama@0.9.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-openai@0.19.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/openai-base@0.9.13

@tanstack/ai-opencode@0.2.6

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-sandbox@0.3.3

@tanstack/ai-openrouter@0.17.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-perplexity@0.2.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-persistence@0.1.5

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-preact@0.12.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-client@0.23.3

@tanstack/ai-react@0.19.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-client@0.23.3

@tanstack/ai-sandbox@0.3.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

@tanstack/ai-sandbox-cloudflare@0.3.2

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-sandbox@0.3.3
    • @tanstack/ai-sandbox-local-process@0.2.1

@tanstack/ai-solid@0.16.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-client@0.23.3

@tanstack/ai-svelte@0.16.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-client@0.23.3

@tanstack/ai-vercel-gateway@0.1.1

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/openai-base@0.9.13

@tanstack/ai-vue@0.16.3

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0
    • @tanstack/ai-client@0.23.3

@tanstack/openai-base@0.9.13

Patch Changes

  • Updated dependencies [0fb8263]:
    • @tanstack/ai@0.45.0

ag-ui@0.0.6

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai-client@0.23.3
    • @tanstack/ai-react@0.19.3
    • @tanstack/ai-react-ui@0.8.16

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants