Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .changeset/kiira-package-skills.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
'@tanstack/ai': patch
'@tanstack/ai-mcp': patch
'@tanstack/ai-code-mode': patch
'@tanstack/ai-sandbox': patch
'@tanstack/ai-persistence': patch
'@tanstack/ai-memory': patch
'@tanstack/ai-skills': patch
---

docs(skills): type-check the code fences in every package skill with kiira and fix the ones that did not compile
8 changes: 4 additions & 4 deletions kiira.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { defineConfig } from 'kiira-core'

export default defineConfig({
// skills/** are the repo-level discovery skills; package skills under
// packages/*/skills are not yet clean and stay out until they are.
include: ['docs/**/*.md', 'skills/**/*.md'],
// skills/** are the repo-level discovery skills; packages/*/skills are the
// per-package skills that ship in each npm package.
include: ['docs/**/*.md', 'skills/**/*.md', 'packages/*/skills/**/*.md'],
tsconfig: 'tsconfig.docs.json',
exclude: [
// docs/reference/** is auto-generated by TypeDoc (`pnpm generate-docs`);
Expand Down Expand Up @@ -77,7 +77,7 @@ export default defineConfig({
// hook that returns a decision or continues), which is valid and shouldn't
// force an explicit return type or trailing `return`.
{
include: ['docs/**/*.md', 'skills/**/*.md'],
include: ['docs/**/*.md', 'skills/**/*.md', 'packages/*/skills/**/*.md'],
jsx: 'react-jsx',
jsxImportSource: 'react',
noImplicitReturns: false,
Expand Down
2 changes: 2 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@
"inputs": [
"{workspaceRoot}/docs/**/*",
"{workspaceRoot}/packages/*/src/**/*",
"{workspaceRoot}/packages/*/skills/**/*",
"{workspaceRoot}/skills/**/*",
"{workspaceRoot}/kiira.config.ts"
]
},
Expand Down
Loading
Loading