kernl 0.1.2 → 0.1.3

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > kernl@0.1.1 build /Users/andjones/Documents/projects/kernl/packages/kernl
2
+ > kernl@0.1.3 build /Users/andjones/Documents/projects/kernl/packages/kernl
3
3
  > tsc && tsc-alias
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @kernl/core
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix module resolution errors after kernl init and add missing exports
8
+ - Update template tsconfig to use moduleResolution "bundler" for proper package.json exports resolution
9
+ - Export tool, FunctionToolkit, and MCPToolkit from kernl package
10
+ - Refactor CLI template tools into individual files with better structure
11
+
3
12
  ## 0.1.2
4
13
 
5
14
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  export { Kernl } from "./kernl";
2
2
  export { Agent } from "./agent";
3
3
  export type { Context } from "./context";
4
+ export { tool, FunctionToolkit, MCPToolkit } from "./tool";
4
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,YAAY,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAChC,YAAY,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACzC,OAAO,EAAE,IAAI,EAAE,eAAe,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC"}
package/dist/index.js CHANGED
@@ -1,2 +1,3 @@
1
1
  export { Kernl } from "./kernl";
2
2
  export { Agent } from "./agent";
3
+ export { tool, FunctionToolkit, MCPToolkit } from "./tool";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kernl",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "A modern AI agent framework with MCP integration",
5
5
  "keywords": [
6
6
  "kernl",
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export { Kernl } from "./kernl";
2
2
  export { Agent } from "./agent";
3
3
  export type { Context } from "./context";
4
+ export { tool, FunctionToolkit, MCPToolkit } from "./tool";