@tpmjs/tools-executive-brief
Format content into an executive summary style with a concise overview and key bullet points. Ideal for distilling long documents into decision-maker friendly summaries.
Test @tpmjs/tools-executive-brief (executiveBriefTool) with AI-powered execution
0/2000 characters
Install this tool and use it with the AI SDK
npm install @tpmjs/tools-executive-briefpnpm add @tpmjs/tools-executive-briefyarn add @tpmjs/tools-executive-briefbun add @tpmjs/tools-executive-briefdeno add npm:@tpmjs/tools-executive-briefimport { executiveBriefTool } from '@tpmjs/tools-executive-brief';import { generateText } from 'ai';
import { openai } from '@ai-sdk/openai';
import { executiveBriefTool } from '@tpmjs/tools-executive-brief';
const result = await generateText({
model: openai('gpt-4o'),
tools: { executiveBriefTool },
prompt: 'Your prompt here...',
});
console.log(result.text);Available configuration options
contentstringThe content to format into an executive brief
maxBulletsnumberMaximum number of bullet points to include (default: 5)
Schema extracted: 1/1/2026, 8:17:52 AM
Format content into executive summary style with key bullets and concise overview.
npm install @tpmjs/tools-executive-brief
import { executiveBriefTool } from '@tpmjs/tools-executive-brief'; const result = await executiveBriefTool.execute({ content: `Our Q4 performance exceeded expectations with revenue growing 25% year-over-year. The product launch was successful, acquiring 10,000 new customers in the first month. Customer satisfaction scores improved to 4.5/5. We expanded to three new markets. The team grew from 50 to 75 employees. Infrastructure costs were reduced by 15%.`, maxBullets: 5, }); console.log(result.brief); // # Executive Brief // // ## Overview // Our Q4 performance exceeded expectations with revenue growing 25% year-over-year. // The product launch was successful, acquiring 10,000 new customers in the first month. // Customer satisfaction scores improved to 4.5/5. // // ## Key Points // - Our Q4 performance exceeded expectations with revenue growing 25% year-over-year // - The product launch was successful, acquiring 10,000 new customers in the first month // - Customer satisfaction scores improved to 4.5/5 // - We expanded to three new markets // - Infrastructure costs were reduced by 15% console.log(result.bulletCount); // 5 console.log(result.wordCount); // ~75
executiveBriefTool.execute(input)Formats content into an executive brief with overview and key bullet points.
content (string, required): The content to format into an executive briefmaxBullets (number, optional): Maximum number of bullet points (default: 5)Returns a Promise<ExecutiveBrief> with:
brief (string): The formatted brief in markdownbulletCount (number): Number of bullet points includedwordCount (number): Total word count of the briefMIT
Downloads/month
37
Quality Score