Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/web/content-collections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ const shortcuts = defineCollection({
description: z.string(),
category: z.string(),
prompt: z.string(),
targets: z.array(z.string()).optional(),
}),
transform: async (document, context) => {
const mdx = await compileMDX(context, document, {
Expand Down
5 changes: 5 additions & 0 deletions apps/web/content/shortcuts/action-items.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Extract Action Items"
description: "Pull out all action items, tasks, and commitments from the meeting"
category: "Productivity"
prompt: "You are a meticulous executive assistant. Review the meeting transcript and extract all action items, tasks, and commitments. For each item, identify: 1) The specific task or action 2) Who is responsible (if mentioned) 3) The deadline or timeframe (if mentioned) 4) Any dependencies or blockers. Format the output as a clear, prioritized list that can be easily copied into a task management system. Flag any items that seem urgent or time-sensitive."
targets:
- "Team Meetings"
- "Project Kickoffs"
- "Sprint Planning"
- "1:1s"
---

## When to use
Expand Down
5 changes: 5 additions & 0 deletions apps/web/content/shortcuts/customer-concerns.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Customer Concerns Analysis"
description: "Identify and analyze customer concerns, objections, and pain points from the conversation"
category: "Customer Success"
prompt: "You are an expert customer success manager. Analyze this conversation and identify all customer concerns, objections, and pain points. For each concern: 1) Clearly state the concern 2) Assess its severity (high/medium/low) 3) Identify the root cause if apparent 4) Note how it was addressed in the conversation (if at all) 5) Suggest follow-up actions to resolve or mitigate the concern. Prioritize concerns by their potential impact on the customer relationship or deal."
targets:
- "Customer Calls"
- "Support Conversations"
- "Sales Meetings"
- "QBRs"
---

## When to use
Expand Down
5 changes: 5 additions & 0 deletions apps/web/content/shortcuts/decision-summary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Decision Summary"
description: "Extract and document all decisions made during the meeting"
category: "Productivity"
prompt: "You are a skilled meeting facilitator and documenter. Review the meeting transcript and identify all decisions that were made. For each decision: 1) State the decision clearly and concisely 2) Note who made or approved the decision 3) Capture the reasoning or context behind the decision 4) Identify any conditions, caveats, or dependencies 5) Note any dissenting opinions or concerns raised. Format the output as a clear decision log that can be shared with stakeholders or referenced in the future."
targets:
- "Strategy Meetings"
- "Planning Sessions"
- "Board Meetings"
- "Leadership Syncs"
---

## When to use
Expand Down
5 changes: 5 additions & 0 deletions apps/web/content/shortcuts/follow-up-email.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Draft Follow-up Email"
description: "Generate a professional follow-up email based on the meeting discussion"
category: "Communication"
prompt: "You are an expert business communicator. Based on the meeting transcript, draft a professional follow-up email. The email should: 1) Thank participants for their time 2) Summarize the key points discussed 3) Confirm any decisions made 4) List action items with owners and deadlines 5) Propose next steps or a follow-up meeting if appropriate. Keep the tone professional but warm, and make the email concise and scannable. Include a clear subject line suggestion."
targets:
- "Client Meetings"
- "Sales Calls"
- "Team Syncs"
- "Interviews"
---

## When to use
Expand Down
5 changes: 5 additions & 0 deletions apps/web/content/shortcuts/meeting-insights.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Meeting Insights"
description: "Get deep insights and analysis from your meeting conversation"
category: "Analysis"
prompt: "You are a strategic business analyst. Analyze this meeting transcript and provide deep insights. Focus on: 1) Key themes and topics discussed 2) Sentiment and tone of the conversation 3) Areas of agreement and disagreement 4) Underlying concerns or motivations that may not have been explicitly stated 5) Opportunities or risks identified 6) Recommendations for follow-up. Provide your analysis in a structured format that helps the reader quickly understand the dynamics and outcomes of the meeting."
targets:
- "Strategy Meetings"
- "Negotiations"
- "Stakeholder Calls"
- "Executive Reviews"
---

## When to use
Expand Down
5 changes: 5 additions & 0 deletions apps/web/content/shortcuts/sales-feedback.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Sales Call Feedback"
description: "Analyze your sales call and get actionable feedback on what you could have done better"
category: "Sales"
prompt: "You are an expert sales coach. Analyze the transcript of this sales call and provide constructive feedback. Focus on: 1) Discovery questions - were the right questions asked to understand the prospect's needs? 2) Objection handling - how well were concerns addressed? 3) Value proposition - was the value clearly communicated? 4) Next steps - were clear next steps established? 5) Rapport building - how was the relationship developed? Provide specific examples from the call and actionable suggestions for improvement."
targets:
- "Discovery Calls"
- "Demo Calls"
- "Negotiation Calls"
- "Closing Calls"
---

## When to use
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ export function Footer() {
</li>
<li>
<Link
to="/templates"
to="/gallery"
className="text-sm text-neutral-600 hover:text-stone-600 transition-colors"
>
Templates
Prompt Gallery
</Link>
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ const featuresList = [
{ to: "/product/ai-notetaking", label: "AI Notetaking" },
{ to: "/product/ai-assistant", label: "AI Assistant" },
{ to: "/product/mini-apps", label: "Mini Apps" },
{ to: "/gallery", label: "Templates & Shortcuts" },
{ to: "/product/workflows", label: "Workflows", badge: "Coming Soon" },
{ to: "/templates", label: "Templates" },
];

export function Header() {
Expand Down
Loading