@theokit/sdk-tools 0.22.1 → 0.22.2

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/index.cjs CHANGED
@@ -1739,8 +1739,8 @@ function askerDoContexto(context) {
1739
1739
  function createQuestionTool(opts) {
1740
1740
  const timeoutMs = opts.timeoutMs ?? 3e5;
1741
1741
  return {
1742
- name: "question",
1743
- description: "Ask the user a question and wait for their response. Use when you need clarification or confirmation before proceeding. Returns { ok, answer } or { ok: false, error: 'timeout' }.",
1742
+ name: opts.name ?? "question",
1743
+ description: opts.description ?? "Ask the user a question and wait for their response. Use when you need clarification or confirmation before proceeding. Returns { ok, answer } or { ok: false, error: 'timeout' }.",
1744
1744
  inputSchema: {
1745
1745
  type: "object",
1746
1746
  properties: {