@codebolt/codeboltjs 5.0.2 → 5.0.3
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/core/Codebolt.d.ts +765 -52
- package/dist/core/Codebolt.js +733 -1
- package/dist/core/messageManager.d.ts +22 -1
- package/dist/core/messageManager.js +59 -0
- package/dist/core/websocket.js +6 -1
- package/dist/index.d.ts +88 -1
- package/dist/index.js +285 -3
- package/dist/modules/actionBlock.d.ts +91 -0
- package/dist/modules/actionBlock.js +61 -0
- package/dist/modules/actionPlan.d.ts +15 -0
- package/dist/modules/actionPlan.js +13 -0
- package/dist/modules/agent.d.ts +1 -1
- package/dist/modules/agent.js +3 -3
- package/dist/modules/agentDeliberation.d.ts +12 -0
- package/dist/modules/agentDeliberation.js +34 -0
- package/dist/modules/agentEventQueue.d.ts +96 -0
- package/dist/modules/agentEventQueue.js +288 -0
- package/dist/modules/agentPortfolio.d.ts +111 -0
- package/dist/modules/agentPortfolio.js +206 -0
- package/dist/modules/autoTesting.d.ts +22 -0
- package/dist/modules/autoTesting.js +31 -0
- package/dist/modules/backgroundChildThreads.d.ts +48 -0
- package/dist/modules/backgroundChildThreads.js +172 -0
- package/dist/modules/browser.d.ts +80 -24
- package/dist/modules/browser.js +220 -42
- package/dist/modules/calendar.d.ts +291 -0
- package/dist/modules/calendar.js +151 -0
- package/dist/modules/capability.d.ts +135 -0
- package/dist/modules/capability.js +208 -0
- package/dist/modules/chat.d.ts +10 -0
- package/dist/modules/chat.js +38 -0
- package/dist/modules/codebaseSearch.d.ts +21 -0
- package/dist/modules/codebaseSearch.js +43 -0
- package/dist/modules/codeboltEvent.d.ts +57 -0
- package/dist/modules/codeboltEvent.js +217 -0
- package/dist/modules/codemap.d.ts +38 -0
- package/dist/modules/codemap.js +100 -0
- package/dist/modules/contextAssembly.d.ts +33 -0
- package/dist/modules/contextAssembly.js +69 -0
- package/dist/modules/contextRuleEngine.d.ts +42 -0
- package/dist/modules/contextRuleEngine.js +90 -0
- package/dist/modules/episodicMemory.d.ts +208 -0
- package/dist/modules/episodicMemory.js +131 -0
- package/dist/modules/eventLog.d.ts +54 -0
- package/dist/modules/eventLog.js +114 -0
- package/dist/modules/fileUpdateIntent.d.ts +58 -0
- package/dist/modules/fileUpdateIntent.js +145 -0
- package/dist/modules/fs.js +49 -28
- package/dist/modules/git.d.ts +8 -1
- package/dist/modules/git.js +14 -0
- package/dist/modules/groupFeedback.d.ts +11 -0
- package/dist/modules/groupFeedback.js +31 -0
- package/dist/modules/hook.d.ts +48 -0
- package/dist/modules/hook.js +110 -0
- package/dist/modules/job.d.ts +50 -0
- package/dist/modules/job.js +420 -0
- package/dist/modules/knowledgeGraph.d.ts +160 -0
- package/dist/modules/knowledgeGraph.js +352 -0
- package/dist/modules/kvStore.d.ts +79 -0
- package/dist/modules/kvStore.js +157 -0
- package/dist/modules/mail.d.ts +117 -0
- package/dist/modules/mail.js +156 -0
- package/dist/modules/mcp.d.ts +38 -4
- package/dist/modules/mcp.js +206 -15
- package/dist/modules/memoryIngestion.d.ts +65 -0
- package/dist/modules/memoryIngestion.js +137 -0
- package/dist/modules/orchestrator.d.ts +81 -0
- package/dist/modules/orchestrator.js +96 -0
- package/dist/modules/persistentMemory.d.ts +49 -0
- package/dist/modules/persistentMemory.js +103 -0
- package/dist/modules/projectStructure.d.ts +125 -0
- package/dist/modules/projectStructure.js +390 -0
- package/dist/modules/projectStructureUpdateRequest.d.ts +64 -0
- package/dist/modules/projectStructureUpdateRequest.js +182 -0
- package/dist/modules/requirementPlan.d.ts +161 -0
- package/dist/modules/requirementPlan.js +147 -0
- package/dist/modules/reviewMergeRequest.d.ts +102 -0
- package/dist/modules/reviewMergeRequest.js +193 -0
- package/dist/modules/roadmap.d.ts +78 -0
- package/dist/modules/roadmap.js +232 -0
- package/dist/modules/sideExecution.d.ts +43 -0
- package/dist/modules/sideExecution.js +81 -0
- package/dist/modules/swarm.d.ts +189 -0
- package/dist/modules/swarm.js +447 -0
- package/dist/modules/task.d.ts +32 -150
- package/dist/modules/task.js +47 -372
- package/dist/modules/terminal.d.ts +9 -0
- package/dist/modules/terminal.js +15 -0
- package/dist/modules/thread.d.ts +84 -0
- package/dist/modules/thread.js +218 -0
- package/dist/modules/todo.d.ts +84 -1
- package/dist/modules/todo.js +102 -4
- package/dist/tools/actionBlock/action-block-get-detail.d.ts +13 -0
- package/dist/tools/actionBlock/action-block-get-detail.js +55 -0
- package/dist/tools/actionBlock/action-block-list.d.ts +13 -0
- package/dist/tools/actionBlock/action-block-list.js +55 -0
- package/dist/tools/actionBlock/action-block-start.d.ts +14 -0
- package/dist/tools/actionBlock/action-block-start.js +57 -0
- package/dist/tools/actionBlock/index.d.ts +7 -0
- package/dist/tools/actionBlock/index.js +28 -0
- package/dist/tools/actionPlan/action-plan-add-task.d.ts +20 -0
- package/dist/tools/actionPlan/action-plan-add-task.js +65 -0
- package/dist/tools/actionPlan/action-plan-create.d.ts +15 -0
- package/dist/tools/actionPlan/action-plan-create.js +58 -0
- package/dist/tools/actionPlan/action-plan-get-all.d.ts +9 -0
- package/dist/tools/actionPlan/action-plan-get-all.js +50 -0
- package/dist/tools/actionPlan/index.d.ts +7 -0
- package/dist/tools/actionPlan/index.js +28 -0
- package/dist/tools/admin/codemap-create.d.ts +32 -0
- package/dist/tools/admin/codemap-create.js +104 -0
- package/dist/tools/admin/codemap-get.d.ts +28 -0
- package/dist/tools/admin/codemap-get.js +93 -0
- package/dist/tools/admin/codemap-list.d.ts +23 -0
- package/dist/tools/admin/codemap-list.js +90 -0
- package/dist/tools/admin/codemap-update.d.ts +45 -0
- package/dist/tools/admin/codemap-update.js +141 -0
- package/dist/tools/admin/eventlog-append-event.d.ts +44 -0
- package/dist/tools/admin/eventlog-append-event.js +109 -0
- package/dist/tools/admin/eventlog-create-instance.d.ts +28 -0
- package/dist/tools/admin/eventlog-create-instance.js +86 -0
- package/dist/tools/admin/eventlog-get-instance.d.ts +24 -0
- package/dist/tools/admin/eventlog-get-instance.js +90 -0
- package/dist/tools/admin/eventlog-get-stats.d.ts +24 -0
- package/dist/tools/admin/eventlog-get-stats.js +94 -0
- package/dist/tools/admin/eventlog-list-instances.d.ts +19 -0
- package/dist/tools/admin/eventlog-list-instances.js +76 -0
- package/dist/tools/admin/eventlog-query-events.d.ts +52 -0
- package/dist/tools/admin/eventlog-query-events.js +153 -0
- package/dist/tools/admin/hook-create.d.ts +68 -0
- package/dist/tools/admin/hook-create.js +133 -0
- package/dist/tools/admin/hook-disable.d.ts +24 -0
- package/dist/tools/admin/hook-disable.js +79 -0
- package/dist/tools/admin/hook-enable.d.ts +24 -0
- package/dist/tools/admin/hook-enable.js +79 -0
- package/dist/tools/admin/hook-get.d.ts +24 -0
- package/dist/tools/admin/hook-get.js +103 -0
- package/dist/tools/admin/hook-list.d.ts +19 -0
- package/dist/tools/admin/hook-list.js +81 -0
- package/dist/tools/admin/index.d.ts +45 -0
- package/dist/tools/admin/index.js +88 -0
- package/dist/tools/admin/orchestrator-create.d.ts +40 -0
- package/dist/tools/admin/orchestrator-create.js +106 -0
- package/dist/tools/admin/orchestrator-get.d.ts +24 -0
- package/dist/tools/admin/orchestrator-get.js +78 -0
- package/dist/tools/admin/orchestrator-list.d.ts +20 -0
- package/dist/tools/admin/orchestrator-list.js +72 -0
- package/dist/tools/admin/orchestrator-update.d.ts +44 -0
- package/dist/tools/admin/orchestrator-update.js +123 -0
- package/dist/tools/agent/agent-details.d.ts +17 -0
- package/dist/tools/agent/agent-details.js +106 -0
- package/dist/tools/agent/agent-find.d.ts +20 -0
- package/dist/tools/agent/agent-find.js +133 -0
- package/dist/tools/agent/agent-list.d.ts +15 -0
- package/dist/tools/agent/agent-list.js +115 -0
- package/dist/tools/agent/agent-start.d.ts +20 -0
- package/dist/tools/agent/agent-start.js +98 -0
- package/dist/tools/agent/index.d.ts +15 -0
- package/dist/tools/agent/index.js +27 -0
- package/dist/tools/agentDeliberation/deliberation-create.d.ts +34 -0
- package/dist/tools/agentDeliberation/deliberation-create.js +99 -0
- package/dist/tools/agentDeliberation/deliberation-get-winner.d.ts +21 -0
- package/dist/tools/agentDeliberation/deliberation-get-winner.js +67 -0
- package/dist/tools/agentDeliberation/deliberation-get.d.ts +23 -0
- package/dist/tools/agentDeliberation/deliberation-get.js +92 -0
- package/dist/tools/agentDeliberation/deliberation-list.d.ts +32 -0
- package/dist/tools/agentDeliberation/deliberation-list.js +94 -0
- package/dist/tools/agentDeliberation/deliberation-respond.d.ts +27 -0
- package/dist/tools/agentDeliberation/deliberation-respond.js +84 -0
- package/dist/tools/agentDeliberation/deliberation-summary.d.ts +27 -0
- package/dist/tools/agentDeliberation/deliberation-summary.js +84 -0
- package/dist/tools/agentDeliberation/deliberation-update.d.ts +26 -0
- package/dist/tools/agentDeliberation/deliberation-update.js +81 -0
- package/dist/tools/agentDeliberation/deliberation-vote.d.ts +27 -0
- package/dist/tools/agentDeliberation/deliberation-vote.js +84 -0
- package/dist/tools/agentDeliberation/index.d.ts +27 -0
- package/dist/tools/agentDeliberation/index.js +47 -0
- package/dist/tools/agentEventQueue/eventqueue-acknowledge.d.ts +25 -0
- package/dist/tools/agentEventQueue/eventqueue-acknowledge.js +83 -0
- package/dist/tools/agentEventQueue/eventqueue-add-event.d.ts +35 -0
- package/dist/tools/agentEventQueue/eventqueue-add-event.js +115 -0
- package/dist/tools/agentEventQueue/eventqueue-get-pending.d.ts +21 -0
- package/dist/tools/agentEventQueue/eventqueue-get-pending.js +77 -0
- package/dist/tools/agentEventQueue/eventqueue-get-stats.d.ts +19 -0
- package/dist/tools/agentEventQueue/eventqueue-get-stats.js +81 -0
- package/dist/tools/agentEventQueue/eventqueue-send-message.d.ts +31 -0
- package/dist/tools/agentEventQueue/eventqueue-send-message.js +105 -0
- package/dist/tools/agentEventQueue/eventqueue-wait-next.d.ts +21 -0
- package/dist/tools/agentEventQueue/eventqueue-wait-next.js +73 -0
- package/dist/tools/agentEventQueue/index.d.ts +19 -0
- package/dist/tools/agentEventQueue/index.js +36 -0
- package/dist/tools/agentPortfolio/index.d.ts +37 -0
- package/dist/tools/agentPortfolio/index.js +69 -0
- package/dist/tools/agentPortfolio/portfolio-add-appreciation.d.ts +23 -0
- package/dist/tools/agentPortfolio/portfolio-add-appreciation.js +76 -0
- package/dist/tools/agentPortfolio/portfolio-add-karma.d.ts +25 -0
- package/dist/tools/agentPortfolio/portfolio-add-karma.js +81 -0
- package/dist/tools/agentPortfolio/portfolio-add-talent.d.ts +23 -0
- package/dist/tools/agentPortfolio/portfolio-add-talent.js +76 -0
- package/dist/tools/agentPortfolio/portfolio-add-testimonial.d.ts +25 -0
- package/dist/tools/agentPortfolio/portfolio-add-testimonial.js +80 -0
- package/dist/tools/agentPortfolio/portfolio-delete-testimonial.d.ts +21 -0
- package/dist/tools/agentPortfolio/portfolio-delete-testimonial.js +71 -0
- package/dist/tools/agentPortfolio/portfolio-endorse-talent.d.ts +21 -0
- package/dist/tools/agentPortfolio/portfolio-endorse-talent.js +71 -0
- package/dist/tools/agentPortfolio/portfolio-get-by-project.d.ts +21 -0
- package/dist/tools/agentPortfolio/portfolio-get-by-project.js +72 -0
- package/dist/tools/agentPortfolio/portfolio-get-conversations.d.ts +25 -0
- package/dist/tools/agentPortfolio/portfolio-get-conversations.js +80 -0
- package/dist/tools/agentPortfolio/portfolio-get-karma-history.d.ts +23 -0
- package/dist/tools/agentPortfolio/portfolio-get-karma-history.js +76 -0
- package/dist/tools/agentPortfolio/portfolio-get-ranking.d.ts +23 -0
- package/dist/tools/agentPortfolio/portfolio-get-ranking.js +78 -0
- package/dist/tools/agentPortfolio/portfolio-get-talents.d.ts +21 -0
- package/dist/tools/agentPortfolio/portfolio-get-talents.js +73 -0
- package/dist/tools/agentPortfolio/portfolio-get.d.ts +21 -0
- package/dist/tools/agentPortfolio/portfolio-get.js +83 -0
- package/dist/tools/agentPortfolio/portfolio-update-profile.d.ts +36 -0
- package/dist/tools/agentPortfolio/portfolio-update-profile.js +102 -0
- package/dist/tools/agentPortfolio/portfolio-update-testimonial.d.ts +23 -0
- package/dist/tools/agentPortfolio/portfolio-update-testimonial.js +75 -0
- package/dist/tools/autoTesting/autotesting-add-case-to-suite.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-add-case-to-suite.js +55 -0
- package/dist/tools/autoTesting/autotesting-create-case.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-create-case.js +71 -0
- package/dist/tools/autoTesting/autotesting-create-run.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-create-run.js +55 -0
- package/dist/tools/autoTesting/autotesting-create-suite.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-create-suite.js +56 -0
- package/dist/tools/autoTesting/autotesting-delete-case.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-delete-case.js +53 -0
- package/dist/tools/autoTesting/autotesting-delete-suite.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-delete-suite.js +53 -0
- package/dist/tools/autoTesting/autotesting-get-case.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-get-case.js +54 -0
- package/dist/tools/autoTesting/autotesting-get-run.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-get-run.js +54 -0
- package/dist/tools/autoTesting/autotesting-get-suite.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-get-suite.js +55 -0
- package/dist/tools/autoTesting/autotesting-list-cases.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-list-cases.js +52 -0
- package/dist/tools/autoTesting/autotesting-list-runs.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-list-runs.js +54 -0
- package/dist/tools/autoTesting/autotesting-list-suites.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-list-suites.js +52 -0
- package/dist/tools/autoTesting/autotesting-remove-case-from-suite.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-remove-case-from-suite.js +55 -0
- package/dist/tools/autoTesting/autotesting-update-case.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-update-case.js +73 -0
- package/dist/tools/autoTesting/autotesting-update-run-case.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-update-run-case.js +56 -0
- package/dist/tools/autoTesting/autotesting-update-run-status.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-update-run-status.js +55 -0
- package/dist/tools/autoTesting/autotesting-update-run-step.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-update-run-step.js +58 -0
- package/dist/tools/autoTesting/autotesting-update-suite.d.ts +9 -0
- package/dist/tools/autoTesting/autotesting-update-suite.js +57 -0
- package/dist/tools/autoTesting/index.d.ts +45 -0
- package/dist/tools/autoTesting/index.js +88 -0
- package/dist/tools/backgroundChildThreads/add-running-agent.d.ts +25 -0
- package/dist/tools/backgroundChildThreads/add-running-agent.js +69 -0
- package/dist/tools/backgroundChildThreads/check-background-agent-completion.d.ts +19 -0
- package/dist/tools/backgroundChildThreads/check-background-agent-completion.js +63 -0
- package/dist/tools/backgroundChildThreads/get-running-agent-count.d.ts +19 -0
- package/dist/tools/backgroundChildThreads/get-running-agent-count.js +55 -0
- package/dist/tools/backgroundChildThreads/index.d.ts +17 -0
- package/dist/tools/backgroundChildThreads/index.js +29 -0
- package/dist/tools/backgroundChildThreads/on-background-agent-completion.d.ts +19 -0
- package/dist/tools/backgroundChildThreads/on-background-agent-completion.js +55 -0
- package/dist/tools/base-tool.d.ts +80 -0
- package/dist/tools/base-tool.js +177 -0
- package/dist/tools/browser/browser-action.d.ts +56 -0
- package/dist/tools/browser/browser-action.js +265 -0
- package/dist/tools/browser/click.d.ts +20 -0
- package/dist/tools/browser/click.js +90 -0
- package/dist/tools/browser/close.d.ts +17 -0
- package/dist/tools/browser/close.js +66 -0
- package/dist/tools/browser/enter.d.ts +17 -0
- package/dist/tools/browser/enter.js +80 -0
- package/dist/tools/browser/get-content.d.ts +17 -0
- package/dist/tools/browser/get-content.js +81 -0
- package/dist/tools/browser/get-html.d.ts +17 -0
- package/dist/tools/browser/get-html.js +81 -0
- package/dist/tools/browser/get-markdown.d.ts +17 -0
- package/dist/tools/browser/get-markdown.js +81 -0
- package/dist/tools/browser/get-url.d.ts +17 -0
- package/dist/tools/browser/get-url.js +81 -0
- package/dist/tools/browser/index.d.ts +31 -0
- package/dist/tools/browser/index.js +61 -0
- package/dist/tools/browser/navigate.d.ts +20 -0
- package/dist/tools/browser/navigate.js +90 -0
- package/dist/tools/browser/screenshot.d.ts +23 -0
- package/dist/tools/browser/screenshot.js +105 -0
- package/dist/tools/browser/scroll.d.ts +22 -0
- package/dist/tools/browser/scroll.js +101 -0
- package/dist/tools/browser/search.d.ts +22 -0
- package/dist/tools/browser/search.js +97 -0
- package/dist/tools/browser/type.d.ts +22 -0
- package/dist/tools/browser/type.js +97 -0
- package/dist/tools/calendar/calendar-create-event.d.ts +112 -0
- package/dist/tools/calendar/calendar-create-event.js +213 -0
- package/dist/tools/calendar/calendar-delete-event.d.ts +24 -0
- package/dist/tools/calendar/calendar-delete-event.js +80 -0
- package/dist/tools/calendar/calendar-get-event.d.ts +24 -0
- package/dist/tools/calendar/calendar-get-event.js +91 -0
- package/dist/tools/calendar/calendar-get-status.d.ts +19 -0
- package/dist/tools/calendar/calendar-get-status.js +84 -0
- package/dist/tools/calendar/calendar-get-upcoming.d.ts +24 -0
- package/dist/tools/calendar/calendar-get-upcoming.js +96 -0
- package/dist/tools/calendar/calendar-list-events.d.ts +68 -0
- package/dist/tools/calendar/calendar-list-events.js +151 -0
- package/dist/tools/calendar/calendar-mark-complete.d.ts +24 -0
- package/dist/tools/calendar/calendar-mark-complete.js +82 -0
- package/dist/tools/calendar/calendar-update-event.d.ts +92 -0
- package/dist/tools/calendar/calendar-update-event.js +183 -0
- package/dist/tools/calendar/index.d.ts +23 -0
- package/dist/tools/calendar/index.js +44 -0
- package/dist/tools/capability/capability-get-detail.d.ts +28 -0
- package/dist/tools/capability/capability-get-detail.js +86 -0
- package/dist/tools/capability/capability-get-status.d.ts +24 -0
- package/dist/tools/capability/capability-get-status.js +88 -0
- package/dist/tools/capability/capability-list-powers.d.ts +27 -0
- package/dist/tools/capability/capability-list-powers.js +88 -0
- package/dist/tools/capability/capability-list-skills.d.ts +27 -0
- package/dist/tools/capability/capability-list-skills.js +88 -0
- package/dist/tools/capability/capability-list.d.ts +31 -0
- package/dist/tools/capability/capability-list.js +95 -0
- package/dist/tools/capability/capability-start-skill.d.ts +32 -0
- package/dist/tools/capability/capability-start-skill.js +97 -0
- package/dist/tools/capability/capability-start.d.ts +36 -0
- package/dist/tools/capability/capability-start.js +108 -0
- package/dist/tools/capability/capability-stop.d.ts +24 -0
- package/dist/tools/capability/capability-stop.js +84 -0
- package/dist/tools/capability/index.d.ts +23 -0
- package/dist/tools/capability/index.js +44 -0
- package/dist/tools/chat/chat-ask.d.ts +32 -0
- package/dist/tools/chat/chat-ask.js +77 -0
- package/dist/tools/chat/chat-confirm.d.ts +32 -0
- package/dist/tools/chat/chat-confirm.js +77 -0
- package/dist/tools/chat/chat-get-history.d.ts +24 -0
- package/dist/tools/chat/chat-get-history.js +66 -0
- package/dist/tools/chat/chat-notify.d.ts +32 -0
- package/dist/tools/chat/chat-notify.js +83 -0
- package/dist/tools/chat/chat-send.d.ts +28 -0
- package/dist/tools/chat/chat-send.js +70 -0
- package/dist/tools/chat/chat-stop-process.d.ts +19 -0
- package/dist/tools/chat/chat-stop-process.js +55 -0
- package/dist/tools/chat/chat-wait-reply.d.ts +24 -0
- package/dist/tools/chat/chat-wait-reply.js +66 -0
- package/dist/tools/chat/index.d.ts +21 -0
- package/dist/tools/chat/index.js +40 -0
- package/dist/tools/codebaseSearch/codebase-search-mcp-tool.d.ts +23 -0
- package/dist/tools/codebaseSearch/codebase-search-mcp-tool.js +79 -0
- package/dist/tools/codebaseSearch/codebase-search.d.ts +23 -0
- package/dist/tools/codebaseSearch/codebase-search.js +79 -0
- package/dist/tools/codebaseSearch/index.d.ts +13 -0
- package/dist/tools/codebaseSearch/index.js +21 -0
- package/dist/tools/codeboltEvent/event-add-running-agent.d.ts +25 -0
- package/dist/tools/codeboltEvent/event-add-running-agent.js +69 -0
- package/dist/tools/codeboltEvent/event-check-background-agent-completion.d.ts +19 -0
- package/dist/tools/codeboltEvent/event-check-background-agent-completion.js +64 -0
- package/dist/tools/codeboltEvent/event-get-running-agent-count.d.ts +19 -0
- package/dist/tools/codeboltEvent/event-get-running-agent-count.js +55 -0
- package/dist/tools/codeboltEvent/event-on-background-agent-completion.d.ts +19 -0
- package/dist/tools/codeboltEvent/event-on-background-agent-completion.js +56 -0
- package/dist/tools/codeboltEvent/event-wait-for-external-event.d.ts +19 -0
- package/dist/tools/codeboltEvent/event-wait-for-external-event.js +55 -0
- package/dist/tools/codeboltEvent/index.d.ts +19 -0
- package/dist/tools/codeboltEvent/index.js +33 -0
- package/dist/tools/codemap/codemap-create.d.ts +25 -0
- package/dist/tools/codemap/codemap-create.js +84 -0
- package/dist/tools/codemap/codemap-delete.d.ts +23 -0
- package/dist/tools/codemap/codemap-delete.js +74 -0
- package/dist/tools/codemap/codemap-get.d.ts +23 -0
- package/dist/tools/codemap/codemap-get.js +77 -0
- package/dist/tools/codemap/codemap-list.d.ts +21 -0
- package/dist/tools/codemap/codemap-list.js +73 -0
- package/dist/tools/codemap/codemap-save.d.ts +26 -0
- package/dist/tools/codemap/codemap-save.js +80 -0
- package/dist/tools/codemap/codemap-set-status.d.ts +28 -0
- package/dist/tools/codemap/codemap-set-status.js +85 -0
- package/dist/tools/codemap/codemap-update.d.ts +27 -0
- package/dist/tools/codemap/codemap-update.js +89 -0
- package/dist/tools/codemap/index.d.ts +23 -0
- package/dist/tools/codemap/index.js +41 -0
- package/dist/tools/codeutils/codeutils-get-files-markdown.d.ts +13 -0
- package/dist/tools/codeutils/codeutils-get-files-markdown.js +52 -0
- package/dist/tools/codeutils/codeutils-get-matcher-list.d.ts +13 -0
- package/dist/tools/codeutils/codeutils-get-matcher-list.js +53 -0
- package/dist/tools/codeutils/codeutils-match-detail.d.ts +14 -0
- package/dist/tools/codeutils/codeutils-match-detail.js +59 -0
- package/dist/tools/codeutils/codeutils-perform-match.d.ts +16 -0
- package/dist/tools/codeutils/codeutils-perform-match.js +73 -0
- package/dist/tools/codeutils/index.d.ts +15 -0
- package/dist/tools/codeutils/index.js +29 -0
- package/dist/tools/collaboration/deliberation-create.d.ts +49 -0
- package/dist/tools/collaboration/deliberation-create.js +133 -0
- package/dist/tools/collaboration/deliberation-get.d.ts +33 -0
- package/dist/tools/collaboration/deliberation-get.js +93 -0
- package/dist/tools/collaboration/deliberation-list.d.ts +45 -0
- package/dist/tools/collaboration/deliberation-list.js +118 -0
- package/dist/tools/collaboration/deliberation-respond.d.ts +36 -0
- package/dist/tools/collaboration/deliberation-respond.js +105 -0
- package/dist/tools/collaboration/deliberation-vote.d.ts +36 -0
- package/dist/tools/collaboration/deliberation-vote.js +105 -0
- package/dist/tools/collaboration/feedback-create.d.ts +62 -0
- package/dist/tools/collaboration/feedback-create.js +134 -0
- package/dist/tools/collaboration/feedback-get.d.ts +28 -0
- package/dist/tools/collaboration/feedback-get.js +78 -0
- package/dist/tools/collaboration/feedback-list.d.ts +40 -0
- package/dist/tools/collaboration/feedback-list.js +92 -0
- package/dist/tools/collaboration/feedback-respond.d.ts +50 -0
- package/dist/tools/collaboration/feedback-respond.js +113 -0
- package/dist/tools/collaboration/index.d.ts +37 -0
- package/dist/tools/collaboration/index.js +72 -0
- package/dist/tools/collaboration/portfolio-add-karma.d.ts +32 -0
- package/dist/tools/collaboration/portfolio-add-karma.js +89 -0
- package/dist/tools/collaboration/portfolio-add-talent.d.ts +28 -0
- package/dist/tools/collaboration/portfolio-add-talent.js +82 -0
- package/dist/tools/collaboration/portfolio-add-testimonial.d.ts +32 -0
- package/dist/tools/collaboration/portfolio-add-testimonial.js +89 -0
- package/dist/tools/collaboration/portfolio-endorse-talent.d.ts +24 -0
- package/dist/tools/collaboration/portfolio-endorse-talent.js +78 -0
- package/dist/tools/collaboration/portfolio-get-ranking.d.ts +28 -0
- package/dist/tools/collaboration/portfolio-get-ranking.js +88 -0
- package/dist/tools/collaboration/portfolio-get.d.ts +24 -0
- package/dist/tools/collaboration/portfolio-get.js +78 -0
- package/dist/tools/context/context-rule-create.d.ts +37 -0
- package/dist/tools/context/context-rule-create.js +142 -0
- package/dist/tools/context/context-rule-delete.d.ts +24 -0
- package/dist/tools/context/context-rule-delete.js +89 -0
- package/dist/tools/context/context-rule-evaluate.d.ts +36 -0
- package/dist/tools/context/context-rule-evaluate.js +123 -0
- package/dist/tools/context/context-rule-get.d.ts +24 -0
- package/dist/tools/context/context-rule-get.js +108 -0
- package/dist/tools/context/context-rule-list.d.ts +19 -0
- package/dist/tools/context/context-rule-list.js +79 -0
- package/dist/tools/context/index.d.ts +17 -0
- package/dist/tools/context/index.js +32 -0
- package/dist/tools/contextAssembly/context-evaluate-rules.d.ts +24 -0
- package/dist/tools/contextAssembly/context-evaluate-rules.js +76 -0
- package/dist/tools/contextAssembly/context-get-required-variables.d.ts +21 -0
- package/dist/tools/contextAssembly/context-get-required-variables.js +72 -0
- package/dist/tools/contextAssembly/context-get.d.ts +22 -0
- package/dist/tools/contextAssembly/context-get.js +72 -0
- package/dist/tools/contextAssembly/context-list-memory-types.d.ts +19 -0
- package/dist/tools/contextAssembly/context-list-memory-types.js +67 -0
- package/dist/tools/contextAssembly/context-validate.d.ts +22 -0
- package/dist/tools/contextAssembly/context-validate.js +75 -0
- package/dist/tools/contextAssembly/index.d.ts +19 -0
- package/dist/tools/contextAssembly/index.js +33 -0
- package/dist/tools/contextRuleEngine/index.d.ts +23 -0
- package/dist/tools/contextRuleEngine/index.js +41 -0
- package/dist/tools/contextRuleEngine/rule-create.d.ts +20 -0
- package/dist/tools/contextRuleEngine/rule-create.js +76 -0
- package/dist/tools/contextRuleEngine/rule-delete.d.ts +21 -0
- package/dist/tools/contextRuleEngine/rule-delete.js +71 -0
- package/dist/tools/contextRuleEngine/rule-evaluate.d.ts +20 -0
- package/dist/tools/contextRuleEngine/rule-evaluate.js +75 -0
- package/dist/tools/contextRuleEngine/rule-get-possible-variables.d.ts +19 -0
- package/dist/tools/contextRuleEngine/rule-get-possible-variables.js +67 -0
- package/dist/tools/contextRuleEngine/rule-get.d.ts +21 -0
- package/dist/tools/contextRuleEngine/rule-get.js +72 -0
- package/dist/tools/contextRuleEngine/rule-list.d.ts +19 -0
- package/dist/tools/contextRuleEngine/rule-list.js +67 -0
- package/dist/tools/contextRuleEngine/rule-update.d.ts +24 -0
- package/dist/tools/contextRuleEngine/rule-update.js +76 -0
- package/dist/tools/crawler/crawler-click.d.ts +16 -0
- package/dist/tools/crawler/crawler-click.js +67 -0
- package/dist/tools/crawler/crawler-go-to-page.d.ts +16 -0
- package/dist/tools/crawler/crawler-go-to-page.js +63 -0
- package/dist/tools/crawler/crawler-screenshot.d.ts +13 -0
- package/dist/tools/crawler/crawler-screenshot.js +52 -0
- package/dist/tools/crawler/crawler-scroll.d.ts +16 -0
- package/dist/tools/crawler/crawler-scroll.js +68 -0
- package/dist/tools/crawler/crawler-start.d.ts +13 -0
- package/dist/tools/crawler/crawler-start.js +52 -0
- package/dist/tools/crawler/index.d.ts +17 -0
- package/dist/tools/crawler/index.js +33 -0
- package/dist/tools/dbmemory/dbmemory-add.d.ts +11 -0
- package/dist/tools/dbmemory/dbmemory-add.js +54 -0
- package/dist/tools/dbmemory/dbmemory-get.d.ts +10 -0
- package/dist/tools/dbmemory/dbmemory-get.js +54 -0
- package/dist/tools/dbmemory/index.d.ts +5 -0
- package/dist/tools/dbmemory/index.js +22 -0
- package/dist/tools/debug/debug-add-log.d.ts +18 -0
- package/dist/tools/debug/debug-add-log.js +119 -0
- package/dist/tools/debug/debug-open-browser.d.ts +18 -0
- package/dist/tools/debug/debug-open-browser.js +90 -0
- package/dist/tools/debug/index.d.ts +11 -0
- package/dist/tools/debug/index.js +21 -0
- package/dist/tools/episodicMemory/episodic-append-event.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-append-event.js +60 -0
- package/dist/tools/episodicMemory/episodic-archive-memory.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-archive-memory.js +54 -0
- package/dist/tools/episodicMemory/episodic-create-memory.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-create-memory.js +54 -0
- package/dist/tools/episodicMemory/episodic-get-agents.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-get-agents.js +55 -0
- package/dist/tools/episodicMemory/episodic-get-event-types.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-get-event-types.js +55 -0
- package/dist/tools/episodicMemory/episodic-get-memory.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-get-memory.js +55 -0
- package/dist/tools/episodicMemory/episodic-get-tags.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-get-tags.js +55 -0
- package/dist/tools/episodicMemory/episodic-list-memories.d.ts +8 -0
- package/dist/tools/episodicMemory/episodic-list-memories.js +52 -0
- package/dist/tools/episodicMemory/episodic-query-events.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-query-events.js +62 -0
- package/dist/tools/episodicMemory/episodic-unarchive-memory.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-unarchive-memory.js +54 -0
- package/dist/tools/episodicMemory/episodic-update-title.d.ts +9 -0
- package/dist/tools/episodicMemory/episodic-update-title.js +55 -0
- package/dist/tools/episodicMemory/index.d.ts +31 -0
- package/dist/tools/episodicMemory/index.js +57 -0
- package/dist/tools/event/event-add-running-agent.d.ts +32 -0
- package/dist/tools/event/event-add-running-agent.js +77 -0
- package/dist/tools/event/event-check-agent-event.d.ts +19 -0
- package/dist/tools/event/event-check-agent-event.js +63 -0
- package/dist/tools/event/event-check-completion.d.ts +19 -0
- package/dist/tools/event/event-check-completion.js +73 -0
- package/dist/tools/event/event-check-grouped-completion.d.ts +19 -0
- package/dist/tools/event/event-check-grouped-completion.js +63 -0
- package/dist/tools/event/event-get-running-count.d.ts +19 -0
- package/dist/tools/event/event-get-running-count.js +55 -0
- package/dist/tools/event/event-on-agent-event.d.ts +19 -0
- package/dist/tools/event/event-on-agent-event.js +63 -0
- package/dist/tools/event/event-on-completion.d.ts +19 -0
- package/dist/tools/event/event-on-completion.js +73 -0
- package/dist/tools/event/event-on-grouped-completion.d.ts +19 -0
- package/dist/tools/event/event-on-grouped-completion.js +63 -0
- package/dist/tools/event/event-wait-any.d.ts +19 -0
- package/dist/tools/event/event-wait-any.js +66 -0
- package/dist/tools/event/index.d.ts +25 -0
- package/dist/tools/event/index.js +48 -0
- package/dist/tools/eventLog/eventlog-append-event.d.ts +9 -0
- package/dist/tools/eventLog/eventlog-append-event.js +60 -0
- package/dist/tools/eventLog/eventlog-append-events.d.ts +9 -0
- package/dist/tools/eventLog/eventlog-append-events.js +69 -0
- package/dist/tools/eventLog/eventlog-create-instance.d.ts +10 -0
- package/dist/tools/eventLog/eventlog-create-instance.js +54 -0
- package/dist/tools/eventLog/eventlog-delete-instance.d.ts +9 -0
- package/dist/tools/eventLog/eventlog-delete-instance.js +52 -0
- package/dist/tools/eventLog/eventlog-get-instance-stats.d.ts +9 -0
- package/dist/tools/eventLog/eventlog-get-instance-stats.js +53 -0
- package/dist/tools/eventLog/eventlog-get-instance.d.ts +9 -0
- package/dist/tools/eventLog/eventlog-get-instance.js +53 -0
- package/dist/tools/eventLog/eventlog-list-instances.d.ts +8 -0
- package/dist/tools/eventLog/eventlog-list-instances.js +51 -0
- package/dist/tools/eventLog/eventlog-query-events.d.ts +10 -0
- package/dist/tools/eventLog/eventlog-query-events.js +74 -0
- package/dist/tools/eventLog/eventlog-update-instance.d.ts +11 -0
- package/dist/tools/eventLog/eventlog-update-instance.js +56 -0
- package/dist/tools/eventLog/index.d.ts +27 -0
- package/dist/tools/eventLog/index.js +49 -0
- package/dist/tools/file/edit.d.ts +40 -0
- package/dist/tools/file/edit.js +251 -0
- package/dist/tools/file/index.d.ts +17 -0
- package/dist/tools/file/index.js +32 -0
- package/dist/tools/file/list-directory.d.ts +44 -0
- package/dist/tools/file/list-directory.js +200 -0
- package/dist/tools/file/read-file.d.ts +36 -0
- package/dist/tools/file/read-file.js +194 -0
- package/dist/tools/file/read-many-files.d.ts +56 -0
- package/dist/tools/file/read-many-files.js +192 -0
- package/dist/tools/file/write-file.d.ts +32 -0
- package/dist/tools/file/write-file.js +143 -0
- package/dist/tools/fileIntent/file-intent-cancel.d.ts +18 -0
- package/dist/tools/fileIntent/file-intent-cancel.js +75 -0
- package/dist/tools/fileIntent/file-intent-check-overlap.d.ts +20 -0
- package/dist/tools/fileIntent/file-intent-check-overlap.js +99 -0
- package/dist/tools/fileIntent/file-intent-complete.d.ts +18 -0
- package/dist/tools/fileIntent/file-intent-complete.js +76 -0
- package/dist/tools/fileIntent/file-intent-create.d.ts +37 -0
- package/dist/tools/fileIntent/file-intent-create.js +140 -0
- package/dist/tools/fileIntent/file-intent-delete.d.ts +16 -0
- package/dist/tools/fileIntent/file-intent-delete.js +75 -0
- package/dist/tools/fileIntent/file-intent-get-blocked.d.ts +16 -0
- package/dist/tools/fileIntent/file-intent-get-blocked.js +76 -0
- package/dist/tools/fileIntent/file-intent-get-by-agent.d.ts +16 -0
- package/dist/tools/fileIntent/file-intent-get-by-agent.js +80 -0
- package/dist/tools/fileIntent/file-intent-get-files-with-intents.d.ts +16 -0
- package/dist/tools/fileIntent/file-intent-get-files-with-intents.js +80 -0
- package/dist/tools/fileIntent/file-intent-get.d.ts +16 -0
- package/dist/tools/fileIntent/file-intent-get.js +94 -0
- package/dist/tools/fileIntent/file-intent-list.d.ts +26 -0
- package/dist/tools/fileIntent/file-intent-list.js +97 -0
- package/dist/tools/fileIntent/file-intent-update.d.ts +33 -0
- package/dist/tools/fileIntent/file-intent-update.js +106 -0
- package/dist/tools/fileIntent/index.d.ts +29 -0
- package/dist/tools/fileIntent/index.js +57 -0
- package/dist/tools/fs/fs-create-file.d.ts +11 -0
- package/dist/tools/fs/fs-create-file.js +54 -0
- package/dist/tools/fs/fs-create-folder.d.ts +10 -0
- package/dist/tools/fs/fs-create-folder.js +53 -0
- package/dist/tools/fs/fs-delete-file.d.ts +10 -0
- package/dist/tools/fs/fs-delete-file.js +53 -0
- package/dist/tools/fs/fs-delete-folder.d.ts +10 -0
- package/dist/tools/fs/fs-delete-folder.js +53 -0
- package/dist/tools/fs/fs-file-search.d.ts +9 -0
- package/dist/tools/fs/fs-file-search.js +53 -0
- package/dist/tools/fs/fs-grep-search.d.ts +13 -0
- package/dist/tools/fs/fs-grep-search.js +58 -0
- package/dist/tools/fs/fs-list-code-definitions.d.ts +9 -0
- package/dist/tools/fs/fs-list-code-definitions.js +53 -0
- package/dist/tools/fs/fs-list-directory.d.ts +14 -0
- package/dist/tools/fs/fs-list-directory.js +58 -0
- package/dist/tools/fs/fs-list-file.d.ts +10 -0
- package/dist/tools/fs/fs-list-file.js +54 -0
- package/dist/tools/fs/fs-read-file.d.ts +9 -0
- package/dist/tools/fs/fs-read-file.js +52 -0
- package/dist/tools/fs/fs-read-many-files.d.ts +18 -0
- package/dist/tools/fs/fs-read-many-files.js +64 -0
- package/dist/tools/fs/fs-search-files.d.ts +11 -0
- package/dist/tools/fs/fs-search-files.js +56 -0
- package/dist/tools/fs/fs-update-file.d.ts +11 -0
- package/dist/tools/fs/fs-update-file.js +54 -0
- package/dist/tools/fs/index.d.ts +35 -0
- package/dist/tools/fs/index.js +65 -0
- package/dist/tools/git/add.d.ts +15 -0
- package/dist/tools/git/add.js +79 -0
- package/dist/tools/git/branch.d.ts +18 -0
- package/dist/tools/git/branch.js +89 -0
- package/dist/tools/git/checkout.d.ts +18 -0
- package/dist/tools/git/checkout.js +89 -0
- package/dist/tools/git/clone.d.ts +20 -0
- package/dist/tools/git/clone.js +96 -0
- package/dist/tools/git/commit.d.ts +18 -0
- package/dist/tools/git/commit.js +89 -0
- package/dist/tools/git/diff.d.ts +18 -0
- package/dist/tools/git/diff.js +93 -0
- package/dist/tools/git/git-action.d.ts +48 -0
- package/dist/tools/git/git-action.js +279 -0
- package/dist/tools/git/index.d.ts +29 -0
- package/dist/tools/git/index.js +57 -0
- package/dist/tools/git/init.d.ts +18 -0
- package/dist/tools/git/init.js +89 -0
- package/dist/tools/git/logs.d.ts +18 -0
- package/dist/tools/git/logs.js +104 -0
- package/dist/tools/git/pull.d.ts +15 -0
- package/dist/tools/git/pull.js +79 -0
- package/dist/tools/git/push.d.ts +15 -0
- package/dist/tools/git/push.js +79 -0
- package/dist/tools/git/status.d.ts +15 -0
- package/dist/tools/git/status.js +123 -0
- package/dist/tools/groupFeedback/feedback-create.d.ts +20 -0
- package/dist/tools/groupFeedback/feedback-create.js +81 -0
- package/dist/tools/groupFeedback/feedback-get.d.ts +22 -0
- package/dist/tools/groupFeedback/feedback-get.js +74 -0
- package/dist/tools/groupFeedback/feedback-list.d.ts +20 -0
- package/dist/tools/groupFeedback/feedback-list.js +76 -0
- package/dist/tools/groupFeedback/feedback-reply.d.ts +22 -0
- package/dist/tools/groupFeedback/feedback-reply.js +80 -0
- package/dist/tools/groupFeedback/feedback-respond.d.ts +20 -0
- package/dist/tools/groupFeedback/feedback-respond.js +76 -0
- package/dist/tools/groupFeedback/feedback-update-status.d.ts +20 -0
- package/dist/tools/groupFeedback/feedback-update-status.js +76 -0
- package/dist/tools/groupFeedback/feedback-update-summary.d.ts +20 -0
- package/dist/tools/groupFeedback/feedback-update-summary.js +76 -0
- package/dist/tools/groupFeedback/index.d.ts +23 -0
- package/dist/tools/groupFeedback/index.js +41 -0
- package/dist/tools/history/history-summarize-all.d.ts +19 -0
- package/dist/tools/history/history-summarize-all.js +52 -0
- package/dist/tools/history/history-summarize.d.ts +35 -0
- package/dist/tools/history/history-summarize.js +102 -0
- package/dist/tools/history/index.d.ts +11 -0
- package/dist/tools/history/index.js +20 -0
- package/dist/tools/hook/hook-create.d.ts +10 -0
- package/dist/tools/hook/hook-create.js +56 -0
- package/dist/tools/hook/hook-delete.d.ts +9 -0
- package/dist/tools/hook/hook-delete.js +52 -0
- package/dist/tools/hook/hook-disable.d.ts +9 -0
- package/dist/tools/hook/hook-disable.js +52 -0
- package/dist/tools/hook/hook-enable.d.ts +9 -0
- package/dist/tools/hook/hook-enable.js +52 -0
- package/dist/tools/hook/hook-get.d.ts +9 -0
- package/dist/tools/hook/hook-get.js +52 -0
- package/dist/tools/hook/hook-initialize.d.ts +9 -0
- package/dist/tools/hook/hook-initialize.js +52 -0
- package/dist/tools/hook/hook-list.d.ts +8 -0
- package/dist/tools/hook/hook-list.js +51 -0
- package/dist/tools/hook/hook-update.d.ts +11 -0
- package/dist/tools/hook/hook-update.js +56 -0
- package/dist/tools/hook/index.d.ts +25 -0
- package/dist/tools/hook/index.js +45 -0
- package/dist/tools/index.d.ts +212 -0
- package/dist/tools/index.js +570 -0
- package/dist/tools/job/index.d.ts +31 -0
- package/dist/tools/job/index.js +61 -0
- package/dist/tools/job/job-add-dependency.d.ts +33 -0
- package/dist/tools/job/job-add-dependency.js +97 -0
- package/dist/tools/job/job-bid-add.d.ts +40 -0
- package/dist/tools/job/job-bid-add.js +107 -0
- package/dist/tools/job/job-create.d.ts +65 -0
- package/dist/tools/job/job-create.js +143 -0
- package/dist/tools/job/job-delete.d.ts +24 -0
- package/dist/tools/job/job-delete.js +76 -0
- package/dist/tools/job/job-get-blocked.d.ts +49 -0
- package/dist/tools/job/job-get-blocked.js +121 -0
- package/dist/tools/job/job-get-ready.d.ts +49 -0
- package/dist/tools/job/job-get-ready.js +121 -0
- package/dist/tools/job/job-get.d.ts +24 -0
- package/dist/tools/job/job-get.js +76 -0
- package/dist/tools/job/job-group-create.d.ts +32 -0
- package/dist/tools/job/job-group-create.js +91 -0
- package/dist/tools/job/job-list.d.ts +65 -0
- package/dist/tools/job/job-list.js +151 -0
- package/dist/tools/job/job-lock.d.ts +32 -0
- package/dist/tools/job/job-lock.js +87 -0
- package/dist/tools/job/job-unlock.d.ts +28 -0
- package/dist/tools/job/job-unlock.js +83 -0
- package/dist/tools/job/job-update.d.ts +65 -0
- package/dist/tools/job/job-update.js +159 -0
- package/dist/tools/knowledge/index.d.ts +31 -0
- package/dist/tools/knowledge/index.js +68 -0
- package/dist/tools/knowledge/kg-edge-add.d.ts +40 -0
- package/dist/tools/knowledge/kg-edge-add.js +109 -0
- package/dist/tools/knowledge/kg-edge-list.d.ts +36 -0
- package/dist/tools/knowledge/kg-edge-list.js +108 -0
- package/dist/tools/knowledge/kg-instance-create.d.ts +32 -0
- package/dist/tools/knowledge/kg-instance-create.js +94 -0
- package/dist/tools/knowledge/kg-instance-delete.d.ts +24 -0
- package/dist/tools/knowledge/kg-instance-delete.js +77 -0
- package/dist/tools/knowledge/kg-instance-get.d.ts +24 -0
- package/dist/tools/knowledge/kg-instance-get.js +88 -0
- package/dist/tools/knowledge/kg-instance-list.d.ts +23 -0
- package/dist/tools/knowledge/kg-instance-list.js +78 -0
- package/dist/tools/knowledge/kg-record-add.d.ts +40 -0
- package/dist/tools/knowledge/kg-record-add.js +106 -0
- package/dist/tools/knowledge/kg-record-list.d.ts +36 -0
- package/dist/tools/knowledge/kg-record-list.js +114 -0
- package/dist/tools/knowledge/kg-template-create.d.ts +37 -0
- package/dist/tools/knowledge/kg-template-create.js +124 -0
- package/dist/tools/knowledge/kg-template-delete.d.ts +24 -0
- package/dist/tools/knowledge/kg-template-delete.js +77 -0
- package/dist/tools/knowledge/kg-template-get.d.ts +24 -0
- package/dist/tools/knowledge/kg-template-get.js +88 -0
- package/dist/tools/knowledge/kg-template-list.d.ts +19 -0
- package/dist/tools/knowledge/kg-template-list.js +70 -0
- package/dist/tools/knowledgeGraph/index.d.ts +66 -0
- package/dist/tools/knowledgeGraph/index.js +139 -0
- package/dist/tools/knowledgeGraph/kg-add-edge.d.ts +11 -0
- package/dist/tools/knowledgeGraph/kg-add-edge.js +56 -0
- package/dist/tools/knowledgeGraph/kg-add-edges.d.ts +11 -0
- package/dist/tools/knowledgeGraph/kg-add-edges.js +58 -0
- package/dist/tools/knowledgeGraph/kg-add-memory-record.d.ts +11 -0
- package/dist/tools/knowledgeGraph/kg-add-memory-record.js +56 -0
- package/dist/tools/knowledgeGraph/kg-add-memory-records.d.ts +11 -0
- package/dist/tools/knowledgeGraph/kg-add-memory-records.js +58 -0
- package/dist/tools/knowledgeGraph/kg-create-instance-template.d.ts +10 -0
- package/dist/tools/knowledgeGraph/kg-create-instance-template.js +56 -0
- package/dist/tools/knowledgeGraph/kg-create-instance.d.ts +10 -0
- package/dist/tools/knowledgeGraph/kg-create-instance.js +56 -0
- package/dist/tools/knowledgeGraph/kg-create-view-template.d.ts +10 -0
- package/dist/tools/knowledgeGraph/kg-create-view-template.js +56 -0
- package/dist/tools/knowledgeGraph/kg-create-view.d.ts +10 -0
- package/dist/tools/knowledgeGraph/kg-create-view.js +53 -0
- package/dist/tools/knowledgeGraph/kg-delete-edge.d.ts +10 -0
- package/dist/tools/knowledgeGraph/kg-delete-edge.js +53 -0
- package/dist/tools/knowledgeGraph/kg-delete-instance-template.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-delete-instance-template.js +52 -0
- package/dist/tools/knowledgeGraph/kg-delete-instance.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-delete-instance.js +52 -0
- package/dist/tools/knowledgeGraph/kg-delete-memory-record.d.ts +10 -0
- package/dist/tools/knowledgeGraph/kg-delete-memory-record.js +53 -0
- package/dist/tools/knowledgeGraph/kg-delete-view-template.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-delete-view-template.js +52 -0
- package/dist/tools/knowledgeGraph/kg-delete-view.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-delete-view.js +52 -0
- package/dist/tools/knowledgeGraph/kg-execute-view.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-execute-view.js +52 -0
- package/dist/tools/knowledgeGraph/kg-get-instance-template.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-get-instance-template.js +52 -0
- package/dist/tools/knowledgeGraph/kg-get-instance.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-get-instance.js +52 -0
- package/dist/tools/knowledgeGraph/kg-get-memory-record.d.ts +10 -0
- package/dist/tools/knowledgeGraph/kg-get-memory-record.js +53 -0
- package/dist/tools/knowledgeGraph/kg-get-view-template.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-get-view-template.js +52 -0
- package/dist/tools/knowledgeGraph/kg-list-edges.d.ts +11 -0
- package/dist/tools/knowledgeGraph/kg-list-edges.js +57 -0
- package/dist/tools/knowledgeGraph/kg-list-instance-templates.d.ts +8 -0
- package/dist/tools/knowledgeGraph/kg-list-instance-templates.js +51 -0
- package/dist/tools/knowledgeGraph/kg-list-instances.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-list-instances.js +53 -0
- package/dist/tools/knowledgeGraph/kg-list-memory-records.d.ts +11 -0
- package/dist/tools/knowledgeGraph/kg-list-memory-records.js +57 -0
- package/dist/tools/knowledgeGraph/kg-list-view-templates.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-list-view-templates.js +53 -0
- package/dist/tools/knowledgeGraph/kg-list-views.d.ts +9 -0
- package/dist/tools/knowledgeGraph/kg-list-views.js +53 -0
- package/dist/tools/knowledgeGraph/kg-update-instance-template.d.ts +11 -0
- package/dist/tools/knowledgeGraph/kg-update-instance-template.js +56 -0
- package/dist/tools/knowledgeGraph/kg-update-memory-record.d.ts +12 -0
- package/dist/tools/knowledgeGraph/kg-update-memory-record.js +57 -0
- package/dist/tools/knowledgeGraph/kg-update-view-template.d.ts +11 -0
- package/dist/tools/knowledgeGraph/kg-update-view-template.js +53 -0
- package/dist/tools/kvStore/index.d.ts +7 -0
- package/dist/tools/kvStore/index.js +28 -0
- package/dist/tools/kvStore/kv-create-instance.d.ts +11 -0
- package/dist/tools/kvStore/kv-create-instance.js +55 -0
- package/dist/tools/kvStore/kv-get.d.ts +12 -0
- package/dist/tools/kvStore/kv-get.js +56 -0
- package/dist/tools/kvStore/kv-set.d.ts +14 -0
- package/dist/tools/kvStore/kv-set.js +57 -0
- package/dist/tools/kvStore/kv-store-create-instance.d.ts +26 -0
- package/dist/tools/kvStore/kv-store-create-instance.js +79 -0
- package/dist/tools/kvStore/kv-store-get.d.ts +30 -0
- package/dist/tools/kvStore/kv-store-get.js +80 -0
- package/dist/tools/kvStore/kv-store-set.d.ts +38 -0
- package/dist/tools/kvStore/kv-store-set.js +86 -0
- package/dist/tools/llm/index.d.ts +11 -0
- package/dist/tools/llm/index.js +20 -0
- package/dist/tools/llm/llm-get-config.d.ts +24 -0
- package/dist/tools/llm/llm-get-config.js +84 -0
- package/dist/tools/llm/llm-inference.d.ts +66 -0
- package/dist/tools/llm/llm-inference.js +137 -0
- package/dist/tools/mail/index.d.ts +53 -0
- package/dist/tools/mail/index.js +104 -0
- package/dist/tools/mail/mail-acknowledge.d.ts +27 -0
- package/dist/tools/mail/mail-acknowledge.js +69 -0
- package/dist/tools/mail/mail-archive-thread.d.ts +23 -0
- package/dist/tools/mail/mail-archive-thread.js +60 -0
- package/dist/tools/mail/mail-check-conflicts.d.ts +27 -0
- package/dist/tools/mail/mail-check-conflicts.js +69 -0
- package/dist/tools/mail/mail-create-thread.d.ts +35 -0
- package/dist/tools/mail/mail-create-thread.js +74 -0
- package/dist/tools/mail/mail-fetch-inbox.d.ts +35 -0
- package/dist/tools/mail/mail-fetch-inbox.js +72 -0
- package/dist/tools/mail/mail-find-or-create-thread.d.ts +35 -0
- package/dist/tools/mail/mail-find-or-create-thread.js +74 -0
- package/dist/tools/mail/mail-force-reserve-files.d.ts +35 -0
- package/dist/tools/mail/mail-force-reserve-files.js +79 -0
- package/dist/tools/mail/mail-get-agent.d.ts +23 -0
- package/dist/tools/mail/mail-get-agent.js +60 -0
- package/dist/tools/mail/mail-get-message.d.ts +23 -0
- package/dist/tools/mail/mail-get-message.js +60 -0
- package/dist/tools/mail/mail-get-messages.d.ts +23 -0
- package/dist/tools/mail/mail-get-messages.js +61 -0
- package/dist/tools/mail/mail-get-thread.d.ts +23 -0
- package/dist/tools/mail/mail-get-thread.js +60 -0
- package/dist/tools/mail/mail-list-agents.d.ts +19 -0
- package/dist/tools/mail/mail-list-agents.js +55 -0
- package/dist/tools/mail/mail-list-reservations.d.ts +27 -0
- package/dist/tools/mail/mail-list-reservations.js +64 -0
- package/dist/tools/mail/mail-list-threads.d.ts +43 -0
- package/dist/tools/mail/mail-list-threads.js +83 -0
- package/dist/tools/mail/mail-mark-read.d.ts +27 -0
- package/dist/tools/mail/mail-mark-read.js +70 -0
- package/dist/tools/mail/mail-register-agent.d.ts +35 -0
- package/dist/tools/mail/mail-register-agent.js +79 -0
- package/dist/tools/mail/mail-release-files.d.ts +27 -0
- package/dist/tools/mail/mail-release-files.js +69 -0
- package/dist/tools/mail/mail-reply-message.d.ts +39 -0
- package/dist/tools/mail/mail-reply-message.js +77 -0
- package/dist/tools/mail/mail-reserve-files.d.ts +35 -0
- package/dist/tools/mail/mail-reserve-files.js +79 -0
- package/dist/tools/mail/mail-search.d.ts +39 -0
- package/dist/tools/mail/mail-search.js +76 -0
- package/dist/tools/mail/mail-send-message.d.ts +55 -0
- package/dist/tools/mail/mail-send-message.js +95 -0
- package/dist/tools/mail/mail-summarize-thread.d.ts +27 -0
- package/dist/tools/mail/mail-summarize-thread.js +64 -0
- package/dist/tools/mail/mail-update-thread-status.d.ts +27 -0
- package/dist/tools/mail/mail-update-thread-status.js +65 -0
- package/dist/tools/mcp/index.d.ts +15 -0
- package/dist/tools/mcp/index.js +28 -0
- package/dist/tools/mcp/mcp-configure-server.d.ts +28 -0
- package/dist/tools/mcp/mcp-configure-server.js +86 -0
- package/dist/tools/mcp/mcp-execute-tool.d.ts +32 -0
- package/dist/tools/mcp/mcp-execute-tool.js +93 -0
- package/dist/tools/mcp/mcp-get-tools.d.ts +24 -0
- package/dist/tools/mcp/mcp-get-tools.js +80 -0
- package/dist/tools/mcp/mcp-list-servers.d.ts +19 -0
- package/dist/tools/mcp/mcp-list-servers.js +62 -0
- package/dist/tools/memory/episodic-memory-append-event.d.ts +49 -0
- package/dist/tools/memory/episodic-memory-append-event.js +129 -0
- package/dist/tools/memory/episodic-memory-archive.d.ts +24 -0
- package/dist/tools/memory/episodic-memory-archive.js +81 -0
- package/dist/tools/memory/episodic-memory-create.d.ts +24 -0
- package/dist/tools/memory/episodic-memory-create.js +81 -0
- package/dist/tools/memory/episodic-memory-get-event-types.d.ts +28 -0
- package/dist/tools/memory/episodic-memory-get-event-types.js +87 -0
- package/dist/tools/memory/episodic-memory-get.d.ts +24 -0
- package/dist/tools/memory/episodic-memory-get.js +81 -0
- package/dist/tools/memory/episodic-memory-list.d.ts +24 -0
- package/dist/tools/memory/episodic-memory-list.js +82 -0
- package/dist/tools/memory/episodic-memory-query-events.d.ts +56 -0
- package/dist/tools/memory/episodic-memory-query-events.js +131 -0
- package/dist/tools/memory/episodic-memory-update-title.d.ts +28 -0
- package/dist/tools/memory/episodic-memory-update-title.js +89 -0
- package/dist/tools/memory/index.d.ts +57 -0
- package/dist/tools/memory/index.js +122 -0
- package/dist/tools/memory/memory-json-delete.d.ts +24 -0
- package/dist/tools/memory/memory-json-delete.js +77 -0
- package/dist/tools/memory/memory-json-list.d.ts +24 -0
- package/dist/tools/memory/memory-json-list.js +82 -0
- package/dist/tools/memory/memory-json-save.d.ts +24 -0
- package/dist/tools/memory/memory-json-save.js +80 -0
- package/dist/tools/memory/memory-json-update.d.ts +28 -0
- package/dist/tools/memory/memory-json-update.js +87 -0
- package/dist/tools/memory/memory-markdown-delete.d.ts +24 -0
- package/dist/tools/memory/memory-markdown-delete.js +77 -0
- package/dist/tools/memory/memory-markdown-list.d.ts +24 -0
- package/dist/tools/memory/memory-markdown-list.js +82 -0
- package/dist/tools/memory/memory-markdown-save.d.ts +28 -0
- package/dist/tools/memory/memory-markdown-save.js +90 -0
- package/dist/tools/memory/memory-markdown-update.d.ts +32 -0
- package/dist/tools/memory/memory-markdown-update.js +97 -0
- package/dist/tools/memory/memory-todo-delete.d.ts +24 -0
- package/dist/tools/memory/memory-todo-delete.js +77 -0
- package/dist/tools/memory/memory-todo-list.d.ts +24 -0
- package/dist/tools/memory/memory-todo-list.js +82 -0
- package/dist/tools/memory/memory-todo-save.d.ts +28 -0
- package/dist/tools/memory/memory-todo-save.js +90 -0
- package/dist/tools/memory/memory-todo-update.d.ts +28 -0
- package/dist/tools/memory/memory-todo-update.js +87 -0
- package/dist/tools/memory/persistent-memory-create.d.ts +66 -0
- package/dist/tools/memory/persistent-memory-create.js +178 -0
- package/dist/tools/memory/persistent-memory-get.d.ts +24 -0
- package/dist/tools/memory/persistent-memory-get.js +89 -0
- package/dist/tools/memory/persistent-memory-list.d.ts +28 -0
- package/dist/tools/memory/persistent-memory-list.js +102 -0
- package/dist/tools/memory/persistent-memory-retrieve.d.ts +40 -0
- package/dist/tools/memory/persistent-memory-retrieve.js +120 -0
- package/dist/tools/memory/persistent-memory-update.d.ts +70 -0
- package/dist/tools/memory/persistent-memory-update.js +187 -0
- package/dist/tools/memoryIngestion/index.d.ts +5 -0
- package/dist/tools/memoryIngestion/index.js +25 -0
- package/dist/tools/memoryIngestion/mi-create-pipeline.d.ts +44 -0
- package/dist/tools/memoryIngestion/mi-create-pipeline.js +114 -0
- package/dist/tools/memoryIngestion/mi-create.d.ts +17 -0
- package/dist/tools/memoryIngestion/mi-create.js +85 -0
- package/dist/tools/memoryIngestion/mi-execute.d.ts +17 -0
- package/dist/tools/memoryIngestion/mi-execute.js +64 -0
- package/dist/tools/memoryIngestion/mi-list.d.ts +22 -0
- package/dist/tools/memoryIngestion/mi-list.js +66 -0
- package/dist/tools/orchestration/agent-details.d.ts +15 -0
- package/dist/tools/orchestration/agent-details.js +98 -0
- package/dist/tools/orchestration/agent-find.d.ts +18 -0
- package/dist/tools/orchestration/agent-find.js +125 -0
- package/dist/tools/orchestration/agent-list.d.ts +13 -0
- package/dist/tools/orchestration/agent-list.js +106 -0
- package/dist/tools/orchestration/agent-management.d.ts +44 -0
- package/dist/tools/orchestration/agent-management.js +250 -0
- package/dist/tools/orchestration/agent-start.d.ts +18 -0
- package/dist/tools/orchestration/agent-start.js +90 -0
- package/dist/tools/orchestration/index.d.ts +49 -0
- package/dist/tools/orchestration/index.js +102 -0
- package/dist/tools/orchestration/task-assign.d.ts +18 -0
- package/dist/tools/orchestration/task-assign.js +84 -0
- package/dist/tools/orchestration/task-create.d.ts +20 -0
- package/dist/tools/orchestration/task-create.js +97 -0
- package/dist/tools/orchestration/task-delete.d.ts +16 -0
- package/dist/tools/orchestration/task-delete.js +77 -0
- package/dist/tools/orchestration/task-execute.d.ts +18 -0
- package/dist/tools/orchestration/task-execute.js +84 -0
- package/dist/tools/orchestration/task-get.d.ts +16 -0
- package/dist/tools/orchestration/task-get.js +89 -0
- package/dist/tools/orchestration/task-list.d.ts +13 -0
- package/dist/tools/orchestration/task-list.js +74 -0
- package/dist/tools/orchestration/task-management.d.ts +52 -0
- package/dist/tools/orchestration/task-management.js +231 -0
- package/dist/tools/orchestration/task-update.d.ts +22 -0
- package/dist/tools/orchestration/task-update.js +96 -0
- package/dist/tools/orchestration/thread-create-background.d.ts +18 -0
- package/dist/tools/orchestration/thread-create-background.js +94 -0
- package/dist/tools/orchestration/thread-create-start.d.ts +16 -0
- package/dist/tools/orchestration/thread-create-start.js +85 -0
- package/dist/tools/orchestration/thread-create.d.ts +16 -0
- package/dist/tools/orchestration/thread-create.js +85 -0
- package/dist/tools/orchestration/thread-delete.d.ts +16 -0
- package/dist/tools/orchestration/thread-delete.js +77 -0
- package/dist/tools/orchestration/thread-get-messages.d.ts +24 -0
- package/dist/tools/orchestration/thread-get-messages.js +122 -0
- package/dist/tools/orchestration/thread-get.d.ts +16 -0
- package/dist/tools/orchestration/thread-get.js +85 -0
- package/dist/tools/orchestration/thread-list.d.ts +16 -0
- package/dist/tools/orchestration/thread-list.js +85 -0
- package/dist/tools/orchestration/thread-start.d.ts +16 -0
- package/dist/tools/orchestration/thread-start.js +82 -0
- package/dist/tools/orchestration/thread-update-status.d.ts +18 -0
- package/dist/tools/orchestration/thread-update-status.js +89 -0
- package/dist/tools/orchestration/thread-update.d.ts +18 -0
- package/dist/tools/orchestration/thread-update.js +89 -0
- package/dist/tools/orchestrator/index.d.ts +23 -0
- package/dist/tools/orchestrator/index.js +45 -0
- package/dist/tools/orchestrator/orchestrator-create.d.ts +24 -0
- package/dist/tools/orchestrator/orchestrator-create.js +113 -0
- package/dist/tools/orchestrator/orchestrator-delete.d.ts +16 -0
- package/dist/tools/orchestrator/orchestrator-delete.js +75 -0
- package/dist/tools/orchestrator/orchestrator-get-settings.d.ts +16 -0
- package/dist/tools/orchestrator/orchestrator-get-settings.js +80 -0
- package/dist/tools/orchestrator/orchestrator-get.d.ts +16 -0
- package/dist/tools/orchestrator/orchestrator-get.js +91 -0
- package/dist/tools/orchestrator/orchestrator-list.d.ts +13 -0
- package/dist/tools/orchestrator/orchestrator-list.js +74 -0
- package/dist/tools/orchestrator/orchestrator-update-settings.d.ts +24 -0
- package/dist/tools/orchestrator/orchestrator-update-settings.js +105 -0
- package/dist/tools/orchestrator/orchestrator-update-status.d.ts +18 -0
- package/dist/tools/orchestrator/orchestrator-update-status.js +93 -0
- package/dist/tools/orchestrator/orchestrator-update.d.ts +26 -0
- package/dist/tools/orchestrator/orchestrator-update.js +111 -0
- package/dist/tools/outputparsers/index.d.ts +21 -0
- package/dist/tools/outputparsers/index.js +37 -0
- package/dist/tools/outputparsers/outputparsers-parse-csv.d.ts +9 -0
- package/dist/tools/outputparsers/outputparsers-parse-csv.js +53 -0
- package/dist/tools/outputparsers/outputparsers-parse-errors.d.ts +9 -0
- package/dist/tools/outputparsers/outputparsers-parse-errors.js +45 -0
- package/dist/tools/outputparsers/outputparsers-parse-json.d.ts +9 -0
- package/dist/tools/outputparsers/outputparsers-parse-json.js +53 -0
- package/dist/tools/outputparsers/outputparsers-parse-text.d.ts +9 -0
- package/dist/tools/outputparsers/outputparsers-parse-text.js +53 -0
- package/dist/tools/outputparsers/outputparsers-parse-warnings.d.ts +9 -0
- package/dist/tools/outputparsers/outputparsers-parse-warnings.js +45 -0
- package/dist/tools/outputparsers/outputparsers-parse-xml.d.ts +9 -0
- package/dist/tools/outputparsers/outputparsers-parse-xml.js +52 -0
- package/dist/tools/persistentMemory/index.d.ts +25 -0
- package/dist/tools/persistentMemory/index.js +45 -0
- package/dist/tools/persistentMemory/persistent-memory-create.d.ts +10 -0
- package/dist/tools/persistentMemory/persistent-memory-create.js +57 -0
- package/dist/tools/persistentMemory/persistent-memory-delete.d.ts +9 -0
- package/dist/tools/persistentMemory/persistent-memory-delete.js +53 -0
- package/dist/tools/persistentMemory/persistent-memory-execute-retrieval.d.ts +11 -0
- package/dist/tools/persistentMemory/persistent-memory-execute-retrieval.js +57 -0
- package/dist/tools/persistentMemory/persistent-memory-get-step-specs.d.ts +8 -0
- package/dist/tools/persistentMemory/persistent-memory-get-step-specs.js +51 -0
- package/dist/tools/persistentMemory/persistent-memory-get.d.ts +9 -0
- package/dist/tools/persistentMemory/persistent-memory-get.js +53 -0
- package/dist/tools/persistentMemory/persistent-memory-list.d.ts +10 -0
- package/dist/tools/persistentMemory/persistent-memory-list.js +58 -0
- package/dist/tools/persistentMemory/persistent-memory-update.d.ts +11 -0
- package/dist/tools/persistentMemory/persistent-memory-update.js +57 -0
- package/dist/tools/persistentMemory/persistent-memory-validate.d.ts +10 -0
- package/dist/tools/persistentMemory/persistent-memory-validate.js +56 -0
- package/dist/tools/planning/index.d.ts +39 -0
- package/dist/tools/planning/index.js +80 -0
- package/dist/tools/planning/plan-add-task.d.ts +49 -0
- package/dist/tools/planning/plan-add-task.js +105 -0
- package/dist/tools/planning/plan-create.d.ts +44 -0
- package/dist/tools/planning/plan-create.js +104 -0
- package/dist/tools/planning/plan-get-all.d.ts +27 -0
- package/dist/tools/planning/plan-get-all.js +83 -0
- package/dist/tools/planning/plan-get-detail.d.ts +24 -0
- package/dist/tools/planning/plan-get-detail.js +76 -0
- package/dist/tools/planning/plan-start-task.d.ts +28 -0
- package/dist/tools/planning/plan-start-task.js +83 -0
- package/dist/tools/planning/plan-update.d.ts +53 -0
- package/dist/tools/planning/plan-update.js +108 -0
- package/dist/tools/planning/roadmap-create-feature.d.ts +60 -0
- package/dist/tools/planning/roadmap-create-feature.js +128 -0
- package/dist/tools/planning/roadmap-create-idea.d.ts +48 -0
- package/dist/tools/planning/roadmap-create-idea.js +108 -0
- package/dist/tools/planning/roadmap-create-phase.d.ts +36 -0
- package/dist/tools/planning/roadmap-create-phase.js +82 -0
- package/dist/tools/planning/roadmap-delete-phase.d.ts +28 -0
- package/dist/tools/planning/roadmap-delete-phase.js +86 -0
- package/dist/tools/planning/roadmap-get-features.d.ts +28 -0
- package/dist/tools/planning/roadmap-get-features.js +74 -0
- package/dist/tools/planning/roadmap-get-ideas.d.ts +24 -0
- package/dist/tools/planning/roadmap-get-ideas.js +66 -0
- package/dist/tools/planning/roadmap-get-phases.d.ts +24 -0
- package/dist/tools/planning/roadmap-get-phases.js +66 -0
- package/dist/tools/planning/roadmap-get.d.ts +24 -0
- package/dist/tools/planning/roadmap-get.js +66 -0
- package/dist/tools/planning/roadmap-update-feature.d.ts +60 -0
- package/dist/tools/planning/roadmap-update-feature.js +139 -0
- package/dist/tools/planning/roadmap-update-phase.d.ts +40 -0
- package/dist/tools/planning/roadmap-update-phase.js +97 -0
- package/dist/tools/project/index.d.ts +17 -0
- package/dist/tools/project/index.js +32 -0
- package/dist/tools/project/project-get-editor-status.d.ts +19 -0
- package/dist/tools/project/project-get-editor-status.js +55 -0
- package/dist/tools/project/project-get-path.d.ts +19 -0
- package/dist/tools/project/project-get-path.js +55 -0
- package/dist/tools/project/project-get-repo-map.d.ts +23 -0
- package/dist/tools/project/project-get-repo-map.js +59 -0
- package/dist/tools/project/project-get-settings.d.ts +19 -0
- package/dist/tools/project/project-get-settings.js +55 -0
- package/dist/tools/project/project-run.d.ts +19 -0
- package/dist/tools/project/project-run.js +55 -0
- package/dist/tools/projectStructure/index.d.ts +66 -0
- package/dist/tools/projectStructure/index.js +147 -0
- package/dist/tools/projectStructure/ps-add-command.d.ts +31 -0
- package/dist/tools/projectStructure/ps-add-command.js +81 -0
- package/dist/tools/projectStructure/ps-add-dependency.d.ts +31 -0
- package/dist/tools/projectStructure/ps-add-dependency.js +82 -0
- package/dist/tools/projectStructure/ps-add-deployment.d.ts +31 -0
- package/dist/tools/projectStructure/ps-add-deployment.js +82 -0
- package/dist/tools/projectStructure/ps-add-route.d.ts +37 -0
- package/dist/tools/projectStructure/ps-add-route.js +95 -0
- package/dist/tools/projectStructure/ps-add-table.d.ts +43 -0
- package/dist/tools/projectStructure/ps-add-table.js +94 -0
- package/dist/tools/projectStructure/ps-add-ui-route.d.ts +35 -0
- package/dist/tools/projectStructure/ps-add-ui-route.js +89 -0
- package/dist/tools/projectStructure/ps-create-package.d.ts +29 -0
- package/dist/tools/projectStructure/ps-create-package.js +78 -0
- package/dist/tools/projectStructure/ps-delete-command.d.ts +25 -0
- package/dist/tools/projectStructure/ps-delete-command.js +68 -0
- package/dist/tools/projectStructure/ps-delete-dependency.d.ts +25 -0
- package/dist/tools/projectStructure/ps-delete-dependency.js +68 -0
- package/dist/tools/projectStructure/ps-delete-deployment.d.ts +25 -0
- package/dist/tools/projectStructure/ps-delete-deployment.js +68 -0
- package/dist/tools/projectStructure/ps-delete-package.d.ts +23 -0
- package/dist/tools/projectStructure/ps-delete-package.js +64 -0
- package/dist/tools/projectStructure/ps-delete-route.d.ts +25 -0
- package/dist/tools/projectStructure/ps-delete-route.js +68 -0
- package/dist/tools/projectStructure/ps-delete-table.d.ts +25 -0
- package/dist/tools/projectStructure/ps-delete-table.js +68 -0
- package/dist/tools/projectStructure/ps-delete-ui-route.d.ts +25 -0
- package/dist/tools/projectStructure/ps-delete-ui-route.js +68 -0
- package/dist/tools/projectStructure/ps-get-metadata.d.ts +21 -0
- package/dist/tools/projectStructure/ps-get-metadata.js +60 -0
- package/dist/tools/projectStructure/ps-get-package.d.ts +23 -0
- package/dist/tools/projectStructure/ps-get-package.js +64 -0
- package/dist/tools/projectStructure/ps-get-packages.d.ts +21 -0
- package/dist/tools/projectStructure/ps-get-packages.js +60 -0
- package/dist/tools/projectStructure/ps-update-command.d.ts +33 -0
- package/dist/tools/projectStructure/ps-update-command.js +85 -0
- package/dist/tools/projectStructure/ps-update-dependency.d.ts +33 -0
- package/dist/tools/projectStructure/ps-update-dependency.js +86 -0
- package/dist/tools/projectStructure/ps-update-deployment.d.ts +33 -0
- package/dist/tools/projectStructure/ps-update-deployment.js +86 -0
- package/dist/tools/projectStructure/ps-update-design-guidelines.d.ts +33 -0
- package/dist/tools/projectStructure/ps-update-design-guidelines.js +87 -0
- package/dist/tools/projectStructure/ps-update-frontend-framework.d.ts +31 -0
- package/dist/tools/projectStructure/ps-update-frontend-framework.js +81 -0
- package/dist/tools/projectStructure/ps-update-git.d.ts +29 -0
- package/dist/tools/projectStructure/ps-update-git.js +77 -0
- package/dist/tools/projectStructure/ps-update-metadata.d.ts +23 -0
- package/dist/tools/projectStructure/ps-update-metadata.js +64 -0
- package/dist/tools/projectStructure/ps-update-package.d.ts +29 -0
- package/dist/tools/projectStructure/ps-update-package.js +78 -0
- package/dist/tools/projectStructure/ps-update-route.d.ts +39 -0
- package/dist/tools/projectStructure/ps-update-route.js +99 -0
- package/dist/tools/projectStructure/ps-update-section.d.ts +27 -0
- package/dist/tools/projectStructure/ps-update-section.js +71 -0
- package/dist/tools/projectStructure/ps-update-table.d.ts +45 -0
- package/dist/tools/projectStructure/ps-update-table.js +98 -0
- package/dist/tools/projectStructure/ps-update-ui-route.d.ts +37 -0
- package/dist/tools/projectStructure/ps-update-ui-route.js +93 -0
- package/dist/tools/projectStructureUpdateRequest/index.d.ts +37 -0
- package/dist/tools/projectStructureUpdateRequest/index.js +69 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-add-comment.d.ts +12 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-add-comment.js +59 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-add-dispute.d.ts +11 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-add-dispute.js +58 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-complete.d.ts +10 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-complete.js +54 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-create.d.ts +10 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-create.js +63 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-delete.d.ts +10 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-delete.js +53 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-get.d.ts +10 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-get.js +54 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-list.d.ts +11 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-list.js +62 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-merge.d.ts +10 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-merge.js +54 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-resolve-dispute.d.ts +12 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-resolve-dispute.js +56 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-start-work.d.ts +10 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-start-work.js +54 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-submit.d.ts +10 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-submit.js +54 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-unwatch.d.ts +11 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-unwatch.js +55 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-update.d.ts +11 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-update.js +62 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-watch.d.ts +11 -0
- package/dist/tools/projectStructureUpdateRequest/update-request-watch.js +57 -0
- package/dist/tools/rag/index.d.ts +5 -0
- package/dist/tools/rag/index.js +22 -0
- package/dist/tools/rag/rag-add-file.d.ts +11 -0
- package/dist/tools/rag/rag-add-file.js +50 -0
- package/dist/tools/rag/rag-retrieve.d.ts +11 -0
- package/dist/tools/rag/rag-retrieve.js +47 -0
- package/dist/tools/registry.d.ts +90 -0
- package/dist/tools/registry.js +198 -0
- package/dist/tools/requirementPlan/index.d.ts +27 -0
- package/dist/tools/requirementPlan/index.js +49 -0
- package/dist/tools/requirementPlan/requirement-plan-add-section.d.ts +12 -0
- package/dist/tools/requirementPlan/requirement-plan-add-section.js +64 -0
- package/dist/tools/requirementPlan/requirement-plan-create.d.ts +9 -0
- package/dist/tools/requirementPlan/requirement-plan-create.js +52 -0
- package/dist/tools/requirementPlan/requirement-plan-get.d.ts +9 -0
- package/dist/tools/requirementPlan/requirement-plan-get.js +53 -0
- package/dist/tools/requirementPlan/requirement-plan-list.d.ts +8 -0
- package/dist/tools/requirementPlan/requirement-plan-list.js +51 -0
- package/dist/tools/requirementPlan/requirement-plan-remove-section.d.ts +10 -0
- package/dist/tools/requirementPlan/requirement-plan-remove-section.js +53 -0
- package/dist/tools/requirementPlan/requirement-plan-reorder-sections.d.ts +10 -0
- package/dist/tools/requirementPlan/requirement-plan-reorder-sections.js +57 -0
- package/dist/tools/requirementPlan/requirement-plan-review.d.ts +9 -0
- package/dist/tools/requirementPlan/requirement-plan-review.js +52 -0
- package/dist/tools/requirementPlan/requirement-plan-update-section.d.ts +12 -0
- package/dist/tools/requirementPlan/requirement-plan-update-section.js +63 -0
- package/dist/tools/requirementPlan/requirement-plan-update.d.ts +11 -0
- package/dist/tools/requirementPlan/requirement-plan-update.js +53 -0
- package/dist/tools/review/index.d.ts +23 -0
- package/dist/tools/review/index.js +44 -0
- package/dist/tools/review/review-add-comment.d.ts +36 -0
- package/dist/tools/review/review-add-comment.js +92 -0
- package/dist/tools/review/review-approve.d.ts +36 -0
- package/dist/tools/review/review-approve.js +89 -0
- package/dist/tools/review/review-create.d.ts +77 -0
- package/dist/tools/review/review-create.js +155 -0
- package/dist/tools/review/review-get.d.ts +24 -0
- package/dist/tools/review/review-get.js +66 -0
- package/dist/tools/review/review-list.d.ts +73 -0
- package/dist/tools/review/review-list.js +154 -0
- package/dist/tools/review/review-request-changes.d.ts +36 -0
- package/dist/tools/review/review-request-changes.js +92 -0
- package/dist/tools/review/review-submit.d.ts +24 -0
- package/dist/tools/review/review-submit.js +67 -0
- package/dist/tools/review/review-update.d.ts +69 -0
- package/dist/tools/review/review-update.js +160 -0
- package/dist/tools/reviewMergeRequest/index.d.ts +7 -0
- package/dist/tools/reviewMergeRequest/index.js +28 -0
- package/dist/tools/reviewMergeRequest/rmr-create.d.ts +15 -0
- package/dist/tools/reviewMergeRequest/rmr-create.js +68 -0
- package/dist/tools/reviewMergeRequest/rmr-list.d.ts +13 -0
- package/dist/tools/reviewMergeRequest/rmr-list.js +56 -0
- package/dist/tools/reviewMergeRequest/rmr-merge.d.ts +11 -0
- package/dist/tools/reviewMergeRequest/rmr-merge.js +52 -0
- package/dist/tools/roadmap/index.d.ts +7 -0
- package/dist/tools/roadmap/index.js +28 -0
- package/dist/tools/roadmap/roadmap-create-idea.d.ts +15 -0
- package/dist/tools/roadmap/roadmap-create-idea.js +63 -0
- package/dist/tools/roadmap/roadmap-create-phase.d.ts +16 -0
- package/dist/tools/roadmap/roadmap-create-phase.js +65 -0
- package/dist/tools/roadmap/roadmap-get.d.ts +10 -0
- package/dist/tools/roadmap/roadmap-get.js +54 -0
- package/dist/tools/search/codebase-search.d.ts +32 -0
- package/dist/tools/search/codebase-search.js +111 -0
- package/dist/tools/search/get-first-link.d.ts +10 -0
- package/dist/tools/search/get-first-link.js +46 -0
- package/dist/tools/search/glob.d.ts +32 -0
- package/dist/tools/search/glob.js +148 -0
- package/dist/tools/search/grep.d.ts +44 -0
- package/dist/tools/search/grep.js +172 -0
- package/dist/tools/search/index-web.d.ts +5 -0
- package/dist/tools/search/index-web.js +22 -0
- package/dist/tools/search/index.d.ts +19 -0
- package/dist/tools/search/index.js +36 -0
- package/dist/tools/search/list-code-definition-names.d.ts +28 -0
- package/dist/tools/search/list-code-definition-names.js +150 -0
- package/dist/tools/search/search-files.d.ts +36 -0
- package/dist/tools/search/search-files.js +168 -0
- package/dist/tools/search/search-mcp-tool.d.ts +32 -0
- package/dist/tools/search/search-mcp-tool.js +115 -0
- package/dist/tools/search/web-search.d.ts +11 -0
- package/dist/tools/search/web-search.js +47 -0
- package/dist/tools/sideExecution/index.d.ts +17 -0
- package/dist/tools/sideExecution/index.js +32 -0
- package/dist/tools/sideExecution/side-exec-get-status.d.ts +24 -0
- package/dist/tools/sideExecution/side-exec-get-status.js +93 -0
- package/dist/tools/sideExecution/side-exec-list-action-blocks.d.ts +23 -0
- package/dist/tools/sideExecution/side-exec-list-action-blocks.js +86 -0
- package/dist/tools/sideExecution/side-exec-start-action-block.d.ts +32 -0
- package/dist/tools/sideExecution/side-exec-start-action-block.js +87 -0
- package/dist/tools/sideExecution/side-exec-start-code.d.ts +32 -0
- package/dist/tools/sideExecution/side-exec-start-code.js +90 -0
- package/dist/tools/sideExecution/side-exec-stop.d.ts +24 -0
- package/dist/tools/sideExecution/side-exec-stop.js +90 -0
- package/dist/tools/state/index.d.ts +17 -0
- package/dist/tools/state/index.js +32 -0
- package/dist/tools/state/state-add-agent.d.ts +28 -0
- package/dist/tools/state/state-add-agent.js +72 -0
- package/dist/tools/state/state-get-agent.d.ts +20 -0
- package/dist/tools/state/state-get-agent.js +57 -0
- package/dist/tools/state/state-get-app.d.ts +20 -0
- package/dist/tools/state/state-get-app.js +57 -0
- package/dist/tools/state/state-get-project.d.ts +20 -0
- package/dist/tools/state/state-get-project.js +57 -0
- package/dist/tools/state/state-update-project.d.ts +28 -0
- package/dist/tools/state/state-update-project.js +71 -0
- package/dist/tools/swarm/index.d.ts +59 -0
- package/dist/tools/swarm/index.js +124 -0
- package/dist/tools/swarm/swarm-apply-vacancy.d.ts +36 -0
- package/dist/tools/swarm/swarm-apply-vacancy.js +84 -0
- package/dist/tools/swarm/swarm-assign-role.d.ts +32 -0
- package/dist/tools/swarm/swarm-assign-role.js +80 -0
- package/dist/tools/swarm/swarm-close-vacancy.d.ts +32 -0
- package/dist/tools/swarm/swarm-close-vacancy.js +80 -0
- package/dist/tools/swarm/swarm-create-role.d.ts +48 -0
- package/dist/tools/swarm/swarm-create-role.js +104 -0
- package/dist/tools/swarm/swarm-create-team.d.ts +44 -0
- package/dist/tools/swarm/swarm-create-team.js +98 -0
- package/dist/tools/swarm/swarm-create-vacancy.d.ts +48 -0
- package/dist/tools/swarm/swarm-create-vacancy.js +107 -0
- package/dist/tools/swarm/swarm-create.d.ts +36 -0
- package/dist/tools/swarm/swarm-create.js +83 -0
- package/dist/tools/swarm/swarm-delete-role.d.ts +28 -0
- package/dist/tools/swarm/swarm-delete-role.js +73 -0
- package/dist/tools/swarm/swarm-delete-team.d.ts +28 -0
- package/dist/tools/swarm/swarm-delete-team.js +73 -0
- package/dist/tools/swarm/swarm-get-agents-by-role.d.ts +28 -0
- package/dist/tools/swarm/swarm-get-agents-by-role.js +73 -0
- package/dist/tools/swarm/swarm-get-agents.d.ts +24 -0
- package/dist/tools/swarm/swarm-get-agents.js +66 -0
- package/dist/tools/swarm/swarm-get-default-job-group.d.ts +24 -0
- package/dist/tools/swarm/swarm-get-default-job-group.js +66 -0
- package/dist/tools/swarm/swarm-get-role.d.ts +28 -0
- package/dist/tools/swarm/swarm-get-role.js +73 -0
- package/dist/tools/swarm/swarm-get-status-summary.d.ts +24 -0
- package/dist/tools/swarm/swarm-get-status-summary.js +66 -0
- package/dist/tools/swarm/swarm-get-team.d.ts +28 -0
- package/dist/tools/swarm/swarm-get-team.js +73 -0
- package/dist/tools/swarm/swarm-get.d.ts +24 -0
- package/dist/tools/swarm/swarm-get.js +66 -0
- package/dist/tools/swarm/swarm-join-team.d.ts +32 -0
- package/dist/tools/swarm/swarm-join-team.js +80 -0
- package/dist/tools/swarm/swarm-leave-team.d.ts +32 -0
- package/dist/tools/swarm/swarm-leave-team.js +80 -0
- package/dist/tools/swarm/swarm-list-roles.d.ts +24 -0
- package/dist/tools/swarm/swarm-list-roles.js +66 -0
- package/dist/tools/swarm/swarm-list-teams.d.ts +24 -0
- package/dist/tools/swarm/swarm-list-teams.js +66 -0
- package/dist/tools/swarm/swarm-list-vacancies.d.ts +24 -0
- package/dist/tools/swarm/swarm-list-vacancies.js +66 -0
- package/dist/tools/swarm/swarm-list.d.ts +19 -0
- package/dist/tools/swarm/swarm-list.js +55 -0
- package/dist/tools/swarm/swarm-register-agent.d.ts +52 -0
- package/dist/tools/swarm/swarm-register-agent.js +113 -0
- package/dist/tools/swarm/swarm-unassign-role.d.ts +32 -0
- package/dist/tools/swarm/swarm-unassign-role.js +80 -0
- package/dist/tools/swarm/swarm-unregister-agent.d.ts +28 -0
- package/dist/tools/swarm/swarm-unregister-agent.js +73 -0
- package/dist/tools/swarm/swarm-update-status.d.ts +40 -0
- package/dist/tools/swarm/swarm-update-status.js +94 -0
- package/dist/tools/task/index.d.ts +21 -0
- package/dist/tools/task/index.js +39 -0
- package/dist/tools/task/task-assign.d.ts +20 -0
- package/dist/tools/task/task-assign.js +92 -0
- package/dist/tools/task/task-create.d.ts +22 -0
- package/dist/tools/task/task-create.js +105 -0
- package/dist/tools/task/task-delete.d.ts +18 -0
- package/dist/tools/task/task-delete.js +85 -0
- package/dist/tools/task/task-execute.d.ts +20 -0
- package/dist/tools/task/task-execute.js +92 -0
- package/dist/tools/task/task-get.d.ts +18 -0
- package/dist/tools/task/task-get.js +97 -0
- package/dist/tools/task/task-list.d.ts +15 -0
- package/dist/tools/task/task-list.js +83 -0
- package/dist/tools/task/task-update.d.ts +24 -0
- package/dist/tools/task/task-update.js +104 -0
- package/dist/tools/terminal/execute-command.d.ts +32 -0
- package/dist/tools/terminal/execute-command.js +123 -0
- package/dist/tools/terminal/index.d.ts +9 -0
- package/dist/tools/terminal/index.js +16 -0
- package/dist/tools/testing/index.d.ts +31 -0
- package/dist/tools/testing/index.js +66 -0
- package/dist/tools/testing/test-case-create.d.ts +51 -0
- package/dist/tools/testing/test-case-create.js +131 -0
- package/dist/tools/testing/test-case-get.d.ts +24 -0
- package/dist/tools/testing/test-case-get.js +93 -0
- package/dist/tools/testing/test-case-list.d.ts +27 -0
- package/dist/tools/testing/test-case-list.js +73 -0
- package/dist/tools/testing/test-case-update.d.ts +56 -0
- package/dist/tools/testing/test-case-update.js +139 -0
- package/dist/tools/testing/test-run-create.d.ts +28 -0
- package/dist/tools/testing/test-run-create.js +85 -0
- package/dist/tools/testing/test-run-get.d.ts +24 -0
- package/dist/tools/testing/test-run-get.js +114 -0
- package/dist/tools/testing/test-run-update-status.d.ts +28 -0
- package/dist/tools/testing/test-run-update-status.js +90 -0
- package/dist/tools/testing/test-suite-create.d.ts +32 -0
- package/dist/tools/testing/test-suite-create.js +91 -0
- package/dist/tools/testing/test-suite-delete.d.ts +24 -0
- package/dist/tools/testing/test-suite-delete.js +80 -0
- package/dist/tools/testing/test-suite-get.d.ts +24 -0
- package/dist/tools/testing/test-suite-get.js +90 -0
- package/dist/tools/testing/test-suite-list.d.ts +23 -0
- package/dist/tools/testing/test-suite-list.js +69 -0
- package/dist/tools/testing/test-suite-update.d.ts +36 -0
- package/dist/tools/testing/test-suite-update.js +100 -0
- package/dist/tools/thread/index.d.ts +27 -0
- package/dist/tools/thread/index.js +51 -0
- package/dist/tools/thread/thread-create-background.d.ts +18 -0
- package/dist/tools/thread/thread-create-background.js +94 -0
- package/dist/tools/thread/thread-create-start.d.ts +16 -0
- package/dist/tools/thread/thread-create-start.js +85 -0
- package/dist/tools/thread/thread-create.d.ts +16 -0
- package/dist/tools/thread/thread-create.js +85 -0
- package/dist/tools/thread/thread-delete.d.ts +16 -0
- package/dist/tools/thread/thread-delete.js +77 -0
- package/dist/tools/thread/thread-get-messages.d.ts +24 -0
- package/dist/tools/thread/thread-get-messages.js +122 -0
- package/dist/tools/thread/thread-get.d.ts +16 -0
- package/dist/tools/thread/thread-get.js +85 -0
- package/dist/tools/thread/thread-list.d.ts +16 -0
- package/dist/tools/thread/thread-list.js +85 -0
- package/dist/tools/thread/thread-start.d.ts +16 -0
- package/dist/tools/thread/thread-start.js +82 -0
- package/dist/tools/thread/thread-update-status.d.ts +18 -0
- package/dist/tools/thread/thread-update-status.js +89 -0
- package/dist/tools/thread/thread-update.d.ts +18 -0
- package/dist/tools/thread/thread-update.js +89 -0
- package/dist/tools/todo/index.d.ts +19 -0
- package/dist/tools/todo/index.js +36 -0
- package/dist/tools/todo/todo-add.d.ts +32 -0
- package/dist/tools/todo/todo-add.js +96 -0
- package/dist/tools/todo/todo-export.d.ts +32 -0
- package/dist/tools/todo/todo-export.js +91 -0
- package/dist/tools/todo/todo-import.d.ts +36 -0
- package/dist/tools/todo/todo-import.js +102 -0
- package/dist/tools/todo/todo-list-incomplete.d.ts +19 -0
- package/dist/tools/todo/todo-list-incomplete.js +70 -0
- package/dist/tools/todo/todo-list.d.ts +23 -0
- package/dist/tools/todo/todo-list.js +78 -0
- package/dist/tools/todo/todo-update.d.ts +40 -0
- package/dist/tools/todo/todo-update.js +105 -0
- package/dist/tools/tokenizer/index.d.ts +11 -0
- package/dist/tools/tokenizer/index.js +21 -0
- package/dist/tools/tokenizer/tokenizer-add.d.ts +16 -0
- package/dist/tools/tokenizer/tokenizer-add.js +81 -0
- package/dist/tools/tokenizer/tokenizer-get.d.ts +16 -0
- package/dist/tools/tokenizer/tokenizer-get.js +88 -0
- package/dist/tools/types.d.ts +286 -0
- package/dist/tools/types.js +100 -0
- package/dist/tools/userMessageManager/index.d.ts +17 -0
- package/dist/tools/userMessageManager/index.js +29 -0
- package/dist/tools/userMessageManager/user-message-get-config.d.ts +8 -0
- package/dist/tools/userMessageManager/user-message-get-config.js +39 -0
- package/dist/tools/userMessageManager/user-message-get-current.d.ts +8 -0
- package/dist/tools/userMessageManager/user-message-get-current.js +45 -0
- package/dist/tools/userMessageManager/user-message-get-mentioned-files.d.ts +8 -0
- package/dist/tools/userMessageManager/user-message-get-mentioned-files.js +39 -0
- package/dist/tools/userMessageManager/user-message-get-text.d.ts +8 -0
- package/dist/tools/userMessageManager/user-message-get-text.js +39 -0
- package/dist/tools/userMessageUtilities/index.d.ts +21 -0
- package/dist/tools/userMessageUtilities/index.js +37 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-current-file.d.ts +8 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-current-file.js +45 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-current.d.ts +8 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-current.js +45 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-mentioned-files.d.ts +8 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-mentioned-files.js +39 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-mentioned-mcps.d.ts +8 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-mentioned-mcps.js +39 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-selection.d.ts +8 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-selection.js +45 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-text.d.ts +8 -0
- package/dist/tools/userMessageUtilities/user-utilities-get-text.js +39 -0
- package/dist/tools/utils/index.d.ts +11 -0
- package/dist/tools/utils/index.js +17 -0
- package/dist/tools/utils/paths.d.ts +36 -0
- package/dist/tools/utils/paths.js +117 -0
- package/dist/tools/utils/schema-validator.d.ts +9 -0
- package/dist/tools/utils/schema-validator.js +95 -0
- package/dist/tools/utils/utils-edit-file-and-apply-diff.d.ts +13 -0
- package/dist/tools/utils/utils-edit-file-and-apply-diff.js +56 -0
- package/dist/tools/vectordb/index.d.ts +15 -0
- package/dist/tools/vectordb/index.js +29 -0
- package/dist/tools/vectordb/vector-add-item.d.ts +24 -0
- package/dist/tools/vectordb/vector-add-item.js +76 -0
- package/dist/tools/vectordb/vector-get.d.ts +24 -0
- package/dist/tools/vectordb/vector-get.js +80 -0
- package/dist/tools/vectordb/vector-query-items.d.ts +28 -0
- package/dist/tools/vectordb/vector-query-items.js +87 -0
- package/dist/tools/vectordb/vector-query.d.ts +24 -0
- package/dist/tools/vectordb/vector-query.js +80 -0
- package/dist/types/agentDeliberation.d.ts +152 -0
- package/dist/types/agentDeliberation.js +25 -0
- package/dist/types/agentEventQueue.d.ts +309 -0
- package/dist/types/agentEventQueue.js +54 -0
- package/dist/types/agentPortfolio.d.ts +5 -0
- package/dist/types/agentPortfolio.js +6 -0
- package/dist/types/autoTesting.d.ts +280 -0
- package/dist/types/autoTesting.js +50 -0
- package/dist/types/codebaseSearch.d.ts +32 -0
- package/dist/types/codebaseSearch.js +3 -0
- package/dist/types/codemap.d.ts +83 -0
- package/dist/types/codemap.js +3 -0
- package/dist/types/commonTypes.d.ts +4 -0
- package/dist/types/contextAssembly.d.ts +97 -0
- package/dist/types/contextAssembly.js +6 -0
- package/dist/types/contextRuleEngine.d.ts +97 -0
- package/dist/types/contextRuleEngine.js +6 -0
- package/dist/types/eventLog.d.ts +126 -0
- package/dist/types/eventLog.js +6 -0
- package/dist/types/fileUpdateIntent.d.ts +130 -0
- package/dist/types/fileUpdateIntent.js +33 -0
- package/dist/types/groupFeedback.d.ts +137 -0
- package/dist/types/groupFeedback.js +23 -0
- package/dist/types/hook.d.ts +61 -0
- package/dist/types/hook.js +6 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/job.d.ts +297 -0
- package/dist/types/job.js +2 -0
- package/dist/types/knowledgeGraph.d.ts +186 -0
- package/dist/types/knowledgeGraph.js +6 -0
- package/dist/types/kvStore.d.ts +129 -0
- package/dist/types/kvStore.js +6 -0
- package/dist/types/libFunctionTypes.d.ts +29 -3
- package/dist/types/memoryIngestion.d.ts +117 -0
- package/dist/types/memoryIngestion.js +6 -0
- package/dist/types/persistentMemory.d.ts +99 -0
- package/dist/types/persistentMemory.js +6 -0
- package/dist/types/projectStructure.d.ts +130 -0
- package/dist/types/projectStructure.js +3 -0
- package/dist/types/projectStructureUpdateRequest.d.ts +207 -0
- package/dist/types/projectStructureUpdateRequest.js +6 -0
- package/dist/types/reviewMergeRequest.d.ts +154 -0
- package/dist/types/reviewMergeRequest.js +3 -0
- package/dist/types/roadmap.d.ts +145 -0
- package/dist/types/roadmap.js +3 -0
- package/dist/types/swarm.d.ts +368 -0
- package/dist/types/swarm.js +6 -0
- package/package.json +13 -9
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Background Child Threads - Add Running Agent Tool
|
|
4
|
+
*
|
|
5
|
+
* Adds a running background agent to tracking.
|
|
6
|
+
*/
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.AddRunningAgentTool = void 0;
|
|
12
|
+
const types_1 = require("../types");
|
|
13
|
+
const base_tool_1 = require("../base-tool");
|
|
14
|
+
const backgroundChildThreads_1 = __importDefault(require("../../modules/backgroundChildThreads"));
|
|
15
|
+
class AddRunningAgentInvocation extends base_tool_1.BaseToolInvocation {
|
|
16
|
+
constructor(params) {
|
|
17
|
+
super(params);
|
|
18
|
+
}
|
|
19
|
+
async execute(_signal) {
|
|
20
|
+
try {
|
|
21
|
+
backgroundChildThreads_1.default.addRunningAgent(this.params.threadId, this.params.data, this.params.groupId);
|
|
22
|
+
const groupInfo = this.params.groupId ? ` to group ${this.params.groupId}` : '';
|
|
23
|
+
return {
|
|
24
|
+
llmContent: `Successfully added running agent ${this.params.threadId}${groupInfo}`,
|
|
25
|
+
returnDisplay: `Added running agent ${this.params.threadId}`,
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
catch (error) {
|
|
29
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
30
|
+
return {
|
|
31
|
+
llmContent: `Error: ${errorMessage}`,
|
|
32
|
+
returnDisplay: `Error: ${errorMessage}`,
|
|
33
|
+
error: {
|
|
34
|
+
message: errorMessage,
|
|
35
|
+
type: types_1.ToolErrorType.EXECUTION_FAILED,
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Tool for adding a running agent
|
|
43
|
+
*/
|
|
44
|
+
class AddRunningAgentTool extends base_tool_1.BaseDeclarativeTool {
|
|
45
|
+
constructor() {
|
|
46
|
+
super('background_threads_add_running_agent', 'Add Running Agent', 'Adds a running background agent to tracking with optional group ID.', types_1.Kind.Other, {
|
|
47
|
+
type: 'object',
|
|
48
|
+
properties: {
|
|
49
|
+
threadId: {
|
|
50
|
+
type: 'string',
|
|
51
|
+
description: 'The thread ID',
|
|
52
|
+
},
|
|
53
|
+
data: {
|
|
54
|
+
type: 'object',
|
|
55
|
+
description: 'The agent data',
|
|
56
|
+
},
|
|
57
|
+
groupId: {
|
|
58
|
+
type: 'string',
|
|
59
|
+
description: 'Optional group ID',
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
|
+
required: ['threadId', 'data'],
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
createInvocation(params) {
|
|
66
|
+
return new AddRunningAgentInvocation(params);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
exports.AddRunningAgentTool = AddRunningAgentTool;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Background Child Threads - Check Background Agent Completion Tool
|
|
3
|
+
*
|
|
4
|
+
* Checks if any background agent has completed.
|
|
5
|
+
*/
|
|
6
|
+
import type { ToolInvocation, ToolResult } from '../types';
|
|
7
|
+
import { BaseDeclarativeTool } from '../base-tool';
|
|
8
|
+
/**
|
|
9
|
+
* Parameters for checking completion (none required)
|
|
10
|
+
*/
|
|
11
|
+
export interface CheckBackgroundAgentCompletionParams {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Tool for checking background agent completion
|
|
15
|
+
*/
|
|
16
|
+
export declare class CheckBackgroundAgentCompletionTool extends BaseDeclarativeTool<CheckBackgroundAgentCompletionParams, ToolResult> {
|
|
17
|
+
constructor();
|
|
18
|
+
protected createInvocation(params: CheckBackgroundAgentCompletionParams): ToolInvocation<CheckBackgroundAgentCompletionParams, ToolResult>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Background Child Threads - Check Background Agent Completion Tool
|
|
4
|
+
*
|
|
5
|
+
* Checks if any background agent has completed.
|
|
6
|
+
*/
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.CheckBackgroundAgentCompletionTool = void 0;
|
|
12
|
+
const types_1 = require("../types");
|
|
13
|
+
const base_tool_1 = require("../base-tool");
|
|
14
|
+
const backgroundChildThreads_1 = __importDefault(require("../../modules/backgroundChildThreads"));
|
|
15
|
+
class CheckBackgroundAgentCompletionInvocation extends base_tool_1.BaseToolInvocation {
|
|
16
|
+
constructor(params) {
|
|
17
|
+
super(params);
|
|
18
|
+
}
|
|
19
|
+
async execute(_signal) {
|
|
20
|
+
try {
|
|
21
|
+
const completion = backgroundChildThreads_1.default.checkForBackgroundAgentCompletion();
|
|
22
|
+
if (completion) {
|
|
23
|
+
return {
|
|
24
|
+
llmContent: `Background agent completion found: ${JSON.stringify(completion)}`,
|
|
25
|
+
returnDisplay: 'Completion found',
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
return {
|
|
30
|
+
llmContent: 'No background agent completions available',
|
|
31
|
+
returnDisplay: 'No completions',
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
catch (error) {
|
|
36
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
37
|
+
return {
|
|
38
|
+
llmContent: `Error: ${errorMessage}`,
|
|
39
|
+
returnDisplay: `Error: ${errorMessage}`,
|
|
40
|
+
error: {
|
|
41
|
+
message: errorMessage,
|
|
42
|
+
type: types_1.ToolErrorType.EXECUTION_FAILED,
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Tool for checking background agent completion
|
|
50
|
+
*/
|
|
51
|
+
class CheckBackgroundAgentCompletionTool extends base_tool_1.BaseDeclarativeTool {
|
|
52
|
+
constructor() {
|
|
53
|
+
super('background_threads_check_completion', 'Check Background Agent Completion', 'Checks if any background agent has completed. Returns completion data or null.', types_1.Kind.Other, {
|
|
54
|
+
type: 'object',
|
|
55
|
+
properties: {},
|
|
56
|
+
required: [],
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
createInvocation(params) {
|
|
60
|
+
return new CheckBackgroundAgentCompletionInvocation(params);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
exports.CheckBackgroundAgentCompletionTool = CheckBackgroundAgentCompletionTool;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Background Child Threads - Get Running Agent Count Tool
|
|
3
|
+
*
|
|
4
|
+
* Gets the count of currently running background agents.
|
|
5
|
+
*/
|
|
6
|
+
import type { ToolInvocation, ToolResult } from '../types';
|
|
7
|
+
import { BaseDeclarativeTool } from '../base-tool';
|
|
8
|
+
/**
|
|
9
|
+
* Parameters for getting running agent count (none required)
|
|
10
|
+
*/
|
|
11
|
+
export interface GetRunningAgentCountParams {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Tool for getting running agent count
|
|
15
|
+
*/
|
|
16
|
+
export declare class GetRunningAgentCountTool extends BaseDeclarativeTool<GetRunningAgentCountParams, ToolResult> {
|
|
17
|
+
constructor();
|
|
18
|
+
protected createInvocation(params: GetRunningAgentCountParams): ToolInvocation<GetRunningAgentCountParams, ToolResult>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Background Child Threads - Get Running Agent Count Tool
|
|
4
|
+
*
|
|
5
|
+
* Gets the count of currently running background agents.
|
|
6
|
+
*/
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.GetRunningAgentCountTool = void 0;
|
|
12
|
+
const types_1 = require("../types");
|
|
13
|
+
const base_tool_1 = require("../base-tool");
|
|
14
|
+
const backgroundChildThreads_1 = __importDefault(require("../../modules/backgroundChildThreads"));
|
|
15
|
+
class GetRunningAgentCountInvocation extends base_tool_1.BaseToolInvocation {
|
|
16
|
+
constructor(params) {
|
|
17
|
+
super(params);
|
|
18
|
+
}
|
|
19
|
+
async execute(_signal) {
|
|
20
|
+
try {
|
|
21
|
+
const count = backgroundChildThreads_1.default.getRunningAgentCount();
|
|
22
|
+
return {
|
|
23
|
+
llmContent: `Currently ${count} background agent(s) running`,
|
|
24
|
+
returnDisplay: `Count: ${count}`,
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
catch (error) {
|
|
28
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
29
|
+
return {
|
|
30
|
+
llmContent: `Error: ${errorMessage}`,
|
|
31
|
+
returnDisplay: `Error: ${errorMessage}`,
|
|
32
|
+
error: {
|
|
33
|
+
message: errorMessage,
|
|
34
|
+
type: types_1.ToolErrorType.EXECUTION_FAILED,
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Tool for getting running agent count
|
|
42
|
+
*/
|
|
43
|
+
class GetRunningAgentCountTool extends base_tool_1.BaseDeclarativeTool {
|
|
44
|
+
constructor() {
|
|
45
|
+
super('background_threads_get_running_count', 'Get Running Agent Count', 'Gets the number of currently running background agents.', types_1.Kind.Other, {
|
|
46
|
+
type: 'object',
|
|
47
|
+
properties: {},
|
|
48
|
+
required: [],
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
createInvocation(params) {
|
|
52
|
+
return new GetRunningAgentCountInvocation(params);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.GetRunningAgentCountTool = GetRunningAgentCountTool;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Background Child Threads Tools
|
|
3
|
+
*
|
|
4
|
+
* Tools for tracking and managing background child agent threads.
|
|
5
|
+
*/
|
|
6
|
+
export { AddRunningAgentTool, type AddRunningAgentParams } from './add-running-agent';
|
|
7
|
+
export { GetRunningAgentCountTool, type GetRunningAgentCountParams } from './get-running-agent-count';
|
|
8
|
+
export { CheckBackgroundAgentCompletionTool, type CheckBackgroundAgentCompletionParams } from './check-background-agent-completion';
|
|
9
|
+
export { OnBackgroundAgentCompletionTool, type OnBackgroundAgentCompletionParams } from './on-background-agent-completion';
|
|
10
|
+
import { AddRunningAgentTool } from './add-running-agent';
|
|
11
|
+
import { GetRunningAgentCountTool } from './get-running-agent-count';
|
|
12
|
+
import { CheckBackgroundAgentCompletionTool } from './check-background-agent-completion';
|
|
13
|
+
import { OnBackgroundAgentCompletionTool } from './on-background-agent-completion';
|
|
14
|
+
/**
|
|
15
|
+
* Array of all background child threads tools
|
|
16
|
+
*/
|
|
17
|
+
export declare const backgroundChildThreadsTools: (AddRunningAgentTool | GetRunningAgentCountTool | CheckBackgroundAgentCompletionTool | OnBackgroundAgentCompletionTool)[];
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Background Child Threads Tools
|
|
4
|
+
*
|
|
5
|
+
* Tools for tracking and managing background child agent threads.
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.backgroundChildThreadsTools = exports.OnBackgroundAgentCompletionTool = exports.CheckBackgroundAgentCompletionTool = exports.GetRunningAgentCountTool = exports.AddRunningAgentTool = void 0;
|
|
9
|
+
var add_running_agent_1 = require("./add-running-agent");
|
|
10
|
+
Object.defineProperty(exports, "AddRunningAgentTool", { enumerable: true, get: function () { return add_running_agent_1.AddRunningAgentTool; } });
|
|
11
|
+
var get_running_agent_count_1 = require("./get-running-agent-count");
|
|
12
|
+
Object.defineProperty(exports, "GetRunningAgentCountTool", { enumerable: true, get: function () { return get_running_agent_count_1.GetRunningAgentCountTool; } });
|
|
13
|
+
var check_background_agent_completion_1 = require("./check-background-agent-completion");
|
|
14
|
+
Object.defineProperty(exports, "CheckBackgroundAgentCompletionTool", { enumerable: true, get: function () { return check_background_agent_completion_1.CheckBackgroundAgentCompletionTool; } });
|
|
15
|
+
var on_background_agent_completion_1 = require("./on-background-agent-completion");
|
|
16
|
+
Object.defineProperty(exports, "OnBackgroundAgentCompletionTool", { enumerable: true, get: function () { return on_background_agent_completion_1.OnBackgroundAgentCompletionTool; } });
|
|
17
|
+
const add_running_agent_2 = require("./add-running-agent");
|
|
18
|
+
const get_running_agent_count_2 = require("./get-running-agent-count");
|
|
19
|
+
const check_background_agent_completion_2 = require("./check-background-agent-completion");
|
|
20
|
+
const on_background_agent_completion_2 = require("./on-background-agent-completion");
|
|
21
|
+
/**
|
|
22
|
+
* Array of all background child threads tools
|
|
23
|
+
*/
|
|
24
|
+
exports.backgroundChildThreadsTools = [
|
|
25
|
+
new add_running_agent_2.AddRunningAgentTool(),
|
|
26
|
+
new get_running_agent_count_2.GetRunningAgentCountTool(),
|
|
27
|
+
new check_background_agent_completion_2.CheckBackgroundAgentCompletionTool(),
|
|
28
|
+
new on_background_agent_completion_2.OnBackgroundAgentCompletionTool(),
|
|
29
|
+
];
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Background Child Threads - On Background Agent Completion Tool
|
|
3
|
+
*
|
|
4
|
+
* Waits for background agent completion.
|
|
5
|
+
*/
|
|
6
|
+
import type { ToolInvocation, ToolResult } from '../types';
|
|
7
|
+
import { BaseDeclarativeTool } from '../base-tool';
|
|
8
|
+
/**
|
|
9
|
+
* Parameters for waiting for completion (none required)
|
|
10
|
+
*/
|
|
11
|
+
export interface OnBackgroundAgentCompletionParams {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Tool for waiting for background agent completion
|
|
15
|
+
*/
|
|
16
|
+
export declare class OnBackgroundAgentCompletionTool extends BaseDeclarativeTool<OnBackgroundAgentCompletionParams, ToolResult> {
|
|
17
|
+
constructor();
|
|
18
|
+
protected createInvocation(params: OnBackgroundAgentCompletionParams): ToolInvocation<OnBackgroundAgentCompletionParams, ToolResult>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Background Child Threads - On Background Agent Completion Tool
|
|
4
|
+
*
|
|
5
|
+
* Waits for background agent completion.
|
|
6
|
+
*/
|
|
7
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
8
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
9
|
+
};
|
|
10
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
+
exports.OnBackgroundAgentCompletionTool = void 0;
|
|
12
|
+
const types_1 = require("../types");
|
|
13
|
+
const base_tool_1 = require("../base-tool");
|
|
14
|
+
const backgroundChildThreads_1 = __importDefault(require("../../modules/backgroundChildThreads"));
|
|
15
|
+
class OnBackgroundAgentCompletionInvocation extends base_tool_1.BaseToolInvocation {
|
|
16
|
+
constructor(params) {
|
|
17
|
+
super(params);
|
|
18
|
+
}
|
|
19
|
+
async execute(_signal) {
|
|
20
|
+
try {
|
|
21
|
+
const completion = await backgroundChildThreads_1.default.onBackgroundAgentCompletion();
|
|
22
|
+
return {
|
|
23
|
+
llmContent: `Background agent completed: ${JSON.stringify(completion)}`,
|
|
24
|
+
returnDisplay: 'Completion received',
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
catch (error) {
|
|
28
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
29
|
+
return {
|
|
30
|
+
llmContent: `Error: ${errorMessage}`,
|
|
31
|
+
returnDisplay: `Error: ${errorMessage}`,
|
|
32
|
+
error: {
|
|
33
|
+
message: errorMessage,
|
|
34
|
+
type: types_1.ToolErrorType.EXECUTION_FAILED,
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Tool for waiting for background agent completion
|
|
42
|
+
*/
|
|
43
|
+
class OnBackgroundAgentCompletionTool extends base_tool_1.BaseDeclarativeTool {
|
|
44
|
+
constructor() {
|
|
45
|
+
super('background_threads_on_completion', 'Wait for Background Agent Completion', 'Waits for a background agent to complete. This is a blocking call.', types_1.Kind.Other, {
|
|
46
|
+
type: 'object',
|
|
47
|
+
properties: {},
|
|
48
|
+
required: [],
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
createInvocation(params) {
|
|
52
|
+
return new OnBackgroundAgentCompletionInvocation(params);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
exports.OnBackgroundAgentCompletionTool = OnBackgroundAgentCompletionTool;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Base classes for tool implementations in codeboltjs
|
|
3
|
+
*/
|
|
4
|
+
import type { ToolBuilder, ToolInvocation, ToolResult, ToolLocation, ToolCallConfirmationDetails, Kind, OpenAIToolSchema, OpenAIFunctionCall, FunctionDeclaration } from './types';
|
|
5
|
+
export type { ToolInvocation, ToolResult, ToolLocation, ToolCallConfirmationDetails, } from './types';
|
|
6
|
+
export { Kind } from './types';
|
|
7
|
+
/**
|
|
8
|
+
* A convenience base class for ToolInvocation
|
|
9
|
+
*/
|
|
10
|
+
export declare abstract class BaseToolInvocation<TParams extends object, TResult extends ToolResult> implements ToolInvocation<TParams, TResult> {
|
|
11
|
+
readonly params: TParams;
|
|
12
|
+
constructor(params: TParams);
|
|
13
|
+
toolLocations(): ToolLocation[];
|
|
14
|
+
shouldConfirmExecute(_abortSignal: AbortSignal): Promise<ToolCallConfirmationDetails | false>;
|
|
15
|
+
abstract execute(signal: AbortSignal, updateOutput?: (output: string) => void): Promise<TResult>;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Base class for tools that separates validation from execution
|
|
19
|
+
*/
|
|
20
|
+
export declare abstract class DeclarativeTool<TParams extends object, TResult extends ToolResult> implements ToolBuilder<TParams, TResult> {
|
|
21
|
+
readonly name: string;
|
|
22
|
+
readonly displayName: string;
|
|
23
|
+
readonly description: string;
|
|
24
|
+
readonly kind: Kind;
|
|
25
|
+
readonly parameterSchema: unknown;
|
|
26
|
+
readonly isOutputMarkdown: boolean;
|
|
27
|
+
readonly canUpdateOutput: boolean;
|
|
28
|
+
constructor(name: string, displayName: string, description: string, kind: Kind, parameterSchema: unknown, isOutputMarkdown?: boolean, canUpdateOutput?: boolean);
|
|
29
|
+
/**
|
|
30
|
+
* One sentence explanation as to why this tool is being used, and how it contributes to the goal.
|
|
31
|
+
* Defaults to description if not implemented by subclass.
|
|
32
|
+
*/
|
|
33
|
+
get explanation(): string;
|
|
34
|
+
/**
|
|
35
|
+
* Primary schema format (OpenAI tool schema)
|
|
36
|
+
*/
|
|
37
|
+
get schema(): OpenAIToolSchema;
|
|
38
|
+
/**
|
|
39
|
+
* Get OpenAI function call format
|
|
40
|
+
*/
|
|
41
|
+
get openAIFunctionCall(): OpenAIFunctionCall;
|
|
42
|
+
/**
|
|
43
|
+
* Get Google GenAI schema format (for backward compatibility)
|
|
44
|
+
*/
|
|
45
|
+
get genAISchema(): FunctionDeclaration;
|
|
46
|
+
/**
|
|
47
|
+
* Validates the raw tool parameters.
|
|
48
|
+
* Subclasses should override this to add custom validation logic
|
|
49
|
+
* beyond the JSON schema check.
|
|
50
|
+
*/
|
|
51
|
+
validateToolParams(_params: TParams): string | null;
|
|
52
|
+
/**
|
|
53
|
+
* The core of the pattern. It validates parameters and, if successful,
|
|
54
|
+
* returns a `ToolInvocation` object that encapsulates the logic for the
|
|
55
|
+
* specific, validated call.
|
|
56
|
+
*/
|
|
57
|
+
abstract build(params: TParams): ToolInvocation<TParams, TResult>;
|
|
58
|
+
/**
|
|
59
|
+
* A convenience method that builds and executes the tool in one step.
|
|
60
|
+
*/
|
|
61
|
+
buildAndExecute(params: TParams, signal: AbortSignal, updateOutput?: (output: string) => void): Promise<TResult>;
|
|
62
|
+
/**
|
|
63
|
+
* Similar to `build` but never throws.
|
|
64
|
+
*/
|
|
65
|
+
private silentBuild;
|
|
66
|
+
/**
|
|
67
|
+
* A convenience method that builds and executes the tool in one step.
|
|
68
|
+
* Never throws.
|
|
69
|
+
*/
|
|
70
|
+
validateBuildAndExecute(params: TParams, abortSignal: AbortSignal): Promise<ToolResult>;
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Base class for declarative tools with built-in validation
|
|
74
|
+
*/
|
|
75
|
+
export declare abstract class BaseDeclarativeTool<TParams extends object, TResult extends ToolResult> extends DeclarativeTool<TParams, TResult> {
|
|
76
|
+
build(params: TParams): ToolInvocation<TParams, TResult>;
|
|
77
|
+
validateToolParams(params: TParams): string | null;
|
|
78
|
+
protected validateToolParamValues(_params: TParams): string | null;
|
|
79
|
+
protected abstract createInvocation(params: TParams): ToolInvocation<TParams, TResult>;
|
|
80
|
+
}
|
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Base classes for tool implementations in codeboltjs
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.BaseDeclarativeTool = exports.DeclarativeTool = exports.BaseToolInvocation = exports.Kind = void 0;
|
|
7
|
+
const types_1 = require("./types");
|
|
8
|
+
const schema_validator_1 = require("./utils/schema-validator");
|
|
9
|
+
// Re-export Kind as both type and value
|
|
10
|
+
var types_2 = require("./types");
|
|
11
|
+
Object.defineProperty(exports, "Kind", { enumerable: true, get: function () { return types_2.Kind; } });
|
|
12
|
+
/**
|
|
13
|
+
* A convenience base class for ToolInvocation
|
|
14
|
+
*/
|
|
15
|
+
class BaseToolInvocation {
|
|
16
|
+
constructor(params) {
|
|
17
|
+
this.params = params;
|
|
18
|
+
}
|
|
19
|
+
toolLocations() {
|
|
20
|
+
return [];
|
|
21
|
+
}
|
|
22
|
+
shouldConfirmExecute(_abortSignal) {
|
|
23
|
+
return Promise.resolve(false);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
exports.BaseToolInvocation = BaseToolInvocation;
|
|
27
|
+
/**
|
|
28
|
+
* Base class for tools that separates validation from execution
|
|
29
|
+
*/
|
|
30
|
+
class DeclarativeTool {
|
|
31
|
+
constructor(name, displayName, description, kind, parameterSchema, isOutputMarkdown = true, canUpdateOutput = false) {
|
|
32
|
+
this.name = name;
|
|
33
|
+
this.displayName = displayName;
|
|
34
|
+
this.description = description;
|
|
35
|
+
this.kind = kind;
|
|
36
|
+
this.parameterSchema = parameterSchema;
|
|
37
|
+
this.isOutputMarkdown = isOutputMarkdown;
|
|
38
|
+
this.canUpdateOutput = canUpdateOutput;
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* One sentence explanation as to why this tool is being used, and how it contributes to the goal.
|
|
42
|
+
* Defaults to description if not implemented by subclass.
|
|
43
|
+
*/
|
|
44
|
+
get explanation() {
|
|
45
|
+
return this.description;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Primary schema format (OpenAI tool schema)
|
|
49
|
+
*/
|
|
50
|
+
get schema() {
|
|
51
|
+
var _a, _b;
|
|
52
|
+
return {
|
|
53
|
+
type: 'function',
|
|
54
|
+
function: {
|
|
55
|
+
name: this.name,
|
|
56
|
+
description: this.description,
|
|
57
|
+
parameters: {
|
|
58
|
+
type: 'object',
|
|
59
|
+
properties: ((_a = this.parameterSchema) === null || _a === void 0 ? void 0 : _a.properties) || {},
|
|
60
|
+
required: ((_b = this.parameterSchema) === null || _b === void 0 ? void 0 : _b.required) || [],
|
|
61
|
+
additionalProperties: false,
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Get OpenAI function call format
|
|
68
|
+
*/
|
|
69
|
+
get openAIFunctionCall() {
|
|
70
|
+
var _a, _b;
|
|
71
|
+
return {
|
|
72
|
+
name: this.name,
|
|
73
|
+
description: this.description,
|
|
74
|
+
parameters: {
|
|
75
|
+
type: 'object',
|
|
76
|
+
properties: ((_a = this.parameterSchema) === null || _a === void 0 ? void 0 : _a.properties) || {},
|
|
77
|
+
required: ((_b = this.parameterSchema) === null || _b === void 0 ? void 0 : _b.required) || [],
|
|
78
|
+
additionalProperties: false,
|
|
79
|
+
},
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Get Google GenAI schema format (for backward compatibility)
|
|
84
|
+
*/
|
|
85
|
+
get genAISchema() {
|
|
86
|
+
return {
|
|
87
|
+
name: this.name,
|
|
88
|
+
description: this.description,
|
|
89
|
+
parameters: this.parameterSchema,
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Validates the raw tool parameters.
|
|
94
|
+
* Subclasses should override this to add custom validation logic
|
|
95
|
+
* beyond the JSON schema check.
|
|
96
|
+
*/
|
|
97
|
+
validateToolParams(_params) {
|
|
98
|
+
return null;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* A convenience method that builds and executes the tool in one step.
|
|
102
|
+
*/
|
|
103
|
+
async buildAndExecute(params, signal, updateOutput) {
|
|
104
|
+
const invocation = this.build(params);
|
|
105
|
+
return invocation.execute(signal, updateOutput);
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Similar to `build` but never throws.
|
|
109
|
+
*/
|
|
110
|
+
silentBuild(params) {
|
|
111
|
+
try {
|
|
112
|
+
return this.build(params);
|
|
113
|
+
}
|
|
114
|
+
catch (e) {
|
|
115
|
+
if (e instanceof Error) {
|
|
116
|
+
return e;
|
|
117
|
+
}
|
|
118
|
+
return new Error(String(e));
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* A convenience method that builds and executes the tool in one step.
|
|
123
|
+
* Never throws.
|
|
124
|
+
*/
|
|
125
|
+
async validateBuildAndExecute(params, abortSignal) {
|
|
126
|
+
const invocationOrError = this.silentBuild(params);
|
|
127
|
+
if (invocationOrError instanceof Error) {
|
|
128
|
+
const errorMessage = invocationOrError.message;
|
|
129
|
+
return {
|
|
130
|
+
llmContent: `Error: Invalid parameters provided. Reason: ${errorMessage}`,
|
|
131
|
+
returnDisplay: errorMessage,
|
|
132
|
+
error: {
|
|
133
|
+
message: errorMessage,
|
|
134
|
+
type: types_1.ToolErrorType.INVALID_TOOL_PARAMS,
|
|
135
|
+
},
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
try {
|
|
139
|
+
return await invocationOrError.execute(abortSignal);
|
|
140
|
+
}
|
|
141
|
+
catch (error) {
|
|
142
|
+
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
143
|
+
return {
|
|
144
|
+
llmContent: `Error: Tool call execution failed. Reason: ${errorMessage}`,
|
|
145
|
+
returnDisplay: errorMessage,
|
|
146
|
+
error: {
|
|
147
|
+
message: errorMessage,
|
|
148
|
+
type: types_1.ToolErrorType.EXECUTION_FAILED,
|
|
149
|
+
},
|
|
150
|
+
};
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
exports.DeclarativeTool = DeclarativeTool;
|
|
155
|
+
/**
|
|
156
|
+
* Base class for declarative tools with built-in validation
|
|
157
|
+
*/
|
|
158
|
+
class BaseDeclarativeTool extends DeclarativeTool {
|
|
159
|
+
build(params) {
|
|
160
|
+
const validationError = this.validateToolParams(params);
|
|
161
|
+
if (validationError) {
|
|
162
|
+
throw new Error(validationError);
|
|
163
|
+
}
|
|
164
|
+
return this.createInvocation(params);
|
|
165
|
+
}
|
|
166
|
+
validateToolParams(params) {
|
|
167
|
+
const errors = schema_validator_1.SchemaValidator.validate(this.schema.function.parameters, params);
|
|
168
|
+
if (errors) {
|
|
169
|
+
return errors;
|
|
170
|
+
}
|
|
171
|
+
return this.validateToolParamValues(params);
|
|
172
|
+
}
|
|
173
|
+
validateToolParamValues(_params) {
|
|
174
|
+
return null;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
exports.BaseDeclarativeTool = BaseDeclarativeTool;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Browser Action Tool - Performs browser automation actions
|
|
3
|
+
* Wraps the SDK's cbbrowser methods
|
|
4
|
+
*/
|
|
5
|
+
import type { ToolInvocation, ToolResult } from '../types';
|
|
6
|
+
import { BaseDeclarativeTool } from '../base-tool';
|
|
7
|
+
/**
|
|
8
|
+
* Supported browser actions
|
|
9
|
+
*/
|
|
10
|
+
export type BrowserActionType = 'navigate' | 'screenshot' | 'click' | 'type' | 'scroll' | 'get_content' | 'get_html' | 'get_markdown' | 'get_url' | 'close' | 'enter' | 'search';
|
|
11
|
+
/**
|
|
12
|
+
* Parameters for the BrowserAction tool
|
|
13
|
+
*/
|
|
14
|
+
export interface BrowserActionToolParams {
|
|
15
|
+
/**
|
|
16
|
+
* The browser action to perform
|
|
17
|
+
*/
|
|
18
|
+
action: BrowserActionType;
|
|
19
|
+
/**
|
|
20
|
+
* URL for navigate action
|
|
21
|
+
*/
|
|
22
|
+
url?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Element ID for click/type/search actions
|
|
25
|
+
*/
|
|
26
|
+
element_id?: string;
|
|
27
|
+
/**
|
|
28
|
+
* Text for type action
|
|
29
|
+
*/
|
|
30
|
+
text?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Query for search action
|
|
33
|
+
*/
|
|
34
|
+
query?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Scroll direction ('up', 'down', 'left', 'right')
|
|
37
|
+
*/
|
|
38
|
+
direction?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Pixels to scroll
|
|
41
|
+
*/
|
|
42
|
+
pixels?: string;
|
|
43
|
+
/**
|
|
44
|
+
* Browser instance ID (optional)
|
|
45
|
+
*/
|
|
46
|
+
instance_id?: string;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Implementation of the BrowserAction tool logic
|
|
50
|
+
*/
|
|
51
|
+
export declare class BrowserActionTool extends BaseDeclarativeTool<BrowserActionToolParams, ToolResult> {
|
|
52
|
+
static readonly Name: string;
|
|
53
|
+
constructor();
|
|
54
|
+
protected validateToolParamValues(params: BrowserActionToolParams): string | null;
|
|
55
|
+
protected createInvocation(params: BrowserActionToolParams): ToolInvocation<BrowserActionToolParams, ToolResult>;
|
|
56
|
+
}
|