@vpxa/aikit 0.1.187 → 0.1.189
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -2
- package/packages/blocks-core/dist/index.js +112 -31
- package/packages/embeddings/dist/index.d.ts +5 -0
- package/packages/embeddings/dist/index.js +1 -1
- package/packages/present/dist/index.html +149 -54
- package/packages/server/dist/index.js +1 -1
- package/packages/server/dist/{server-BCnhTdUy.js → server-BvVBHkFD.js} +121 -121
- package/packages/server/viewers/canvas.html +164 -67
- package/scaffold/dist/definitions/skills/c4-architecture.mjs +1 -1
- package/scaffold/dist/definitions/skills/docs.mjs +1 -1
- package/scaffold/dist/definitions/skills/present.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vpxa/aikit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.189",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Local-first AI developer toolkit — knowledge base, code analysis, context management, and developer tools for LLM agents",
|
|
6
6
|
"license": "MIT",
|
|
@@ -112,6 +112,7 @@
|
|
|
112
112
|
"release": "node scripts/release.mjs",
|
|
113
113
|
"release:dry": "node scripts/release.mjs --dry-run",
|
|
114
114
|
"nodeprune": "pnpm clean && pnpm store prune && pnpm -s dlx npkill -D -y",
|
|
115
|
-
"test:watch": "vitest"
|
|
115
|
+
"test:watch": "vitest",
|
|
116
|
+
"validate": "pnpm test && pnpm lint:fix && pnpm build && pnpm typecheck"
|
|
116
117
|
}
|
|
117
118
|
}
|