@codemation/core-nodes 0.1.1 → 0.2.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @codemation/core-nodes
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#76](https://github.com/MadeRelevant/codemation/pull/76) [`3774fd8`](https://github.com/MadeRelevant/codemation/commit/3774fd80bc357c7eb39957f6963c692f322c38eb) Thanks [@cblokland90](https://github.com/cblokland90)! - Preserve binaries for runnable node outputs and make workflow authoring APIs accept explicit output behavior options.
8
+
9
+ This adds `keepBinaries` support across runnable execution paths, updates `MapData` and related workflow authoring helpers to use an options object for node ids and output behavior, and refreshes tests and docs around the new contract.
10
+
11
+ - [#75](https://github.com/MadeRelevant/codemation/pull/75) [`00bc135`](https://github.com/MadeRelevant/codemation/commit/00bc1351e2dd6222d5101dbff3602a76ead33ce1) Thanks [@cblokland90](https://github.com/cblokland90)! - Add structured-output schemas to AI agents and choose the safer OpenAI response mode per model snapshot.
12
+
13
+ This exposes `outputSchema` on agent configs, teaches `AIAgentNode` to validate and repair structured outputs, and
14
+ avoids opting older OpenAI snapshots into `json_schema` when only function calling is safe.
15
+
16
+ - [#74](https://github.com/MadeRelevant/codemation/pull/74) [`26ebe63`](https://github.com/MadeRelevant/codemation/commit/26ebe6346db0e9133a2133435a463c3dcd2dc537) Thanks [@cblokland90](https://github.com/cblokland90)! - Unify `workflow().agent()` message authoring with `AIAgent`.
17
+
18
+ `WorkflowAgentOptions` now takes `messages` (the same `AgentMessageConfig` as `AIAgent`) instead of
19
+ `prompt`. The workflow helper passes `messages` through unchanged. Docs, workflow DSL skills, and the
20
+ test-dev sample use `itemValue(...)` for per-item prompts; execution docs note `itemValue` on agent
21
+ `messages`.
22
+
23
+ ### Patch Changes
24
+
25
+ - [#71](https://github.com/MadeRelevant/codemation/pull/71) [`3044e73`](https://github.com/MadeRelevant/codemation/commit/3044e73fd3cfb33f8e2cbc579c10baf97ed94658) Thanks [@cblokland90](https://github.com/cblokland90)! - Add inline callable agent tools to the workflow DSL.
26
+
27
+ This introduces `callableTool(...)` as a workflow-friendly helper for app-local agent tools, keeps
28
+ `CallableToolFactory.callableTool(...)` as a compatible factory entry point, teaches `AIAgentNode`
29
+ to execute callable tools with the same tracing and validation model as other tool kinds, and
30
+ updates docs, skills, and the test-dev sample to show the new path.
31
+
32
+ - Updated dependencies [[`3044e73`](https://github.com/MadeRelevant/codemation/commit/3044e73fd3cfb33f8e2cbc579c10baf97ed94658), [`418434a`](https://github.com/MadeRelevant/codemation/commit/418434a6a2ad88a6254a94cb70e6f14b886df348), [`3774fd8`](https://github.com/MadeRelevant/codemation/commit/3774fd80bc357c7eb39957f6963c692f322c38eb), [`00bc135`](https://github.com/MadeRelevant/codemation/commit/00bc1351e2dd6222d5101dbff3602a76ead33ce1)]:
33
+ - @codemation/core@0.6.0
34
+
35
+ ## Unreleased
36
+
37
+ ### Patch Changes
38
+
39
+ - **`AIAgentNode`**: resolve **`CallableToolConfig`** (`toolKind: "callable"`) alongside node-backed and plugin tools; validate outputs with the configured Zod schemas.
40
+
3
41
  ## 0.1.1
4
42
 
5
43
  ### Patch Changes