UNPKG

@r-huijts/ethics-vibe-check

Version:

🛡️ Make AI interrupt itself and challenge your thinking. Turns Claude into a philosophical sparring partner who actively contradicts comfortable conversations and challenges confirmation bias.

16 lines (15 loc) 444 B
export interface EthicsGuideInput { scenario: string; domain?: string; stakeholders?: string[]; sessionId?: string; } export interface EthicsGuideOutput { guidance: string; principles: string[]; considerations: string[]; actionItems: string[]; criticalQuestions?: string[]; userReflectionPrompts?: string[]; } export declare function ethicsGuideTool(input: EthicsGuideInput): Promise<EthicsGuideOutput>;