claudes-office
Version:
CLI tool to initialize Claude's office in your project
30 lines (29 loc) • 781 B
TypeScript
/**
* Prompt templates for meeting generation
*/
import { MeetingType } from '../types/commands';
/**
* Meeting options for prompt generation
*/
export interface MeetingPromptOptions {
/** Title of the meeting */
title: string;
/** Type of meeting */
type: MeetingType;
/** List of participants */
participants: string[];
/** Meeting agenda items */
agenda: string[];
/** Duration in minutes */
duration: number;
/** Meeting date */
date: string;
/** Additional context */
additionalContext?: string;
}
/**
* Get the appropriate prompt for a meeting type
* @param options - Meeting options
* @returns Prompt for the meeting
*/
export declare function getMeetingPrompt(options: MeetingPromptOptions): Promise<string>;