@compilr-dev/agents 0.3.8 → 0.3.10
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/dist/agent.d.ts +5 -0
- package/dist/agent.js +501 -465
- package/dist/index.d.ts +1 -1
- package/dist/tools/builtin/index.d.ts +1 -1
- package/dist/tools/builtin/todo.d.ts +58 -0
- package/dist/tools/builtin/todo.js +158 -7
- package/dist/tools/registry.d.ts +13 -1
- package/dist/tools/registry.js +17 -0
- package/dist/tools/types.d.ts +15 -0
- package/package.json +1 -1
package/dist/agent.d.ts
CHANGED
|
@@ -1231,6 +1231,11 @@ export declare class Agent {
|
|
|
1231
1231
|
* Get the context manager (if configured)
|
|
1232
1232
|
*/
|
|
1233
1233
|
getContextManager(): ContextManager | undefined;
|
|
1234
|
+
/**
|
|
1235
|
+
* Get the tool registry instance.
|
|
1236
|
+
* Useful for setting up fallback handlers or inspecting registered tools.
|
|
1237
|
+
*/
|
|
1238
|
+
getToolRegistry(): ToolRegistry;
|
|
1234
1239
|
/**
|
|
1235
1240
|
* Get context statistics
|
|
1236
1241
|
*/
|