jkunz
f138495edf
feat(tools): add reusable execution contexts for shell, filesystem, and browser tools
2026-05-15 05:38:35 +00:00
jkunz
f183bf19ac
v3.4.0
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-05-14 22:44:10 +00:00
jkunz
6fb2b3a61f
feat(agent): add streamed reasoning summary callbacks to runAgent
2026-05-14 22:44:08 +00:00
jkunz
ca56f4c4e8
v3.3.0
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-05-14 16:50:16 +00:00
jkunz
d7edb981e7
v3.2.0
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-05-14 11:34:11 +00:00
jkunz
e6346be884
feat(agent): add prompt caching options and cache token usage reporting
2026-05-14 11:34:04 +00:00
jkunz
7be67543bf
v3.1.1
Default (tags) / security (push) Failing after 1s
Default (tags) / test (push) Failing after 1s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2026-05-11 11:11:43 +00:00
jkunz
b08cb3689e
feat(agent): add provider options passthrough, tool call records, and completion validation retries
2026-05-07 10:26:45 +00:00
jkunz
6f5e49e5ef
fix(build): tighten TypeScript configuration and update dependencies for zod v4 compatibility
2026-04-30 11:27:08 +00:00
jkunz
91865e9f57
fix(agent): use output parameter when invoking onToolResult instead of toolCall.result
2026-03-06 22:48:09 +00:00
jkunz
c503690d52
fix(readme): adjust ASCII art in README to fix box widths and spacing in agent diagram
2026-03-06 11:41:30 +00:00
jkunz
f9a9c9fb48
BREAKING CHANGE(api): Migrate public API to ai-sdk v6 and refactor core agent architecture: replace class-based DualAgent/Driver/Guardian with a single runAgent function; introduce ts_tools factories for tools, a compactMessages compaction subpath, and truncateOutput utility; simplify ToolRegistry to return ToolSet and remove legacy BaseToolWrapper/tool classes; update package exports and dependencies and bump major version.
2026-03-06 11:39:01 +00:00
jkunz
5aa69cc998
feat(tools): add ToolRegistry, ToolSearchTool and ExpertTool to support on-demand tool visibility, discovery, activation, and expert/subagent tooling; extend DualAgentOrchestrator API and interfaces to manage tool lifecycle
2026-01-20 14:39:34 +00:00
jkunz
940bf3d3ef
feat(docs): document native tool calling support and update README to clarify standard and additional tools
2026-01-20 12:01:07 +00:00
jkunz
7cb970f9e2
fix(release): bump version to 1.6.2
2026-01-20 03:56:44 +00:00
jkunz
1fbcf8bb8b
fix(driveragent): save tool_calls in message history for native tool calling
...
When using native tool calling, the assistant's tool_calls must be saved
in message history. Without this, the model doesn't know it already called
a tool and loops indefinitely calling the same tool.
This fix saves tool_calls in both startTaskWithNativeTools and
continueWithNativeTools methods.
Also updates @push.rocks/smartai to v0.13.3 for tool_calls forwarding support.
2026-01-20 03:56:10 +00:00
jkunz
0da85a5dcd
fix(driveragent): include full message history for tool results and use a continuation prompt when invoking provider.collectStreamResponse
2026-01-20 03:38:07 +00:00
jkunz
eb1058bfb5
feat(smartagent): record native tool results in message history by adding optional toolName to continueWithNativeTools and passing tool identifier from DualAgent
2026-01-20 03:28:59 +00:00
jkunz
73657be550
fix(driveragent): prevent duplicate thinking/output markers during token streaming and mark transitions
2026-01-20 03:16:02 +00:00
jkunz
79efe8f6b8
fix(driveragent): prefix thinking tokens with [THINKING] when forwarding streaming chunks to onToken
2026-01-20 03:10:53 +00:00
jkunz
6753553394
fix(): no changes in this diff; nothing to release
2026-01-20 02:54:58 +00:00
jkunz
a46dbd0da6
fix(driveragent): enable streaming for native tool calling methods
2026-01-20 02:54:45 +00:00
jkunz
83422b4b0e
fix(smartagent): bump patch version to 1.5.1 (no changes in diff)
2026-01-20 02:45:41 +00:00
jkunz
4310c8086b
feat(native-tools): add native tool calling support for Ollama models
...
- Add INativeToolCall interface for native tool call format
- Add useNativeToolCalling option to IDualAgentOptions
- Add getToolsAsJsonSchema() to convert tools to Ollama JSON Schema format
- Add parseNativeToolCalls() to convert native tool calls to proposals
- Add startTaskWithNativeTools() and continueWithNativeTools() to DriverAgent
- Update DualAgentOrchestrator to support both XML parsing and native tool calling modes
Native tool calling is more efficient for models like GPT-OSS that use Harmony format,
as it activates Ollama's built-in tool parser instead of requiring XML generation.
2026-01-20 02:44:54 +00:00
jkunz
44137a8710
feat(driveragent): preserve assistant reasoning in message history and update @push.rocks/smartai dependency to ^0.13.0
2026-01-20 02:05:12 +00:00
jkunz
49dcc7a1a1
fix(repo): no changes detected in diff
2026-01-20 01:41:18 +00:00
jkunz
e649e9caab
fix(driver): make tool call format instructions explicit about literal XML output
...
The system message now clearly states that the <tool_call> XML tags MUST
be literally written in the response, not just described. Includes examples
of CORRECT vs WRONG usage to help smaller models understand.
2026-01-20 01:40:57 +00:00
jkunz
c24a4306d9
fix(): no changes detected (empty diff)
2026-01-20 01:36:30 +00:00
jkunz
9718048dff
fix(dualagent): improve no-tool-call feedback with explicit XML format reminder
...
When the LLM fails to emit a tool_call XML block, the feedback now includes
the exact XML format expected with a concrete example for json.validate.
This helps smaller models understand the exact output format required.
2026-01-20 01:36:03 +00:00
jkunz
52d1d128c7
feat(docs): document Dual-Agent Driver/Guardian architecture, new standard tools, streaming/vision support, progress events, and updated API/export docs
2026-01-20 01:30:26 +00:00
jkunz
60f8bbe1b6
feat(tools): add getToolExplanation() method with XML examples for LLM tool calling
...
Each tool now provides comprehensive documentation including parameter
schemas and concrete <tool_call> XML examples. This helps smaller LLMs
understand the exact format required for tool invocation.
2026-01-20 01:30:03 +00:00
jkunz
e7968a31b1
feat(smartagent): add JsonValidatorTool and support passing base64-encoded images with task runs (vision-capable models); bump @push.rocks/smartai to ^0.12.0
2026-01-20 01:12:03 +00:00
jkunz
37d4069806
feat(streaming): add streaming support to DriverAgent and DualAgentOrchestrator
...
- Add onToken callback option to IDualAgentOptions interface
- Add onToken property and setOnToken method to DriverAgent
- Wire up streaming in startTask and continueWithMessage methods
- Pass source identifier ('driver'/'guardian') to onToken callback
2026-01-20 00:38:36 +00:00
jkunz
e49f35e7de
fix(deps(smartai)): bump @push.rocks/smartai to ^0.11.0
2026-01-20 00:13:32 +00:00
jkunz
560838477f
fix(deps): bump @push.rocks/smartai to ^0.10.1
2026-01-20 00:05:42 +00:00
jkunz
a76bd0d3e4
update
2025-12-15 15:29:56 +00:00
jkunz
19ba58ca40
update
2025-12-15 15:11:22 +00:00
jkunz
8662b73adb
update
2025-12-15 14:49:26 +00:00
jkunz
37b6e98a81
improve tools
2025-12-15 14:23:53 +00:00
jkunz
7403e769d0
update
2025-12-15 12:37:19 +00:00
jkunz
0a8965b781
fix(ci): Update CI/release config and bump devDependencies; enable verbose tests
2025-12-15 07:08:35 +00:00
jkunz
cf6d7163be
feat(deno): Add Deno tool and smartdeno integration; export and register DenoTool; update docs and tests
2025-12-02 12:11:31 +00:00
jkunz
01894b2c7e
fix(core): Bump version to 1.0.2 (patch release)
2025-12-02 11:00:55 +00:00
jkunz
c1317712a9
initial
2025-12-02 10:59:09 +00:00