Some checks failed
ci / Validate workspace (push) Successful in 12m32s
landing-page-ci / Validate landing page (push) Successful in 9m41s
landing-page-deploy / Deploy landing page (push) Failing after 5m23s
github-metrics / Generate repository metrics SVG (push) Failing after 2m6s
refresh-contributors-wall / Refresh contributors wall cache bust (push) Failing after 12s
This repository contains the open-design daemon CLI source code, built and packaged at https://helix-mind.ai/cli/open-design/latest.tgz for use by the HelixMind /design slash command. Licenses: Apache-2.0 (root) + MIT (skills/*)
80 lines
3.4 KiB
TypeScript
80 lines
3.4 KiB
TypeScript
import type { ToolTokenGrant } from '../tool-tokens.js';
|
|
|
|
import { classifyConnectorToolSafety, type ConnectorCatalogDefinition, type ConnectorToolDetail, type ConnectorToolSafety } from '../connectors/catalog.js';
|
|
import { connectorService, ConnectorService, type ConnectorExecuteRequest } from '../connectors/service.js';
|
|
|
|
export interface ConnectorToolContext {
|
|
grant: ToolTokenGrant;
|
|
projectsRoot: string;
|
|
service?: ConnectorService;
|
|
}
|
|
|
|
function approvalRank(approval: ConnectorCatalogDefinition['minimumApproval']): number {
|
|
switch (approval) {
|
|
case 'auto':
|
|
return 0;
|
|
case 'confirm':
|
|
return 1;
|
|
case 'disabled':
|
|
return 2;
|
|
default:
|
|
return 2;
|
|
}
|
|
}
|
|
|
|
function stricterApproval(
|
|
left: ConnectorCatalogDefinition['minimumApproval'] | undefined,
|
|
right: ConnectorCatalogDefinition['minimumApproval'] | undefined,
|
|
): ConnectorCatalogDefinition['minimumApproval'] | undefined {
|
|
if (left === undefined) return right;
|
|
if (right === undefined) return left;
|
|
return approvalRank(left) >= approvalRank(right) ? left : right;
|
|
}
|
|
|
|
function runtimeSafetyForTool(tool: ConnectorCatalogDefinition['tools'][number]): ConnectorToolSafety {
|
|
const classified = classifyConnectorToolSafety(tool);
|
|
if (classified.sideEffect !== 'read' || classified.approval !== 'auto') return classified;
|
|
return tool.safety;
|
|
}
|
|
|
|
function isAgentPreviewListableTool(definition: ConnectorCatalogDefinition, tool: ConnectorToolDetail): boolean {
|
|
if (!definition.allowedToolNames.includes(tool.name)) return false;
|
|
|
|
const catalogTool = definition.tools.find((candidate) => candidate.name === tool.name);
|
|
if (!catalogTool) return false;
|
|
|
|
const runtimeSafety = runtimeSafetyForTool(catalogTool);
|
|
const effectiveApproval = stricterApproval(stricterApproval(definition.minimumApproval, catalogTool.safety.approval), runtimeSafety.approval);
|
|
return runtimeSafety.sideEffect === 'read' && effectiveApproval === 'auto';
|
|
}
|
|
|
|
export async function listConnectorTools(context: ConnectorToolContext): Promise<Awaited<ReturnType<ConnectorService['listConnectors']>>> {
|
|
const service = context.service ?? connectorService;
|
|
const definitions = await service.listDefinitions();
|
|
const entries = await Promise.all(definitions.map(async (definition) => ({ definition, connector: await service.getConnector(definition.id) })));
|
|
return entries
|
|
.filter(({ connector }) => connector.status === 'connected')
|
|
.map(({ definition, connector }) => ({
|
|
...connector,
|
|
tools: connector.tools
|
|
.filter((tool) => isAgentPreviewListableTool(definition, tool))
|
|
.sort((left, right) => {
|
|
const leftReadOnly = left.safety.sideEffect === 'read' && left.safety.approval === 'auto';
|
|
const rightReadOnly = right.safety.sideEffect === 'read' && right.safety.approval === 'auto';
|
|
if (leftReadOnly === rightReadOnly) return 0;
|
|
return leftReadOnly ? -1 : 1;
|
|
}),
|
|
}))
|
|
.filter((connector) => connector.tools.length > 0);
|
|
}
|
|
|
|
export async function executeConnectorTool(request: ConnectorExecuteRequest, context: ConnectorToolContext) {
|
|
const service = context.service ?? connectorService;
|
|
return await service.execute(request, {
|
|
projectsRoot: context.projectsRoot,
|
|
projectId: context.grant.projectId,
|
|
runId: context.grant.runId,
|
|
purpose: 'agent_preview',
|
|
});
|
|
}
|