@johpaz/hive-sdk 0.0.2 → 0.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/agents/index.d.ts +15 -15
- package/dist/agents/index.js +11 -11
- package/dist/channels/index.d.ts +7 -7
- package/dist/channels/index.js +6 -6
- package/dist/cron/index.d.ts +2 -2
- package/dist/cron/index.js +2 -2
- package/dist/database/index.d.ts +5 -5
- package/dist/database/index.js +5 -5
- package/dist/ethics/index.d.ts +1 -1
- package/dist/ethics/index.js +1 -1
- package/dist/index.d.ts +15 -9
- package/dist/index.js +63 -42
- package/dist/mcp/index.d.ts +14 -0
- package/dist/mcp/index.js +8 -0
- package/dist/skills/index.d.ts +12 -0
- package/dist/skills/index.js +10 -0
- package/dist/tools/index.d.ts +11 -11
- package/dist/tools/index.js +11 -11
- package/dist/types/index.d.ts +8 -8
- package/package.json +8 -5
- package/src/agents/index.ts +15 -15
- package/src/channels/index.ts +7 -7
- package/src/cron/index.ts +3 -2
- package/src/database/index.ts +5 -5
- package/src/ethics/index.ts +1 -1
- package/src/index.ts +245 -13
- package/src/mcp/index.ts +3 -3
- package/src/skills/index.ts +1 -1
- package/src/tools/index.ts +11 -11
- package/src/types/index.ts +8 -8
package/dist/agents/index.d.ts
CHANGED
|
@@ -13,18 +13,18 @@
|
|
|
13
13
|
* threadId: "thread-123"
|
|
14
14
|
* });
|
|
15
15
|
*/
|
|
16
|
-
export { AgentService, getAgentService, createAgentService } from "@johpaz/hive-agents/agent/service";
|
|
17
|
-
export type { AgentServiceConfig, AgentDBRecord } from "@johpaz/hive-agents/agent/service";
|
|
18
|
-
export { runAgent, runAgentIsolated, rebuildAgentLoop, getAgentLoop } from "@johpaz/hive-agents/agent/agent-loop";
|
|
19
|
-
export type { AgentLoopOptions, StepEvent, StreamChunk } from "@johpaz/hive-agents/agent/agent-loop";
|
|
20
|
-
export { compileContext } from "@johpaz/hive-agents/agent/context-compiler";
|
|
21
|
-
export { buildSystemPromptWithProjects } from "@johpaz/hive-agents/agent/prompt-builder";
|
|
22
|
-
export { addMessage, getHistory, getRecentMessages, getMessageCount, getTotalTokens, getMessagesAfter } from "@johpaz/hive-agents/agent/conversation-store";
|
|
23
|
-
export type { StoredMessage } from "@johpaz/hive-agents/agent/conversation-store";
|
|
24
|
-
export { selectTools } from "@johpaz/hive-agents/agent/tool-selector";
|
|
25
|
-
export { selectSkills } from "@johpaz/hive-agents/agent/skill-selector";
|
|
26
|
-
export { selectPlaybookRules } from "@johpaz/hive-agents/agent/playbook-selector";
|
|
27
|
-
export { callLLM, resolveProviderConfig } from "@johpaz/hive-agents/agent/llm-client";
|
|
28
|
-
export type { LLMMessage, LLMResponse, LLMCallOptions, LLMToolCall } from "@johpaz/hive-agents/agent/llm-client";
|
|
29
|
-
export { resolveAgentId, resolveUserId } from "@johpaz/hive-agents/storage/onboarding";
|
|
30
|
-
export { memoryWriteTool, memoryReadTool, memoryListTool, memorySearchTool, memoryDeleteTool, agentCreateTool, agentFindTool, agentArchiveTool, taskDelegateTool, taskDelegateCodeTool, taskStatusTool, busPublishTool, busReadTool, projectUpdatesTool, createTools as createAgentTools, } from "@johpaz/hive-agents/tools/agents
|
|
16
|
+
export { AgentService, getAgentService, createAgentService } from "@johpaz/hive-agents-core/agent/service";
|
|
17
|
+
export type { AgentServiceConfig, AgentDBRecord } from "@johpaz/hive-agents-core/agent/service";
|
|
18
|
+
export { runAgent, runAgentIsolated, rebuildAgentLoop, getAgentLoop } from "@johpaz/hive-agents-core/agent/agent-loop";
|
|
19
|
+
export type { AgentLoopOptions, StepEvent, StreamChunk } from "@johpaz/hive-agents-core/agent/agent-loop";
|
|
20
|
+
export { compileContext } from "@johpaz/hive-agents-core/agent/context-compiler";
|
|
21
|
+
export { buildSystemPromptWithProjects } from "@johpaz/hive-agents-core/agent/prompt-builder";
|
|
22
|
+
export { addMessage, getHistory, getRecentMessages, getMessageCount, getTotalTokens, getMessagesAfter } from "@johpaz/hive-agents-core/agent/conversation-store";
|
|
23
|
+
export type { StoredMessage } from "@johpaz/hive-agents-core/agent/conversation-store";
|
|
24
|
+
export { selectTools } from "@johpaz/hive-agents-core/agent/tool-selector";
|
|
25
|
+
export { selectSkills } from "@johpaz/hive-agents-core/agent/skill-selector";
|
|
26
|
+
export { selectPlaybookRules } from "@johpaz/hive-agents-core/agent/playbook-selector";
|
|
27
|
+
export { callLLM, resolveProviderConfig } from "@johpaz/hive-agents-core/agent/llm-client";
|
|
28
|
+
export type { LLMMessage, LLMResponse, LLMCallOptions, LLMToolCall } from "@johpaz/hive-agents-core/agent/llm-client";
|
|
29
|
+
export { resolveAgentId, resolveUserId } from "@johpaz/hive-agents-core/storage/onboarding";
|
|
30
|
+
export { memoryWriteTool, memoryReadTool, memoryListTool, memorySearchTool, memoryDeleteTool, agentCreateTool, agentFindTool, agentArchiveTool, taskDelegateTool, taskDelegateCodeTool, taskStatusTool, busPublishTool, busReadTool, projectUpdatesTool, createTools as createAgentTools, } from "@johpaz/hive-agents-core/tools/agents";
|
package/dist/agents/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/agents/index.ts
|
|
3
|
-
import { AgentService, getAgentService, createAgentService } from "@johpaz/hive-agents/agent/service";
|
|
4
|
-
import { runAgent, runAgentIsolated, rebuildAgentLoop, getAgentLoop } from "@johpaz/hive-agents/agent/agent-loop";
|
|
5
|
-
import { compileContext } from "@johpaz/hive-agents/agent/context-compiler";
|
|
6
|
-
import { buildSystemPromptWithProjects } from "@johpaz/hive-agents/agent/prompt-builder";
|
|
7
|
-
import { addMessage, getHistory, getRecentMessages, getMessageCount, getTotalTokens, getMessagesAfter } from "@johpaz/hive-agents/agent/conversation-store";
|
|
8
|
-
import { selectTools } from "@johpaz/hive-agents/agent/tool-selector";
|
|
9
|
-
import { selectSkills } from "@johpaz/hive-agents/agent/skill-selector";
|
|
10
|
-
import { selectPlaybookRules } from "@johpaz/hive-agents/agent/playbook-selector";
|
|
11
|
-
import { callLLM, resolveProviderConfig } from "@johpaz/hive-agents/agent/llm-client";
|
|
12
|
-
import { resolveAgentId, resolveUserId } from "@johpaz/hive-agents/storage/onboarding";
|
|
3
|
+
import { AgentService, getAgentService, createAgentService } from "@johpaz/hive-agents-core/agent/service";
|
|
4
|
+
import { runAgent, runAgentIsolated, rebuildAgentLoop, getAgentLoop } from "@johpaz/hive-agents-core/agent/agent-loop";
|
|
5
|
+
import { compileContext } from "@johpaz/hive-agents-core/agent/context-compiler";
|
|
6
|
+
import { buildSystemPromptWithProjects } from "@johpaz/hive-agents-core/agent/prompt-builder";
|
|
7
|
+
import { addMessage, getHistory, getRecentMessages, getMessageCount, getTotalTokens, getMessagesAfter } from "@johpaz/hive-agents-core/agent/conversation-store";
|
|
8
|
+
import { selectTools } from "@johpaz/hive-agents-core/agent/tool-selector";
|
|
9
|
+
import { selectSkills } from "@johpaz/hive-agents-core/agent/skill-selector";
|
|
10
|
+
import { selectPlaybookRules } from "@johpaz/hive-agents-core/agent/playbook-selector";
|
|
11
|
+
import { callLLM, resolveProviderConfig } from "@johpaz/hive-agents-core/agent/llm-client";
|
|
12
|
+
import { resolveAgentId, resolveUserId } from "@johpaz/hive-agents-core/storage/onboarding";
|
|
13
13
|
import {
|
|
14
14
|
memoryWriteTool,
|
|
15
15
|
memoryReadTool,
|
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
busReadTool,
|
|
27
27
|
projectUpdatesTool,
|
|
28
28
|
createTools
|
|
29
|
-
} from "@johpaz/hive-agents/tools/agents
|
|
29
|
+
} from "@johpaz/hive-agents-core/tools/agents";
|
|
30
30
|
export {
|
|
31
31
|
taskStatusTool,
|
|
32
32
|
taskDelegateTool,
|
package/dist/channels/index.d.ts
CHANGED
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
* // Get channel manager
|
|
10
10
|
* const manager = new ChannelManager(config);
|
|
11
11
|
*/
|
|
12
|
-
export { ChannelManager } from "@johpaz/hive-agents/channels/manager";
|
|
13
|
-
export type { OutboundMessage, IncomingMessage, ChannelConfig, IChannel, MessageHandler, } from "@johpaz/hive-agents/channels/base";
|
|
14
|
-
export { TelegramChannel, type TelegramConfig } from "@johpaz/hive-agents/channels/telegram";
|
|
15
|
-
export { DiscordChannel, type DiscordConfig } from "@johpaz/hive-agents/channels/discord";
|
|
16
|
-
export { WhatsAppChannel, type WhatsAppConfig, type WhatsAppConnectionState } from "@johpaz/hive-agents/channels/whatsapp";
|
|
17
|
-
export { SlackChannel, type SlackConfig, type SlackConnectionState } from "@johpaz/hive-agents/channels/slack";
|
|
18
|
-
export { WebChatChannel, type WebChatConfig } from "@johpaz/hive-agents/channels/webchat";
|
|
12
|
+
export { ChannelManager } from "@johpaz/hive-agents-core/channels/manager";
|
|
13
|
+
export type { OutboundMessage, IncomingMessage, ChannelConfig, IChannel, MessageHandler, } from "@johpaz/hive-agents-core/channels/base";
|
|
14
|
+
export { TelegramChannel, type TelegramConfig } from "@johpaz/hive-agents-core/channels/telegram";
|
|
15
|
+
export { DiscordChannel, type DiscordConfig } from "@johpaz/hive-agents-core/channels/discord";
|
|
16
|
+
export { WhatsAppChannel, type WhatsAppConfig, type WhatsAppConnectionState } from "@johpaz/hive-agents-core/channels/whatsapp";
|
|
17
|
+
export { SlackChannel, type SlackConfig, type SlackConnectionState } from "@johpaz/hive-agents-core/channels/slack";
|
|
18
|
+
export { WebChatChannel, type WebChatConfig } from "@johpaz/hive-agents-core/channels/webchat";
|
package/dist/channels/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/channels/index.ts
|
|
3
|
-
import { ChannelManager } from "@johpaz/hive-agents/channels/manager";
|
|
4
|
-
import { TelegramChannel } from "@johpaz/hive-agents/channels/telegram";
|
|
5
|
-
import { DiscordChannel } from "@johpaz/hive-agents/channels/discord";
|
|
6
|
-
import { WhatsAppChannel } from "@johpaz/hive-agents/channels/whatsapp";
|
|
7
|
-
import { SlackChannel } from "@johpaz/hive-agents/channels/slack";
|
|
8
|
-
import { WebChatChannel } from "@johpaz/hive-agents/channels/webchat";
|
|
3
|
+
import { ChannelManager } from "@johpaz/hive-agents-core/channels/manager";
|
|
4
|
+
import { TelegramChannel } from "@johpaz/hive-agents-core/channels/telegram";
|
|
5
|
+
import { DiscordChannel } from "@johpaz/hive-agents-core/channels/discord";
|
|
6
|
+
import { WhatsAppChannel } from "@johpaz/hive-agents-core/channels/whatsapp";
|
|
7
|
+
import { SlackChannel } from "@johpaz/hive-agents-core/channels/slack";
|
|
8
|
+
import { WebChatChannel } from "@johpaz/hive-agents-core/channels/webchat";
|
|
9
9
|
export {
|
|
10
10
|
WhatsAppChannel,
|
|
11
11
|
WebChatChannel,
|
package/dist/cron/index.d.ts
CHANGED
|
@@ -11,5 +11,5 @@
|
|
|
11
11
|
* initCronScheduler,
|
|
12
12
|
* } from "@johpaz/hive-agents-sdk/cron";
|
|
13
13
|
*/
|
|
14
|
-
export { scheduleCreateTool, scheduleListTool, schedulePauseTool, scheduleResumeTool, scheduleDeleteTool, scheduleTriggerTool, scheduleHistoryTool, createTools as createScheduleTools, setSchedulerInstance, } from "@johpaz/hive-agents/tools/schedule";
|
|
15
|
-
export { cronAddTool, cronListTool, cronEditTool, cronRemoveTool, createTools as createCronTools, initCronScheduler, resolveBestChannel, } from "@johpaz/hive-agents/tools/cron";
|
|
14
|
+
export { scheduleCreateTool, scheduleListTool, schedulePauseTool, scheduleResumeTool, scheduleDeleteTool, scheduleTriggerTool, scheduleHistoryTool, createTools as createScheduleTools, setSchedulerInstance, } from "@johpaz/hive-agents-core/tools/schedule";
|
|
15
|
+
export { cronAddTool, cronListTool, cronEditTool, cronRemoveTool, createTools as createCronTools, initCronScheduler, resolveBestChannel, } from "@johpaz/hive-agents-core/tools/cron";
|
package/dist/cron/index.js
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
scheduleHistoryTool,
|
|
11
11
|
createTools,
|
|
12
12
|
setSchedulerInstance
|
|
13
|
-
} from "@johpaz/hive-agents/tools/schedule";
|
|
13
|
+
} from "@johpaz/hive-agents-core/tools/schedule";
|
|
14
14
|
import {
|
|
15
15
|
cronAddTool,
|
|
16
16
|
cronListTool,
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
createTools as createTools2,
|
|
20
20
|
initCronScheduler,
|
|
21
21
|
resolveBestChannel
|
|
22
|
-
} from "@johpaz/hive-agents/tools/cron";
|
|
22
|
+
} from "@johpaz/hive-agents-core/tools/cron";
|
|
23
23
|
export {
|
|
24
24
|
setSchedulerInstance,
|
|
25
25
|
scheduleTriggerTool,
|
package/dist/database/index.d.ts
CHANGED
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
* // Get database instance
|
|
13
13
|
* const db = getDb();
|
|
14
14
|
*/
|
|
15
|
-
export { getDb, initializeDatabase, getDbPathLazy, dbService } from "@johpaz/hive-agents/storage/sqlite";
|
|
16
|
-
export { SCHEMA, PROJECTS_SCHEMA, CONTEXT_ENGINE_SCHEMA } from "@johpaz/hive-agents/storage/schema";
|
|
17
|
-
export { seedAllData, seedToolsAndSkills, getAllElements, getActiveElements } from "@johpaz/hive-agents/storage/seed";
|
|
18
|
-
export { encrypt, decrypt, encryptApiKey, decryptApiKey, encryptConfig, decryptConfig, hashPassword, verifyPassword, maskApiKey } from "@johpaz/hive-agents/storage/crypto";
|
|
19
|
-
export { getAllProviders, getAllModels, getAllEthics, getAllCodeBridge, getAllSkills, getAllDbTools, getAllMcpServers, getAllChannels, getActiveTools, getUserAgents, resolveUserId, resolveAgentId, getSingleUserId, getCoordinatorAgentId, getDefaultAgentId, getAgentConfig, } from "@johpaz/hive-agents/storage/onboarding";
|
|
15
|
+
export { getDb, initializeDatabase, getDbPathLazy, dbService } from "@johpaz/hive-agents-core/storage/sqlite";
|
|
16
|
+
export { SCHEMA, PROJECTS_SCHEMA, CONTEXT_ENGINE_SCHEMA } from "@johpaz/hive-agents-core/storage/schema";
|
|
17
|
+
export { seedAllData, seedToolsAndSkills, getAllElements, getActiveElements } from "@johpaz/hive-agents-core/storage/seed";
|
|
18
|
+
export { encrypt, decrypt, encryptApiKey, decryptApiKey, encryptConfig, decryptConfig, hashPassword, verifyPassword, maskApiKey } from "@johpaz/hive-agents-core/storage/crypto";
|
|
19
|
+
export { getAllProviders, getAllModels, getAllEthics, getAllCodeBridge, getAllSkills, getAllDbTools, getAllMcpServers, getAllChannels, getActiveTools, getUserAgents, resolveUserId, resolveAgentId, getSingleUserId, getCoordinatorAgentId, getDefaultAgentId, getAgentConfig, } from "@johpaz/hive-agents-core/storage/onboarding";
|
package/dist/database/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/database/index.ts
|
|
3
|
-
import { getDb, initializeDatabase, getDbPathLazy, dbService } from "@johpaz/hive-agents/storage/sqlite";
|
|
4
|
-
import { SCHEMA, PROJECTS_SCHEMA, CONTEXT_ENGINE_SCHEMA } from "@johpaz/hive-agents/storage/schema";
|
|
5
|
-
import { seedAllData, seedToolsAndSkills, getAllElements, getActiveElements } from "@johpaz/hive-agents/storage/seed";
|
|
6
|
-
import { encrypt, decrypt, encryptApiKey, decryptApiKey, encryptConfig, decryptConfig, hashPassword, verifyPassword, maskApiKey } from "@johpaz/hive-agents/storage/crypto";
|
|
3
|
+
import { getDb, initializeDatabase, getDbPathLazy, dbService } from "@johpaz/hive-agents-core/storage/sqlite";
|
|
4
|
+
import { SCHEMA, PROJECTS_SCHEMA, CONTEXT_ENGINE_SCHEMA } from "@johpaz/hive-agents-core/storage/schema";
|
|
5
|
+
import { seedAllData, seedToolsAndSkills, getAllElements, getActiveElements } from "@johpaz/hive-agents-core/storage/seed";
|
|
6
|
+
import { encrypt, decrypt, encryptApiKey, decryptApiKey, encryptConfig, decryptConfig, hashPassword, verifyPassword, maskApiKey } from "@johpaz/hive-agents-core/storage/crypto";
|
|
7
7
|
import {
|
|
8
8
|
getAllProviders,
|
|
9
9
|
getAllModels,
|
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
getCoordinatorAgentId,
|
|
22
22
|
getDefaultAgentId,
|
|
23
23
|
getAgentConfig
|
|
24
|
-
} from "@johpaz/hive-agents/storage/onboarding";
|
|
24
|
+
} from "@johpaz/hive-agents-core/storage/onboarding";
|
|
25
25
|
export {
|
|
26
26
|
verifyPassword,
|
|
27
27
|
seedToolsAndSkills,
|
package/dist/ethics/index.d.ts
CHANGED
package/dist/ethics/index.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -17,13 +17,19 @@
|
|
|
17
17
|
* // Or import everything
|
|
18
18
|
* import * as HiveSDK from "@johpaz/hive-agents-sdk";
|
|
19
19
|
*/
|
|
20
|
-
export
|
|
21
|
-
export
|
|
22
|
-
export
|
|
23
|
-
export
|
|
24
|
-
export
|
|
25
|
-
export
|
|
26
|
-
export
|
|
27
|
-
export
|
|
28
|
-
export
|
|
20
|
+
export { AgentService, getAgentService, createAgentService, runAgent, runAgentIsolated, rebuildAgentLoop, getAgentLoop, compileContext, buildSystemPromptWithProjects, addMessage, getHistory, getRecentMessages, getMessageCount, getTotalTokens, getMessagesAfter, selectTools, selectSkills, selectPlaybookRules, callLLM, resolveProviderConfig, resolveAgentId, resolveUserId, memoryWriteTool as agentMemoryWriteTool, memoryReadTool as agentMemoryReadTool, memoryListTool as agentMemoryListTool, memorySearchTool as agentMemorySearchTool, memoryDeleteTool as agentMemoryDeleteTool, agentCreateTool, agentFindTool, agentArchiveTool, taskDelegateTool, taskDelegateCodeTool, taskStatusTool, busPublishTool, busReadTool, projectUpdatesTool, createAgentTools, } from "./agents/index";
|
|
21
|
+
export type { AgentServiceConfig, AgentDBRecord, AgentLoopOptions, StepEvent, StreamChunk, LLMMessage, LLMResponse, LLMCallOptions, LLMToolCall, StoredMessage, } from "./agents/index";
|
|
22
|
+
export { createAllTools, createToolsByCategory, fsEditTool, fsReadTool, fsWriteTool, fsDeleteTool, fsListTool, fsGlobTool, fsExistsTool, webSearchTool, webFetchTool, browserNavigateTool, browserScreenshotTool, browserClickTool, browserTypeTool, projectCreateTool, projectListTool, projectUpdateTool, projectDoneTool, projectFailTool, taskCreateTool, taskUpdateTool, taskEvaluateTool, cronAddTool, cronListTool, cronEditTool, cronRemoveTool, initCronScheduler, resolveBestChannel, cliExecTool, canvasRenderTool, canvasAskTool, canvasConfirmTool, canvasShowCardTool, canvasShowProgressTool, canvasShowListTool, canvasClearTool, codebridgeLaunchTool, codebridgeStatusTool, codebridgeCancelTool, codebridgeFeedbackTool, voiceTranscribeTool, voiceSpeakTool, searchKnowledgeTool, notifyTool, saveNoteTool, reportProgressTool, } from "./tools/index";
|
|
23
|
+
export type { Tool, ToolResult } from "./tools/index";
|
|
24
|
+
export { SkillLoader, createSkillLoader } from "./skills/index";
|
|
25
|
+
export type { SkillsConfig, Config, SkillStep, OutputFormat, SkillExample, SkillMetadata, Skill, } from "./skills/index";
|
|
26
|
+
export { MCPClientManager, logger } from "./mcp/index";
|
|
27
|
+
export type { MCPTool, MCPResource, MCPPrompt, MCPConfig, MCPServerConfig, } from "./mcp/index";
|
|
28
|
+
export { ChannelManager, TelegramChannel, DiscordChannel, WhatsAppChannel, SlackChannel, WebChatChannel, } from "./channels/index";
|
|
29
|
+
export type { OutboundMessage, IncomingMessage, ChannelConfig, IChannel, MessageHandler, TelegramConfig, DiscordConfig, WhatsAppConfig, WhatsAppConnectionState, SlackConfig, SlackConnectionState, WebChatConfig, } from "./channels/index";
|
|
30
|
+
export { scheduleCreateTool, scheduleListTool, schedulePauseTool, scheduleResumeTool, scheduleDeleteTool, scheduleTriggerTool, scheduleHistoryTool, createScheduleTools, setSchedulerInstance, createCronTools, } from "./cron/index";
|
|
31
|
+
export { getAllEthics, activateEthics } from "./ethics/index";
|
|
32
|
+
export { getDb, initializeDatabase, getDbPathLazy, dbService, seedAllData, seedToolsAndSkills, getAllElements, getActiveElements, encrypt, decrypt, encryptApiKey, decryptApiKey, encryptConfig, decryptConfig, hashPassword, verifyPassword, maskApiKey, getAllProviders, getAllModels, getAllCodeBridge, getAllSkills, getAllDbTools, getAllMcpServers, getAllChannels, getActiveTools, getUserAgents, getSingleUserId, getCoordinatorAgentId, getDefaultAgentId, getAgentConfig, } from "./database/index";
|
|
33
|
+
export type { SCHEMA, PROJECTS_SCHEMA, CONTEXT_ENGINE_SCHEMA, } from "./database/index";
|
|
34
|
+
export type { AgentDBRecord as AgentDBRecordType, AgentServiceConfig as AgentServiceConfigType, AgentLoopOptions as AgentLoopOptionsType, StepEvent as StepEventType, StreamChunk as StreamChunkType, LLMMessage as LLMMessageType, LLMResponse as LLMResponseType, LLMCallOptions as LLMCallOptionsType, LLMToolCall as LLMToolCallType, OutboundMessage as OutboundMessageType, IncomingMessage as IncomingMessageType, ChannelConfig as ChannelConfigType, IChannel as IChannelType, MCPTool as MCPToolType, MCPResource as MCPResourceType, MCPPrompt as MCPPromptType, MCPConfig as MCPConfigType, MCPServerConfig as MCPServerConfigType, Skill as SkillType, SkillMetadata as SkillMetadataType, SkillStep as SkillStepType, SkillExample as SkillExampleType, OutputFormat as OutputFormatType, SkillsConfig as SkillsConfigType, StoredMessage as StoredMessageType, } from "./types/index";
|
|
29
35
|
export declare const SDK_VERSION = "1.0.0";
|
package/dist/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/agents/index.ts
|
|
3
|
-
import { AgentService, getAgentService, createAgentService } from "@johpaz/hive-agents/agent/service";
|
|
4
|
-
import { runAgent, runAgentIsolated, rebuildAgentLoop, getAgentLoop } from "@johpaz/hive-agents/agent/agent-loop";
|
|
5
|
-
import { compileContext } from "@johpaz/hive-agents/agent/context-compiler";
|
|
6
|
-
import { buildSystemPromptWithProjects } from "@johpaz/hive-agents/agent/prompt-builder";
|
|
7
|
-
import { addMessage, getHistory, getRecentMessages, getMessageCount, getTotalTokens, getMessagesAfter } from "@johpaz/hive-agents/agent/conversation-store";
|
|
8
|
-
import { selectTools } from "@johpaz/hive-agents/agent/tool-selector";
|
|
9
|
-
import { selectSkills } from "@johpaz/hive-agents/agent/skill-selector";
|
|
10
|
-
import { selectPlaybookRules } from "@johpaz/hive-agents/agent/playbook-selector";
|
|
11
|
-
import { callLLM, resolveProviderConfig } from "@johpaz/hive-agents/agent/llm-client";
|
|
12
|
-
import { resolveAgentId, resolveUserId } from "@johpaz/hive-agents/storage/onboarding";
|
|
3
|
+
import { AgentService, getAgentService, createAgentService } from "@johpaz/hive-agents-core/agent/service";
|
|
4
|
+
import { runAgent, runAgentIsolated, rebuildAgentLoop, getAgentLoop } from "@johpaz/hive-agents-core/agent/agent-loop";
|
|
5
|
+
import { compileContext } from "@johpaz/hive-agents-core/agent/context-compiler";
|
|
6
|
+
import { buildSystemPromptWithProjects } from "@johpaz/hive-agents-core/agent/prompt-builder";
|
|
7
|
+
import { addMessage, getHistory, getRecentMessages, getMessageCount, getTotalTokens, getMessagesAfter } from "@johpaz/hive-agents-core/agent/conversation-store";
|
|
8
|
+
import { selectTools } from "@johpaz/hive-agents-core/agent/tool-selector";
|
|
9
|
+
import { selectSkills } from "@johpaz/hive-agents-core/agent/skill-selector";
|
|
10
|
+
import { selectPlaybookRules } from "@johpaz/hive-agents-core/agent/playbook-selector";
|
|
11
|
+
import { callLLM, resolveProviderConfig } from "@johpaz/hive-agents-core/agent/llm-client";
|
|
12
|
+
import { resolveAgentId, resolveUserId } from "@johpaz/hive-agents-core/storage/onboarding";
|
|
13
13
|
import {
|
|
14
14
|
memoryWriteTool,
|
|
15
15
|
memoryReadTool,
|
|
@@ -26,13 +26,13 @@ import {
|
|
|
26
26
|
busReadTool,
|
|
27
27
|
projectUpdatesTool,
|
|
28
28
|
createTools
|
|
29
|
-
} from "@johpaz/hive-agents/tools/agents
|
|
29
|
+
} from "@johpaz/hive-agents-core/tools/agents";
|
|
30
30
|
|
|
31
31
|
// src/tools/index.ts
|
|
32
32
|
import {
|
|
33
33
|
createAllTools,
|
|
34
34
|
createToolsByCategory
|
|
35
|
-
} from "@johpaz/hive-agents/tools
|
|
35
|
+
} from "@johpaz/hive-agents-core/tools";
|
|
36
36
|
import {
|
|
37
37
|
fsEditTool,
|
|
38
38
|
fsReadTool,
|
|
@@ -41,7 +41,7 @@ import {
|
|
|
41
41
|
fsListTool,
|
|
42
42
|
fsGlobTool,
|
|
43
43
|
fsExistsTool
|
|
44
|
-
} from "@johpaz/hive-agents/tools/filesystem
|
|
44
|
+
} from "@johpaz/hive-agents-core/tools/filesystem";
|
|
45
45
|
import {
|
|
46
46
|
webSearchTool,
|
|
47
47
|
webFetchTool,
|
|
@@ -49,7 +49,7 @@ import {
|
|
|
49
49
|
browserScreenshotTool,
|
|
50
50
|
browserClickTool,
|
|
51
51
|
browserTypeTool
|
|
52
|
-
} from "@johpaz/hive-agents/tools/web
|
|
52
|
+
} from "@johpaz/hive-agents-core/tools/web";
|
|
53
53
|
import {
|
|
54
54
|
projectCreateTool,
|
|
55
55
|
projectListTool,
|
|
@@ -59,7 +59,7 @@ import {
|
|
|
59
59
|
taskCreateTool,
|
|
60
60
|
taskUpdateTool,
|
|
61
61
|
taskEvaluateTool
|
|
62
|
-
} from "@johpaz/hive-agents/tools/projects
|
|
62
|
+
} from "@johpaz/hive-agents-core/tools/projects";
|
|
63
63
|
import {
|
|
64
64
|
cronAddTool,
|
|
65
65
|
cronListTool,
|
|
@@ -67,8 +67,8 @@ import {
|
|
|
67
67
|
cronRemoveTool,
|
|
68
68
|
initCronScheduler,
|
|
69
69
|
resolveBestChannel
|
|
70
|
-
} from "@johpaz/hive-agents/tools/cron
|
|
71
|
-
import { cliExecTool } from "@johpaz/hive-agents/tools/cli
|
|
70
|
+
} from "@johpaz/hive-agents-core/tools/cron";
|
|
71
|
+
import { cliExecTool } from "@johpaz/hive-agents-core/tools/cli";
|
|
72
72
|
import {
|
|
73
73
|
memoryWriteTool as memoryWriteTool2,
|
|
74
74
|
memoryReadTool as memoryReadTool2,
|
|
@@ -84,7 +84,7 @@ import {
|
|
|
84
84
|
busPublishTool as busPublishTool2,
|
|
85
85
|
busReadTool as busReadTool2,
|
|
86
86
|
projectUpdatesTool as projectUpdatesTool2
|
|
87
|
-
} from "@johpaz/hive-agents/tools/agents
|
|
87
|
+
} from "@johpaz/hive-agents-core/tools/agents";
|
|
88
88
|
import {
|
|
89
89
|
canvasRenderTool,
|
|
90
90
|
canvasAskTool,
|
|
@@ -93,41 +93,41 @@ import {
|
|
|
93
93
|
canvasShowProgressTool,
|
|
94
94
|
canvasShowListTool,
|
|
95
95
|
canvasClearTool
|
|
96
|
-
} from "@johpaz/hive-agents/tools/canvas
|
|
96
|
+
} from "@johpaz/hive-agents-core/tools/canvas";
|
|
97
97
|
import {
|
|
98
98
|
codebridgeLaunchTool,
|
|
99
99
|
codebridgeStatusTool,
|
|
100
100
|
codebridgeCancelTool,
|
|
101
101
|
codebridgeFeedbackTool
|
|
102
|
-
} from "@johpaz/hive-agents/tools/codebridge
|
|
102
|
+
} from "@johpaz/hive-agents-core/tools/codebridge";
|
|
103
103
|
import {
|
|
104
104
|
voiceTranscribeTool,
|
|
105
105
|
voiceSpeakTool
|
|
106
|
-
} from "@johpaz/hive-agents/tools/voice
|
|
106
|
+
} from "@johpaz/hive-agents-core/tools/voice";
|
|
107
107
|
import {
|
|
108
108
|
searchKnowledgeTool,
|
|
109
109
|
notifyTool,
|
|
110
110
|
saveNoteTool,
|
|
111
111
|
reportProgressTool
|
|
112
|
-
} from "@johpaz/hive-agents/tools/core
|
|
112
|
+
} from "@johpaz/hive-agents-core/tools/core";
|
|
113
113
|
|
|
114
114
|
// src/skills/index.ts
|
|
115
115
|
import {
|
|
116
116
|
SkillLoader,
|
|
117
117
|
createSkillLoader
|
|
118
|
-
} from "@johpaz/hive-agents
|
|
118
|
+
} from "@johpaz/hive-agents-skills/loader";
|
|
119
119
|
|
|
120
120
|
// src/mcp/index.ts
|
|
121
|
-
import { MCPClientManager } from "@johpaz/hive-agents
|
|
122
|
-
import { logger } from "@johpaz/hive-agents
|
|
121
|
+
import { MCPClientManager } from "@johpaz/hive-agents-mcp/manager";
|
|
122
|
+
import { logger } from "@johpaz/hive-agents-mcp/logger";
|
|
123
123
|
|
|
124
124
|
// src/channels/index.ts
|
|
125
|
-
import { ChannelManager } from "@johpaz/hive-agents/channels/manager";
|
|
126
|
-
import { TelegramChannel } from "@johpaz/hive-agents/channels/telegram";
|
|
127
|
-
import { DiscordChannel } from "@johpaz/hive-agents/channels/discord";
|
|
128
|
-
import { WhatsAppChannel } from "@johpaz/hive-agents/channels/whatsapp";
|
|
129
|
-
import { SlackChannel } from "@johpaz/hive-agents/channels/slack";
|
|
130
|
-
import { WebChatChannel } from "@johpaz/hive-agents/channels/webchat";
|
|
125
|
+
import { ChannelManager } from "@johpaz/hive-agents-core/channels/manager";
|
|
126
|
+
import { TelegramChannel } from "@johpaz/hive-agents-core/channels/telegram";
|
|
127
|
+
import { DiscordChannel } from "@johpaz/hive-agents-core/channels/discord";
|
|
128
|
+
import { WhatsAppChannel } from "@johpaz/hive-agents-core/channels/whatsapp";
|
|
129
|
+
import { SlackChannel } from "@johpaz/hive-agents-core/channels/slack";
|
|
130
|
+
import { WebChatChannel } from "@johpaz/hive-agents-core/channels/webchat";
|
|
131
131
|
|
|
132
132
|
// src/cron/index.ts
|
|
133
133
|
import {
|
|
@@ -140,7 +140,7 @@ import {
|
|
|
140
140
|
scheduleHistoryTool,
|
|
141
141
|
createTools as createTools2,
|
|
142
142
|
setSchedulerInstance
|
|
143
|
-
} from "@johpaz/hive-agents/tools/schedule";
|
|
143
|
+
} from "@johpaz/hive-agents-core/tools/schedule";
|
|
144
144
|
import {
|
|
145
145
|
cronAddTool as cronAddTool2,
|
|
146
146
|
cronListTool as cronListTool2,
|
|
@@ -149,19 +149,19 @@ import {
|
|
|
149
149
|
createTools as createTools3,
|
|
150
150
|
initCronScheduler as initCronScheduler2,
|
|
151
151
|
resolveBestChannel as resolveBestChannel2
|
|
152
|
-
} from "@johpaz/hive-agents/tools/cron";
|
|
152
|
+
} from "@johpaz/hive-agents-core/tools/cron";
|
|
153
153
|
|
|
154
154
|
// src/ethics/index.ts
|
|
155
155
|
import {
|
|
156
156
|
getAllEthics,
|
|
157
157
|
activateEthics
|
|
158
|
-
} from "@johpaz/hive-agents/storage/onboarding";
|
|
158
|
+
} from "@johpaz/hive-agents-core/storage/onboarding";
|
|
159
159
|
|
|
160
160
|
// src/database/index.ts
|
|
161
|
-
import { getDb, initializeDatabase, getDbPathLazy, dbService } from "@johpaz/hive-agents/storage/sqlite";
|
|
162
|
-
import { SCHEMA, PROJECTS_SCHEMA, CONTEXT_ENGINE_SCHEMA } from "@johpaz/hive-agents/storage/schema";
|
|
163
|
-
import { seedAllData, seedToolsAndSkills, getAllElements, getActiveElements } from "@johpaz/hive-agents/storage/seed";
|
|
164
|
-
import { encrypt, decrypt, encryptApiKey, decryptApiKey, encryptConfig, decryptConfig, hashPassword, verifyPassword, maskApiKey } from "@johpaz/hive-agents/storage/crypto";
|
|
161
|
+
import { getDb, initializeDatabase, getDbPathLazy, dbService } from "@johpaz/hive-agents-core/storage/sqlite";
|
|
162
|
+
import { SCHEMA, PROJECTS_SCHEMA, CONTEXT_ENGINE_SCHEMA } from "@johpaz/hive-agents-core/storage/schema";
|
|
163
|
+
import { seedAllData, seedToolsAndSkills, getAllElements, getActiveElements } from "@johpaz/hive-agents-core/storage/seed";
|
|
164
|
+
import { encrypt, decrypt, encryptApiKey, decryptApiKey, encryptConfig, decryptConfig, hashPassword, verifyPassword, maskApiKey } from "@johpaz/hive-agents-core/storage/crypto";
|
|
165
165
|
import {
|
|
166
166
|
getAllProviders,
|
|
167
167
|
getAllModels,
|
|
@@ -179,7 +179,8 @@ import {
|
|
|
179
179
|
getCoordinatorAgentId,
|
|
180
180
|
getDefaultAgentId,
|
|
181
181
|
getAgentConfig
|
|
182
|
-
} from "@johpaz/hive-agents/storage/onboarding";
|
|
182
|
+
} from "@johpaz/hive-agents-core/storage/onboarding";
|
|
183
|
+
|
|
183
184
|
// src/index.ts
|
|
184
185
|
var SDK_VERSION = "1.0.0";
|
|
185
186
|
export {
|
|
@@ -189,7 +190,10 @@ export {
|
|
|
189
190
|
voiceSpeakTool,
|
|
190
191
|
verifyPassword,
|
|
191
192
|
taskUpdateTool,
|
|
193
|
+
taskStatusTool,
|
|
192
194
|
taskEvaluateTool,
|
|
195
|
+
taskDelegateTool,
|
|
196
|
+
taskDelegateCodeTool,
|
|
193
197
|
taskCreateTool,
|
|
194
198
|
setSchedulerInstance,
|
|
195
199
|
selectTools,
|
|
@@ -208,9 +212,13 @@ export {
|
|
|
208
212
|
saveNoteTool,
|
|
209
213
|
runAgentIsolated,
|
|
210
214
|
runAgent,
|
|
215
|
+
resolveUserId,
|
|
211
216
|
resolveProviderConfig,
|
|
217
|
+
resolveBestChannel,
|
|
218
|
+
resolveAgentId,
|
|
212
219
|
reportProgressTool,
|
|
213
220
|
rebuildAgentLoop,
|
|
221
|
+
projectUpdatesTool,
|
|
214
222
|
projectUpdateTool,
|
|
215
223
|
projectListTool,
|
|
216
224
|
projectFailTool,
|
|
@@ -220,6 +228,7 @@ export {
|
|
|
220
228
|
maskApiKey,
|
|
221
229
|
logger,
|
|
222
230
|
initializeDatabase,
|
|
231
|
+
initCronScheduler,
|
|
223
232
|
hashPassword,
|
|
224
233
|
getUserAgents,
|
|
225
234
|
getTotalTokens,
|
|
@@ -236,6 +245,7 @@ export {
|
|
|
236
245
|
getAllProviders,
|
|
237
246
|
getAllModels,
|
|
238
247
|
getAllMcpServers,
|
|
248
|
+
getAllEthics,
|
|
239
249
|
getAllElements,
|
|
240
250
|
getAllDbTools,
|
|
241
251
|
getAllCodeBridge,
|
|
@@ -259,6 +269,10 @@ export {
|
|
|
259
269
|
decryptApiKey,
|
|
260
270
|
decrypt,
|
|
261
271
|
dbService,
|
|
272
|
+
cronRemoveTool,
|
|
273
|
+
cronListTool,
|
|
274
|
+
cronEditTool,
|
|
275
|
+
cronAddTool,
|
|
262
276
|
createToolsByCategory,
|
|
263
277
|
createSkillLoader,
|
|
264
278
|
createTools2 as createScheduleTools,
|
|
@@ -280,11 +294,21 @@ export {
|
|
|
280
294
|
canvasClearTool,
|
|
281
295
|
canvasAskTool,
|
|
282
296
|
callLLM,
|
|
297
|
+
busReadTool,
|
|
298
|
+
busPublishTool,
|
|
283
299
|
buildSystemPromptWithProjects,
|
|
284
300
|
browserTypeTool,
|
|
285
301
|
browserScreenshotTool,
|
|
286
302
|
browserNavigateTool,
|
|
287
303
|
browserClickTool,
|
|
304
|
+
memoryWriteTool as agentMemoryWriteTool,
|
|
305
|
+
memorySearchTool as agentMemorySearchTool,
|
|
306
|
+
memoryReadTool as agentMemoryReadTool,
|
|
307
|
+
memoryListTool as agentMemoryListTool,
|
|
308
|
+
memoryDeleteTool as agentMemoryDeleteTool,
|
|
309
|
+
agentFindTool,
|
|
310
|
+
agentCreateTool,
|
|
311
|
+
agentArchiveTool,
|
|
288
312
|
addMessage,
|
|
289
313
|
activateEthics,
|
|
290
314
|
WhatsAppChannel,
|
|
@@ -293,11 +317,8 @@ export {
|
|
|
293
317
|
SlackChannel,
|
|
294
318
|
SkillLoader,
|
|
295
319
|
SDK_VERSION,
|
|
296
|
-
SCHEMA,
|
|
297
|
-
PROJECTS_SCHEMA,
|
|
298
320
|
MCPClientManager,
|
|
299
321
|
DiscordChannel,
|
|
300
322
|
ChannelManager,
|
|
301
|
-
CONTEXT_ENGINE_SCHEMA,
|
|
302
323
|
AgentService
|
|
303
324
|
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Hive SDK - MCP Module
|
|
3
|
+
*
|
|
4
|
+
* Exposes the MCP adapter and server connection functions.
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
* import { MCPClientManager } from "@johpaz/hive-agents-sdk/mcp";
|
|
8
|
+
*
|
|
9
|
+
* // Connect to an MCP server
|
|
10
|
+
* const manager = new MCPClientManager({ servers: {} });
|
|
11
|
+
*/
|
|
12
|
+
export { MCPClientManager, type MCPTool, type MCPResource, type MCPPrompt } from "@johpaz/hive-agents-mcp/manager";
|
|
13
|
+
export type { MCPConfig, MCPServerConfig } from "@johpaz/hive-agents-mcp/config";
|
|
14
|
+
export { logger } from "@johpaz/hive-agents-mcp/logger";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Hive SDK - Skills Module
|
|
3
|
+
*
|
|
4
|
+
* Exposes the skill registry, base skills, and skill loader.
|
|
5
|
+
*
|
|
6
|
+
* @example
|
|
7
|
+
* import { SkillLoader, createSkillLoader } from "@johpaz/hive-agents-sdk/skills";
|
|
8
|
+
*
|
|
9
|
+
* // Create a skill loader
|
|
10
|
+
* const loader = createSkillLoader({ workspacePath: "/path/to/workspace" });
|
|
11
|
+
*/
|
|
12
|
+
export { SkillLoader, createSkillLoader, type SkillsConfig, type Config, type SkillStep, type OutputFormat, type SkillExample, type SkillMetadata, type Skill, } from "@johpaz/hive-agents-skills/loader";
|
package/dist/tools/index.d.ts
CHANGED
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
* // Or by category
|
|
13
13
|
* const fsTools = createToolsByCategory("filesystem", config);
|
|
14
14
|
*/
|
|
15
|
-
export { createAllTools, createToolsByCategory, type Tool, type ToolResult, } from "@johpaz/hive-agents/tools
|
|
16
|
-
export { fsEditTool, fsReadTool, fsWriteTool, fsDeleteTool, fsListTool, fsGlobTool, fsExistsTool, } from "@johpaz/hive-agents/tools/filesystem
|
|
17
|
-
export { webSearchTool, webFetchTool, browserNavigateTool, browserScreenshotTool, browserClickTool, browserTypeTool, } from "@johpaz/hive-agents/tools/web
|
|
18
|
-
export { projectCreateTool, projectListTool, projectUpdateTool, projectDoneTool, projectFailTool, taskCreateTool, taskUpdateTool, taskEvaluateTool, } from "@johpaz/hive-agents/tools/projects
|
|
19
|
-
export { cronAddTool, cronListTool, cronEditTool, cronRemoveTool, initCronScheduler, resolveBestChannel, } from "@johpaz/hive-agents/tools/cron
|
|
20
|
-
export { cliExecTool } from "@johpaz/hive-agents/tools/cli
|
|
21
|
-
export { memoryWriteTool, memoryReadTool, memoryListTool, memorySearchTool, memoryDeleteTool, agentCreateTool, agentFindTool, agentArchiveTool, taskDelegateTool, taskDelegateCodeTool, taskStatusTool, busPublishTool, busReadTool, projectUpdatesTool, } from "@johpaz/hive-agents/tools/agents
|
|
22
|
-
export { canvasRenderTool, canvasAskTool, canvasConfirmTool, canvasShowCardTool, canvasShowProgressTool, canvasShowListTool, canvasClearTool, } from "@johpaz/hive-agents/tools/canvas
|
|
23
|
-
export { codebridgeLaunchTool, codebridgeStatusTool, codebridgeCancelTool, codebridgeFeedbackTool, } from "@johpaz/hive-agents/tools/codebridge
|
|
24
|
-
export { voiceTranscribeTool, voiceSpeakTool, } from "@johpaz/hive-agents/tools/voice
|
|
25
|
-
export { searchKnowledgeTool, notifyTool, saveNoteTool, reportProgressTool, } from "@johpaz/hive-agents/tools/core
|
|
15
|
+
export { createAllTools, createToolsByCategory, type Tool, type ToolResult, } from "@johpaz/hive-agents-core/tools";
|
|
16
|
+
export { fsEditTool, fsReadTool, fsWriteTool, fsDeleteTool, fsListTool, fsGlobTool, fsExistsTool, } from "@johpaz/hive-agents-core/tools/filesystem";
|
|
17
|
+
export { webSearchTool, webFetchTool, browserNavigateTool, browserScreenshotTool, browserClickTool, browserTypeTool, } from "@johpaz/hive-agents-core/tools/web";
|
|
18
|
+
export { projectCreateTool, projectListTool, projectUpdateTool, projectDoneTool, projectFailTool, taskCreateTool, taskUpdateTool, taskEvaluateTool, } from "@johpaz/hive-agents-core/tools/projects";
|
|
19
|
+
export { cronAddTool, cronListTool, cronEditTool, cronRemoveTool, initCronScheduler, resolveBestChannel, } from "@johpaz/hive-agents-core/tools/cron";
|
|
20
|
+
export { cliExecTool } from "@johpaz/hive-agents-core/tools/cli";
|
|
21
|
+
export { memoryWriteTool, memoryReadTool, memoryListTool, memorySearchTool, memoryDeleteTool, agentCreateTool, agentFindTool, agentArchiveTool, taskDelegateTool, taskDelegateCodeTool, taskStatusTool, busPublishTool, busReadTool, projectUpdatesTool, } from "@johpaz/hive-agents-core/tools/agents";
|
|
22
|
+
export { canvasRenderTool, canvasAskTool, canvasConfirmTool, canvasShowCardTool, canvasShowProgressTool, canvasShowListTool, canvasClearTool, } from "@johpaz/hive-agents-core/tools/canvas";
|
|
23
|
+
export { codebridgeLaunchTool, codebridgeStatusTool, codebridgeCancelTool, codebridgeFeedbackTool, } from "@johpaz/hive-agents-core/tools/codebridge";
|
|
24
|
+
export { voiceTranscribeTool, voiceSpeakTool, } from "@johpaz/hive-agents-core/tools/voice";
|
|
25
|
+
export { searchKnowledgeTool, notifyTool, saveNoteTool, reportProgressTool, } from "@johpaz/hive-agents-core/tools/core";
|