@codemation/core-nodes 0.1.1 → 0.3.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,51 @@
1
1
  # @codemation/core-nodes
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#78](https://github.com/MadeRelevant/codemation/pull/78) [`f451b1b`](https://github.com/MadeRelevant/codemation/commit/f451b1b4657b59406e15ce5f50b243e487ff99ed) Thanks [@cblokland90](https://github.com/cblokland90)! - Normalize fluent workflow DSL callback helpers around the runtime item contract.
8
+
9
+ `.map(...)`, `.if(...)`, and `.switch({ resolveCaseKey })` now receive `(item, ctx)` so workflow authors can use `item.json` consistently and read prior completed outputs through `ctx.data` without dropping down to direct node configs.
10
+
11
+ ## 0.2.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#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.
16
+
17
+ 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.
18
+
19
+ - [#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.
20
+
21
+ This exposes `outputSchema` on agent configs, teaches `AIAgentNode` to validate and repair structured outputs, and
22
+ avoids opting older OpenAI snapshots into `json_schema` when only function calling is safe.
23
+
24
+ - [#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`.
25
+
26
+ `WorkflowAgentOptions` now takes `messages` (the same `AgentMessageConfig` as `AIAgent`) instead of
27
+ `prompt`. The workflow helper passes `messages` through unchanged. Docs, workflow DSL skills, and the
28
+ test-dev sample use `itemValue(...)` for per-item prompts; execution docs note `itemValue` on agent
29
+ `messages`.
30
+
31
+ ### Patch Changes
32
+
33
+ - [#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.
34
+
35
+ This introduces `callableTool(...)` as a workflow-friendly helper for app-local agent tools, keeps
36
+ `CallableToolFactory.callableTool(...)` as a compatible factory entry point, teaches `AIAgentNode`
37
+ to execute callable tools with the same tracing and validation model as other tool kinds, and
38
+ updates docs, skills, and the test-dev sample to show the new path.
39
+
40
+ - 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)]:
41
+ - @codemation/core@0.6.0
42
+
43
+ ## Unreleased
44
+
45
+ ### Patch Changes
46
+
47
+ - **`AIAgentNode`**: resolve **`CallableToolConfig`** (`toolKind: "callable"`) alongside node-backed and plugin tools; validate outputs with the configured Zod schemas.
48
+
3
49
  ## 0.1.1
4
50
 
5
51
  ### Patch Changes