@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,208 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const websocket_1 = __importDefault(require("../core/websocket"));
|
|
7
|
+
/**
|
|
8
|
+
* Capability Module
|
|
9
|
+
* Provides functionality for managing and executing capabilities (Skills, Powers, Talents)
|
|
10
|
+
*
|
|
11
|
+
* Implements Requirements: 9.1, 9.2, 9.3, 9.4, 9.5
|
|
12
|
+
*/
|
|
13
|
+
const codeboltCapability = {
|
|
14
|
+
/**
|
|
15
|
+
* List all available capabilities with optional filtering
|
|
16
|
+
* @param filter - Optional filter criteria (type, tags, author)
|
|
17
|
+
* @returns Promise resolving to list of capabilities
|
|
18
|
+
*
|
|
19
|
+
* Requirements: 9.1
|
|
20
|
+
*/
|
|
21
|
+
listCapabilities: (filter) => {
|
|
22
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
23
|
+
type: 'capability',
|
|
24
|
+
action: 'listCapabilities',
|
|
25
|
+
filter
|
|
26
|
+
}, 'listCapabilitiesResponse');
|
|
27
|
+
},
|
|
28
|
+
/**
|
|
29
|
+
* List capabilities by type
|
|
30
|
+
* @param capabilityType - Type of capabilities to list (skill, power, talent, etc.)
|
|
31
|
+
* @returns Promise resolving to list of capabilities of the specified type
|
|
32
|
+
*
|
|
33
|
+
* Requirements: 9.1
|
|
34
|
+
*/
|
|
35
|
+
listCapabilitiesByType: (capabilityType) => {
|
|
36
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
37
|
+
type: 'capability',
|
|
38
|
+
action: 'listCapabilities',
|
|
39
|
+
filter: { type: capabilityType }
|
|
40
|
+
}, 'listCapabilitiesResponse');
|
|
41
|
+
},
|
|
42
|
+
/**
|
|
43
|
+
* List all available skills
|
|
44
|
+
* @returns Promise resolving to list of skills
|
|
45
|
+
*
|
|
46
|
+
* Requirements: 9.1
|
|
47
|
+
*/
|
|
48
|
+
listSkills: () => {
|
|
49
|
+
return codeboltCapability.listCapabilitiesByType('skill');
|
|
50
|
+
},
|
|
51
|
+
/**
|
|
52
|
+
* List all available powers
|
|
53
|
+
* @returns Promise resolving to list of powers
|
|
54
|
+
*
|
|
55
|
+
* Requirements: 9.1
|
|
56
|
+
*/
|
|
57
|
+
listPowers: () => {
|
|
58
|
+
return codeboltCapability.listCapabilitiesByType('power');
|
|
59
|
+
},
|
|
60
|
+
/**
|
|
61
|
+
* List all available talents
|
|
62
|
+
* @returns Promise resolving to list of talents
|
|
63
|
+
*
|
|
64
|
+
* Requirements: 9.1
|
|
65
|
+
*/
|
|
66
|
+
listTalents: () => {
|
|
67
|
+
return codeboltCapability.listCapabilitiesByType('talent');
|
|
68
|
+
},
|
|
69
|
+
/**
|
|
70
|
+
* Get detailed information about a specific capability
|
|
71
|
+
* @param capabilityName - Name of the capability
|
|
72
|
+
* @param capabilityType - Optional type to narrow search
|
|
73
|
+
* @returns Promise resolving to capability details
|
|
74
|
+
*
|
|
75
|
+
* Requirements: 9.2
|
|
76
|
+
*/
|
|
77
|
+
getCapabilityDetail: (capabilityName, capabilityType) => {
|
|
78
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
79
|
+
type: 'capability',
|
|
80
|
+
action: 'getCapabilityDetail',
|
|
81
|
+
capabilityName,
|
|
82
|
+
capabilityType
|
|
83
|
+
}, 'getCapabilityDetailResponse');
|
|
84
|
+
},
|
|
85
|
+
/**
|
|
86
|
+
* List all available capability executors
|
|
87
|
+
* @returns Promise resolving to list of executors
|
|
88
|
+
*
|
|
89
|
+
* Requirements: 9.3
|
|
90
|
+
*/
|
|
91
|
+
listExecutors: () => {
|
|
92
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
93
|
+
type: 'capability',
|
|
94
|
+
action: 'listExecutors'
|
|
95
|
+
}, 'listExecutorsResponse');
|
|
96
|
+
},
|
|
97
|
+
/**
|
|
98
|
+
* Start a capability execution
|
|
99
|
+
* @param capabilityName - Name of the capability to execute
|
|
100
|
+
* @param capabilityType - Type of the capability (skill, power, talent, etc.)
|
|
101
|
+
* @param params - Optional parameters to pass to the capability
|
|
102
|
+
* @param timeout - Optional execution timeout in milliseconds
|
|
103
|
+
* @returns Promise resolving to execution ID
|
|
104
|
+
*
|
|
105
|
+
* Requirements: 9.4
|
|
106
|
+
*/
|
|
107
|
+
startCapability: (capabilityName, capabilityType, params, timeout) => {
|
|
108
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
109
|
+
type: 'capability',
|
|
110
|
+
action: 'startCapability',
|
|
111
|
+
capabilityName,
|
|
112
|
+
capabilityType,
|
|
113
|
+
params,
|
|
114
|
+
timeout
|
|
115
|
+
}, 'startCapabilityResponse');
|
|
116
|
+
},
|
|
117
|
+
/**
|
|
118
|
+
* Start a skill execution
|
|
119
|
+
* @param skillName - Name of the skill to execute
|
|
120
|
+
* @param params - Optional parameters to pass to the skill
|
|
121
|
+
* @param timeout - Optional execution timeout in milliseconds
|
|
122
|
+
* @returns Promise resolving to execution ID
|
|
123
|
+
*
|
|
124
|
+
* Requirements: 9.4
|
|
125
|
+
*/
|
|
126
|
+
startSkill: (skillName, params, timeout) => {
|
|
127
|
+
return codeboltCapability.startCapability(skillName, 'skill', params, timeout);
|
|
128
|
+
},
|
|
129
|
+
/**
|
|
130
|
+
* Start a power execution
|
|
131
|
+
* @param powerName - Name of the power to execute
|
|
132
|
+
* @param params - Optional parameters to pass to the power
|
|
133
|
+
* @param timeout - Optional execution timeout in milliseconds
|
|
134
|
+
* @returns Promise resolving to execution ID
|
|
135
|
+
*
|
|
136
|
+
* Requirements: 9.4
|
|
137
|
+
*/
|
|
138
|
+
startPower: (powerName, params, timeout) => {
|
|
139
|
+
return codeboltCapability.startCapability(powerName, 'power', params, timeout);
|
|
140
|
+
},
|
|
141
|
+
/**
|
|
142
|
+
* Start a talent execution
|
|
143
|
+
* @param talentName - Name of the talent to execute
|
|
144
|
+
* @param params - Optional parameters to pass to the talent
|
|
145
|
+
* @param timeout - Optional execution timeout in milliseconds
|
|
146
|
+
* @returns Promise resolving to execution ID
|
|
147
|
+
*
|
|
148
|
+
* Requirements: 9.4
|
|
149
|
+
*/
|
|
150
|
+
startTalent: (talentName, params, timeout) => {
|
|
151
|
+
return codeboltCapability.startCapability(talentName, 'talent', params, timeout);
|
|
152
|
+
},
|
|
153
|
+
/**
|
|
154
|
+
* Stop a running capability execution
|
|
155
|
+
* @param executionId - ID of the execution to stop
|
|
156
|
+
* @returns Promise resolving to success status
|
|
157
|
+
*
|
|
158
|
+
* Requirements: 9.5
|
|
159
|
+
*/
|
|
160
|
+
stopCapability: (executionId) => {
|
|
161
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
162
|
+
type: 'capability',
|
|
163
|
+
action: 'stopCapability',
|
|
164
|
+
executionId
|
|
165
|
+
}, 'stopCapabilityResponse');
|
|
166
|
+
},
|
|
167
|
+
/**
|
|
168
|
+
* Get the status of a capability execution
|
|
169
|
+
* @param executionId - ID of the execution
|
|
170
|
+
* @returns Promise resolving to execution status
|
|
171
|
+
*/
|
|
172
|
+
getExecutionStatus: (executionId) => {
|
|
173
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
174
|
+
type: 'capability',
|
|
175
|
+
action: 'getExecutionStatus',
|
|
176
|
+
executionId
|
|
177
|
+
}, 'getExecutionStatusResponse');
|
|
178
|
+
},
|
|
179
|
+
/**
|
|
180
|
+
* Get capabilities by tag
|
|
181
|
+
* @param tag - Tag to filter by
|
|
182
|
+
* @returns Promise resolving to list of capabilities with the specified tag
|
|
183
|
+
*
|
|
184
|
+
* Requirements: 9.1
|
|
185
|
+
*/
|
|
186
|
+
getCapabilitiesByTag: (tag) => {
|
|
187
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
188
|
+
type: 'capability',
|
|
189
|
+
action: 'listCapabilities',
|
|
190
|
+
filter: { tags: [tag] }
|
|
191
|
+
}, 'listCapabilitiesResponse');
|
|
192
|
+
},
|
|
193
|
+
/**
|
|
194
|
+
* Get capabilities by author
|
|
195
|
+
* @param author - Author to filter by
|
|
196
|
+
* @returns Promise resolving to list of capabilities by the specified author
|
|
197
|
+
*
|
|
198
|
+
* Requirements: 9.1
|
|
199
|
+
*/
|
|
200
|
+
getCapabilitiesByAuthor: (author) => {
|
|
201
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
202
|
+
type: 'capability',
|
|
203
|
+
action: 'listCapabilities',
|
|
204
|
+
filter: { author }
|
|
205
|
+
}, 'listCapabilitiesResponse');
|
|
206
|
+
}
|
|
207
|
+
};
|
|
208
|
+
exports.default = codeboltCapability;
|
package/dist/modules/chat.d.ts
CHANGED
|
@@ -58,5 +58,15 @@ declare const cbchat: {
|
|
|
58
58
|
* @param {string} notificationMessage - The message to be sent in the notification.
|
|
59
59
|
*/
|
|
60
60
|
sendNotificationEvent: (notificationMessage: string, type: "debug" | "git" | "planner" | "browser" | "editor" | "terminal" | "preview") => void;
|
|
61
|
+
/**
|
|
62
|
+
* Checks if any steering message has been received.
|
|
63
|
+
* @returns {any} The message data if available, or null
|
|
64
|
+
*/
|
|
65
|
+
checkForSteeringMessage: () => any;
|
|
66
|
+
/**
|
|
67
|
+
* Waits for a steering message.
|
|
68
|
+
* @returns {Promise<any>} A promise that resolves with the message data
|
|
69
|
+
*/
|
|
70
|
+
onSteeringMessageReceived: () => Promise<any>;
|
|
61
71
|
};
|
|
62
72
|
export default cbchat;
|
package/dist/modules/chat.js
CHANGED
|
@@ -5,7 +5,16 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
// chat.ts
|
|
7
7
|
const websocket_1 = __importDefault(require("../core/websocket"));
|
|
8
|
+
const crypto_1 = require("crypto");
|
|
8
9
|
const enum_1 = require("@codebolt/types/enum");
|
|
10
|
+
// Steering message state
|
|
11
|
+
let steeringMessageMap = new Map();
|
|
12
|
+
// Subscribe to steering messages
|
|
13
|
+
const steeringSubscription = websocket_1.default.messageManager.subscribe('steeringMessage');
|
|
14
|
+
steeringSubscription.on('message', (message) => {
|
|
15
|
+
const eventId = (0, crypto_1.randomUUID)();
|
|
16
|
+
steeringMessageMap.set(eventId, message);
|
|
17
|
+
});
|
|
9
18
|
/**
|
|
10
19
|
* Chat module to interact with the WebSocket server.
|
|
11
20
|
*/
|
|
@@ -160,5 +169,34 @@ const cbchat = {
|
|
|
160
169
|
"eventType": type
|
|
161
170
|
});
|
|
162
171
|
},
|
|
172
|
+
/**
|
|
173
|
+
* Checks if any steering message has been received.
|
|
174
|
+
* @returns {any} The message data if available, or null
|
|
175
|
+
*/
|
|
176
|
+
checkForSteeringMessage: () => {
|
|
177
|
+
if (steeringMessageMap.size > 0) {
|
|
178
|
+
const [key, value] = steeringMessageMap.entries().next().value || [];
|
|
179
|
+
if (key) {
|
|
180
|
+
steeringMessageMap.delete(key);
|
|
181
|
+
return value;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
return null;
|
|
185
|
+
},
|
|
186
|
+
/**
|
|
187
|
+
* Waits for a steering message.
|
|
188
|
+
* @returns {Promise<any>} A promise that resolves with the message data
|
|
189
|
+
*/
|
|
190
|
+
onSteeringMessageReceived: async () => {
|
|
191
|
+
const message = cbchat.checkForSteeringMessage();
|
|
192
|
+
if (message)
|
|
193
|
+
return message;
|
|
194
|
+
return new Promise((resolve) => {
|
|
195
|
+
steeringSubscription.once('message', () => {
|
|
196
|
+
const data = cbchat.checkForSteeringMessage();
|
|
197
|
+
resolve(data);
|
|
198
|
+
});
|
|
199
|
+
});
|
|
200
|
+
},
|
|
163
201
|
};
|
|
164
202
|
exports.default = cbchat;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { CodebaseSearchResponse, McpToolSearchResponse } from '../types/codebaseSearch';
|
|
2
|
+
/**
|
|
3
|
+
* Codebase Search Module for codeboltjs
|
|
4
|
+
* Provides semantic code search functionality across the project.
|
|
5
|
+
* Mirrors the codebaseSearch.cli.ts operations via WebSocket.
|
|
6
|
+
*/
|
|
7
|
+
declare const codeboltCodebaseSearch: {
|
|
8
|
+
/**
|
|
9
|
+
* Perform a semantic search across the codebase
|
|
10
|
+
* @param query - The search query
|
|
11
|
+
* @param targetDirectories - Optional directories to limit the search
|
|
12
|
+
*/
|
|
13
|
+
search: (query: string, targetDirectories?: string[]) => Promise<CodebaseSearchResponse>;
|
|
14
|
+
/**
|
|
15
|
+
* Search for MCP tools by query and optional tags
|
|
16
|
+
* @param query - The search query
|
|
17
|
+
* @param tags - Optional tags to filter results
|
|
18
|
+
*/
|
|
19
|
+
searchMcpTool: (query: string, tags?: string[]) => Promise<McpToolSearchResponse>;
|
|
20
|
+
};
|
|
21
|
+
export default codeboltCodebaseSearch;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const websocket_1 = __importDefault(require("../core/websocket"));
|
|
7
|
+
const crypto_1 = require("crypto");
|
|
8
|
+
/**
|
|
9
|
+
* Codebase Search Module for codeboltjs
|
|
10
|
+
* Provides semantic code search functionality across the project.
|
|
11
|
+
* Mirrors the codebaseSearch.cli.ts operations via WebSocket.
|
|
12
|
+
*/
|
|
13
|
+
const codeboltCodebaseSearch = {
|
|
14
|
+
/**
|
|
15
|
+
* Perform a semantic search across the codebase
|
|
16
|
+
* @param query - The search query
|
|
17
|
+
* @param targetDirectories - Optional directories to limit the search
|
|
18
|
+
*/
|
|
19
|
+
search: async (query, targetDirectories) => {
|
|
20
|
+
const requestId = (0, crypto_1.randomUUID)();
|
|
21
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
22
|
+
type: 'codebaseSearchEvent',
|
|
23
|
+
action: 'codebase_search',
|
|
24
|
+
requestId,
|
|
25
|
+
message: { query, target_directories: targetDirectories }
|
|
26
|
+
}, 'codebaseSearchResponse');
|
|
27
|
+
},
|
|
28
|
+
/**
|
|
29
|
+
* Search for MCP tools by query and optional tags
|
|
30
|
+
* @param query - The search query
|
|
31
|
+
* @param tags - Optional tags to filter results
|
|
32
|
+
*/
|
|
33
|
+
searchMcpTool: async (query, tags) => {
|
|
34
|
+
const requestId = (0, crypto_1.randomUUID)();
|
|
35
|
+
return websocket_1.default.messageManager.sendAndWaitForResponse({
|
|
36
|
+
type: 'codebaseSearchEvent',
|
|
37
|
+
action: 'search_mcp_tool',
|
|
38
|
+
requestId,
|
|
39
|
+
message: { query, tags }
|
|
40
|
+
}, 'mcpToolSearchResponse');
|
|
41
|
+
}
|
|
42
|
+
};
|
|
43
|
+
exports.default = codeboltCodebaseSearch;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Codebolt Event module for handling external events.
|
|
3
|
+
* This module provides APIs for waiting on and checking for various event types.
|
|
4
|
+
*/
|
|
5
|
+
declare const codeboltEvent: {
|
|
6
|
+
/**
|
|
7
|
+
* Adds a running background agent to tracking.
|
|
8
|
+
* @param {string} threadId - The thread ID
|
|
9
|
+
* @param {any} data - The agent data
|
|
10
|
+
* @param {string} [groupId] - Optional group ID
|
|
11
|
+
*/
|
|
12
|
+
addRunningAgent: (threadId: string, data: any, groupId?: string) => void;
|
|
13
|
+
/**
|
|
14
|
+
* Gets the number of currently running background agents.
|
|
15
|
+
* @returns {number} The count
|
|
16
|
+
*/
|
|
17
|
+
getRunningAgentCount: () => number;
|
|
18
|
+
/**
|
|
19
|
+
* Checks if any background agent has completed.
|
|
20
|
+
* @returns {any} The completion data if available, or null
|
|
21
|
+
*/
|
|
22
|
+
checkForBackgroundAgentCompletion: () => any[] | null;
|
|
23
|
+
/**
|
|
24
|
+
* Waits for background agent completion.
|
|
25
|
+
* @returns {Promise<any>} A promise that resolves with the completion data
|
|
26
|
+
*/
|
|
27
|
+
onBackgroundAgentCompletion: () => Promise<any>;
|
|
28
|
+
/**
|
|
29
|
+
* Checks if any grouped background agent has completed.
|
|
30
|
+
* @returns {any} The completion data if available, or null
|
|
31
|
+
*/
|
|
32
|
+
checkForBackgroundGroupedAgentCompletion: () => any;
|
|
33
|
+
/**
|
|
34
|
+
* Waits for grouped background agent completion.
|
|
35
|
+
* @returns {Promise<any>} A promise that resolves with the completion data
|
|
36
|
+
*/
|
|
37
|
+
onBackgroundGroupedAgentCompletion: () => Promise<any>;
|
|
38
|
+
/**
|
|
39
|
+
* Checks if any agent event has been received.
|
|
40
|
+
* @returns {any} The event data if available, or null
|
|
41
|
+
*/
|
|
42
|
+
checkForAgentEventReceived: () => any;
|
|
43
|
+
/**
|
|
44
|
+
* Waits for an agent event.
|
|
45
|
+
* @returns {Promise<any>} A promise that resolves with the event data
|
|
46
|
+
*/
|
|
47
|
+
onAgentEventReceived: () => Promise<any>;
|
|
48
|
+
/**
|
|
49
|
+
* Waits for any external event (Background Completion, Group Completion, Agent Event).
|
|
50
|
+
* @returns {Promise<{ type: string, data: any }>} A promise that resolves with the event object
|
|
51
|
+
*/
|
|
52
|
+
waitForAnyExternalEvent: () => Promise<{
|
|
53
|
+
type: string;
|
|
54
|
+
data: any;
|
|
55
|
+
}>;
|
|
56
|
+
};
|
|
57
|
+
export default codeboltEvent;
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
// codeboltEvent.ts
|
|
7
|
+
const websocket_1 = __importDefault(require("../core/websocket"));
|
|
8
|
+
const crypto_1 = require("crypto");
|
|
9
|
+
// Event state maps - Internal use only
|
|
10
|
+
const runningBackgroundAgents = new Map();
|
|
11
|
+
const completedBackgroundAgents = new Map();
|
|
12
|
+
const agentEventMap = new Map();
|
|
13
|
+
const groupedAgentCompletionMap = new Map();
|
|
14
|
+
const backgroundAgentGroups = new Map();
|
|
15
|
+
// Helper to cleanup group membership
|
|
16
|
+
const cleanupAgentGroup = (threadId) => {
|
|
17
|
+
for (const [groupId, agents] of backgroundAgentGroups.entries()) {
|
|
18
|
+
if (agents.has(threadId)) {
|
|
19
|
+
agents.delete(threadId);
|
|
20
|
+
if (agents.size === 0) {
|
|
21
|
+
backgroundAgentGroups.delete(groupId);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
// Handler for background agent completion messages
|
|
27
|
+
const handleBackgroundAgentCompletion = (message) => {
|
|
28
|
+
// Add to completed queue for orchestrator to process
|
|
29
|
+
completedBackgroundAgents.set(message.threadId, message);
|
|
30
|
+
// Remove from running map since agent is now complete
|
|
31
|
+
runningBackgroundAgents.delete(message.threadId);
|
|
32
|
+
// Clean up any group associations
|
|
33
|
+
cleanupAgentGroup(message.threadId);
|
|
34
|
+
};
|
|
35
|
+
// Subscribe to message types
|
|
36
|
+
const agentEventSubscription = websocket_1.default.messageManager.subscribe('agentEvent');
|
|
37
|
+
agentEventSubscription.on('message', (message) => {
|
|
38
|
+
const eventId = (0, crypto_1.randomUUID)();
|
|
39
|
+
agentEventMap.set(eventId, message);
|
|
40
|
+
});
|
|
41
|
+
// Subscribe to background agent completion - primary message type
|
|
42
|
+
const backgroundAgentSubscription = websocket_1.default.messageManager.subscribe('startThreadResponse');
|
|
43
|
+
backgroundAgentSubscription.on('message', handleBackgroundAgentCompletion);
|
|
44
|
+
// Also subscribe to ThreadCompleted as an alternative message type for background agent completion
|
|
45
|
+
const threadCompletedSubscription = websocket_1.default.messageManager.subscribe('ThreadCompleted');
|
|
46
|
+
threadCompletedSubscription.on('message', (message) => {
|
|
47
|
+
// Only handle if this thread was a background agent
|
|
48
|
+
if (runningBackgroundAgents.has(message.threadId)) {
|
|
49
|
+
handleBackgroundAgentCompletion(message);
|
|
50
|
+
// Also emit on the backgroundAgentSubscription for waitForAnyExternalEvent
|
|
51
|
+
backgroundAgentSubscription.emit('message', message);
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
const groupedAgentSubscription = websocket_1.default.messageManager.subscribe('backgroundGroupedAgentCompletion');
|
|
55
|
+
groupedAgentSubscription.on('message', (message) => {
|
|
56
|
+
groupedAgentCompletionMap.set(message.threadId, message);
|
|
57
|
+
});
|
|
58
|
+
/**
|
|
59
|
+
* Codebolt Event module for handling external events.
|
|
60
|
+
* This module provides APIs for waiting on and checking for various event types.
|
|
61
|
+
*/
|
|
62
|
+
const codeboltEvent = {
|
|
63
|
+
/**
|
|
64
|
+
* Adds a running background agent to tracking.
|
|
65
|
+
* @param {string} threadId - The thread ID
|
|
66
|
+
* @param {any} data - The agent data
|
|
67
|
+
* @param {string} [groupId] - Optional group ID
|
|
68
|
+
*/
|
|
69
|
+
addRunningAgent: (threadId, data, groupId) => {
|
|
70
|
+
runningBackgroundAgents.set(threadId, data);
|
|
71
|
+
if (groupId) {
|
|
72
|
+
if (!backgroundAgentGroups.has(groupId)) {
|
|
73
|
+
backgroundAgentGroups.set(groupId, new Set());
|
|
74
|
+
}
|
|
75
|
+
backgroundAgentGroups.get(groupId).add(threadId);
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
/**
|
|
79
|
+
* Gets the number of currently running background agents.
|
|
80
|
+
* @returns {number} The count
|
|
81
|
+
*/
|
|
82
|
+
getRunningAgentCount: () => {
|
|
83
|
+
return runningBackgroundAgents.size;
|
|
84
|
+
},
|
|
85
|
+
/**
|
|
86
|
+
* Checks if any background agent has completed.
|
|
87
|
+
* @returns {any} The completion data if available, or null
|
|
88
|
+
*/
|
|
89
|
+
checkForBackgroundAgentCompletion: () => {
|
|
90
|
+
if (completedBackgroundAgents.size > 0) {
|
|
91
|
+
const values = Array.from(completedBackgroundAgents.values());
|
|
92
|
+
completedBackgroundAgents.clear();
|
|
93
|
+
return values;
|
|
94
|
+
}
|
|
95
|
+
return null;
|
|
96
|
+
},
|
|
97
|
+
/**
|
|
98
|
+
* Waits for background agent completion.
|
|
99
|
+
* @returns {Promise<any>} A promise that resolves with the completion data
|
|
100
|
+
*/
|
|
101
|
+
onBackgroundAgentCompletion: async () => {
|
|
102
|
+
const completion = codeboltEvent.checkForBackgroundAgentCompletion();
|
|
103
|
+
if (completion)
|
|
104
|
+
return completion;
|
|
105
|
+
return new Promise((resolve) => {
|
|
106
|
+
backgroundAgentSubscription.once('message', () => {
|
|
107
|
+
const data = codeboltEvent.checkForBackgroundAgentCompletion();
|
|
108
|
+
resolve(data);
|
|
109
|
+
});
|
|
110
|
+
});
|
|
111
|
+
},
|
|
112
|
+
/**
|
|
113
|
+
* Checks if any grouped background agent has completed.
|
|
114
|
+
* @returns {any} The completion data if available, or null
|
|
115
|
+
*/
|
|
116
|
+
checkForBackgroundGroupedAgentCompletion: () => {
|
|
117
|
+
if (groupedAgentCompletionMap.size > 0) {
|
|
118
|
+
const [key, value] = groupedAgentCompletionMap.entries().next().value || [];
|
|
119
|
+
if (key) {
|
|
120
|
+
groupedAgentCompletionMap.delete(key);
|
|
121
|
+
return value;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
return null;
|
|
125
|
+
},
|
|
126
|
+
/**
|
|
127
|
+
* Waits for grouped background agent completion.
|
|
128
|
+
* @returns {Promise<any>} A promise that resolves with the completion data
|
|
129
|
+
*/
|
|
130
|
+
onBackgroundGroupedAgentCompletion: async () => {
|
|
131
|
+
const completion = codeboltEvent.checkForBackgroundGroupedAgentCompletion();
|
|
132
|
+
if (completion)
|
|
133
|
+
return completion;
|
|
134
|
+
return new Promise((resolve) => {
|
|
135
|
+
groupedAgentSubscription.once('message', () => {
|
|
136
|
+
const data = codeboltEvent.checkForBackgroundGroupedAgentCompletion();
|
|
137
|
+
resolve(data);
|
|
138
|
+
});
|
|
139
|
+
});
|
|
140
|
+
},
|
|
141
|
+
/**
|
|
142
|
+
* Checks if any agent event has been received.
|
|
143
|
+
* @returns {any} The event data if available, or null
|
|
144
|
+
*/
|
|
145
|
+
checkForAgentEventReceived: () => {
|
|
146
|
+
if (agentEventMap.size > 0) {
|
|
147
|
+
const [key, value] = agentEventMap.entries().next().value || [];
|
|
148
|
+
if (key) {
|
|
149
|
+
agentEventMap.delete(key);
|
|
150
|
+
return value;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
return null;
|
|
154
|
+
},
|
|
155
|
+
/**
|
|
156
|
+
* Waits for an agent event.
|
|
157
|
+
* @returns {Promise<any>} A promise that resolves with the event data
|
|
158
|
+
*/
|
|
159
|
+
onAgentEventReceived: async () => {
|
|
160
|
+
const event = codeboltEvent.checkForAgentEventReceived();
|
|
161
|
+
if (event)
|
|
162
|
+
return event;
|
|
163
|
+
return new Promise((resolve) => {
|
|
164
|
+
agentEventSubscription.once('message', () => {
|
|
165
|
+
const data = codeboltEvent.checkForAgentEventReceived();
|
|
166
|
+
resolve(data);
|
|
167
|
+
});
|
|
168
|
+
});
|
|
169
|
+
},
|
|
170
|
+
/**
|
|
171
|
+
* Waits for any external event (Background Completion, Group Completion, Agent Event).
|
|
172
|
+
* @returns {Promise<{ type: string, data: any }>} A promise that resolves with the event object
|
|
173
|
+
*/
|
|
174
|
+
waitForAnyExternalEvent: async () => {
|
|
175
|
+
// Check functions mapped to their return type strings
|
|
176
|
+
const checks = [
|
|
177
|
+
{ fn: () => codeboltEvent.checkForBackgroundAgentCompletion(), type: 'backgroundAgentCompletion' },
|
|
178
|
+
{ fn: () => codeboltEvent.checkForBackgroundGroupedAgentCompletion(), type: 'backgroundGroupedAgentCompletion' },
|
|
179
|
+
{ fn: () => codeboltEvent.checkForAgentEventReceived(), type: 'agentEventReceived' }
|
|
180
|
+
];
|
|
181
|
+
for (const { fn, type } of checks) {
|
|
182
|
+
const data = fn();
|
|
183
|
+
if (data)
|
|
184
|
+
return { type, data };
|
|
185
|
+
}
|
|
186
|
+
return new Promise((resolve) => {
|
|
187
|
+
const cleanup = () => {
|
|
188
|
+
backgroundAgentSubscription.removeListener('message', onBgComplete);
|
|
189
|
+
groupedAgentSubscription.removeListener('message', onGroupComplete);
|
|
190
|
+
agentEventSubscription.removeListener('message', onAgentEvent);
|
|
191
|
+
};
|
|
192
|
+
const onBgComplete = () => {
|
|
193
|
+
// Must unhook first to avoid multi-resolution
|
|
194
|
+
cleanup();
|
|
195
|
+
// We must yield slightly to ensure handleBackgroundAgentCompletion has processed the event?
|
|
196
|
+
// Actually, handleBackgroundAgentCompletion attaches first, so it runs first on the same emitter.
|
|
197
|
+
// That should be safe synchronously.
|
|
198
|
+
const data = codeboltEvent.checkForBackgroundAgentCompletion();
|
|
199
|
+
resolve({ type: 'backgroundAgentCompletion', data });
|
|
200
|
+
};
|
|
201
|
+
const onGroupComplete = () => {
|
|
202
|
+
cleanup();
|
|
203
|
+
const data = codeboltEvent.checkForBackgroundGroupedAgentCompletion();
|
|
204
|
+
resolve({ type: 'backgroundGroupedAgentCompletion', data });
|
|
205
|
+
};
|
|
206
|
+
const onAgentEvent = () => {
|
|
207
|
+
cleanup();
|
|
208
|
+
const data = codeboltEvent.checkForAgentEventReceived();
|
|
209
|
+
resolve({ type: 'agentEventReceived', data });
|
|
210
|
+
};
|
|
211
|
+
backgroundAgentSubscription.once('message', onBgComplete);
|
|
212
|
+
groupedAgentSubscription.once('message', onGroupComplete);
|
|
213
|
+
agentEventSubscription.once('message', onAgentEvent);
|
|
214
|
+
});
|
|
215
|
+
}
|
|
216
|
+
};
|
|
217
|
+
exports.default = codeboltEvent;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { Codemap, CodemapStatus, CreateCodemapData, UpdateCodemapData, CodemapListResponse, CodemapGetResponse, CodemapCreateResponse, CodemapSaveResponse, CodemapUpdateResponse, CodemapDeleteResponse } from '../types/codemap';
|
|
2
|
+
/**
|
|
3
|
+
* Codemap Module for codeboltjs
|
|
4
|
+
* Provides functionality for managing codemaps (visual representations of code structure).
|
|
5
|
+
* Mirrors the codemapService.cli.ts operations via WebSocket.
|
|
6
|
+
*/
|
|
7
|
+
declare const codeboltCodemap: {
|
|
8
|
+
/**
|
|
9
|
+
* List all codemaps for a project
|
|
10
|
+
*/
|
|
11
|
+
list: (projectPath?: string) => Promise<CodemapListResponse>;
|
|
12
|
+
/**
|
|
13
|
+
* Get a specific codemap by ID
|
|
14
|
+
*/
|
|
15
|
+
get: (codemapId: string, projectPath?: string) => Promise<CodemapGetResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Create a placeholder codemap (status: 'creating')
|
|
18
|
+
* Call this before generating the actual codemap content
|
|
19
|
+
*/
|
|
20
|
+
create: (data: CreateCodemapData, projectPath?: string) => Promise<CodemapCreateResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* Save a complete codemap with content
|
|
23
|
+
*/
|
|
24
|
+
save: (codemapId: string, codemap: Codemap, projectPath?: string) => Promise<CodemapSaveResponse>;
|
|
25
|
+
/**
|
|
26
|
+
* Set the status of a codemap
|
|
27
|
+
*/
|
|
28
|
+
setStatus: (codemapId: string, status: CodemapStatus, error?: string, projectPath?: string) => Promise<CodemapUpdateResponse>;
|
|
29
|
+
/**
|
|
30
|
+
* Update codemap info (title, description, etc.)
|
|
31
|
+
*/
|
|
32
|
+
update: (codemapId: string, data: UpdateCodemapData, projectPath?: string) => Promise<CodemapUpdateResponse>;
|
|
33
|
+
/**
|
|
34
|
+
* Delete a codemap
|
|
35
|
+
*/
|
|
36
|
+
delete: (codemapId: string, projectPath?: string) => Promise<CodemapDeleteResponse>;
|
|
37
|
+
};
|
|
38
|
+
export default codeboltCodemap;
|