UNPKG

@dollhousemcp/mcp-server

Version:

DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.

10 lines 877 B
/** * Gatekeeper Policies Module * * Exports all policy-related functions and types for the Gatekeeper Policy Engine. */ export { OPERATION_POLICIES, OPERATION_POLICY_OVERRIDES, getEndpointDefaultLevel, getOperationPolicy, getDefaultPermissionLevel, canOperationBeElevated, getOperationsAtLevel, getAutoApprovedOperations, getConfirmationRequiredOperations, } from './OperationPolicies.js'; export { resolveElementPolicy, createDecisionFromPolicy, parseElementPolicy, sanitizeGatekeeperPolicy, type ElementMetadataWithPolicy, type ActiveElement, type ElementPolicyResult, } from './ElementPolicies.js'; export { translateToolConfigToPolicy } from './AgentToolPolicyTranslator.js'; export { classifyTool, evaluateCliToolPolicy, type ToolClassificationResult, type CliToolPolicyResult, type ToolRiskLevel, } from './ToolClassification.js'; //# sourceMappingURL=index.d.ts.map