Claude
Analyze a long document or report
Paste a long report and get a structured analysis Claude's context window handles well.
Example output
Core argument: The report argues that distributed warehouse inventory reduces last-mile delivery time by 23%, but the supporting data comes entirely from two pilot markets (Phoenix and Austin) that share unusual suburban density patterns.
Key findings:
- Average delivery time dropped from 3.2 to 2.5 days in pilot markets.
- Cost per fulfillment rose 11% — buried in appendix B, not in the executive summary.
- Customer satisfaction scores improved only in segments ordering over 3 items per order.
Gaps: The model assumes flat fuel costs; current price trends would compress the margin.
Act on: Expand the pilot to a dense urban market before committing to the full rollout budget.
TipClaude can hold 200,000 tokens in one pass, so you can paste the entire document rather than summarizing it yourself first — the analysis is sharper when Claude reads the footnotes, not just the executive summary.
Claude
Rewrite text in your own voice
Give Claude writing samples and have it match your tone.
Example output
Rewrite:
Honestly, the pricing page is doing too much. Every feature we've ever shipped is listed there, which means the one thing the customer actually needs to see — what they get for 49 dollars a month — is buried. We should cut it to three bullets and one number.
Voice notes: Short declarative sentences with a brief aside before the main point; you use em-dashes to hold a thought rather than commas; informal tone that stops just short of casual.
TipThree samples from different contexts (a Slack message, a blog post, a client email) give Claude a wide enough range to separate your actual habits from the conventions of any single format.
Claude
Explain a code snippet
Understand unfamiliar code step by step.
Example output
What it does: This function fetches a list of users from an API and returns only the ones whose accounts are active.
Walk-through:
Section 1 — the async keyword means this function pauses at each await line rather than blocking the entire program. It waits for the network response before continuing.
Section 2 — response.json() converts the raw HTTP response body into a JavaScript object. Without this step, you'd have a stream of bytes, not usable data.
Section 3 — the filter call loops over every user and keeps only those where the "active" property is true.
Common misread: beginners often think await means "wait forever if the server is slow." It does not — if the server takes too long and you have no timeout set, the promise may hang indefinitely.
Side effects: if the API returns an error status, response.json() may still succeed but return an error object — check response.ok before parsing.
TipThe "common misread" instruction is the most useful part: Claude flags the exact conceptual trap that causes bugs rather than just restating what each line does.
ChatGPTGeminiClaude
Write an SEO content brief
Give a writer everything they need to rank: intent, outline, keywords, angle.
Example output
Target keyword: project management software for agencies
Intent: Commercial investigation (users comparing options before buying)
Audience: Agency ops managers, 30–200 staff; know PM tools, deciding to switch
Related terms to include: agency workflow software, client project tracking, resource allocation tool, retainer management, agency time tracking
Word count: 1,800–2,400
H1: The Best Project Management Software for Agencies in 2025
H2s: What makes agency PM different | How we tested | Top 6 tools | Feature comparison | Who should pick what | Bottom line
Gap in top result: Lacks pricing tiers and doesn't address retainer-based billing.
Angle: Focus on retainer + billable-hour workflow — the agency-specific pain point competitors skim.
Internal link: Link to /agency-time-tracking-guide at first mention of "time tracking."
TipPasting one competing article's URL and asking the model to find its gaps produces sharper angle ideas than asking it to invent them from scratch.
ChatGPTGeminiClaude
Cold outreach email to a new lead
Write a short, personalized cold email that earns a reply instead of a delete.
Example output
Subject A: a quick idea for [Company]'s new office
Subject B: [Company] + faster ramp for new reps?
Hi [Name],
Saw [Company] just opened a second support office — congrats. Scaling support usually means new hires fielding the same 20 questions for weeks.
We give support teams an answer layer trained on your own docs, so new reps ramp in days instead of months. [Similar company] cut their ramp time by about a third.
Worth a 15-minute call next week to see if it'd fit your new office? Happy to work around your calendar.
Thanks,
[Your name]
TipPaste a real LinkedIn or news detail into the trigger line — generic openers are exactly what gets cold emails deleted. Asking for "2 subject line options" gives you something to A/B test.
ChatGPTGeminiClaude
Turn messy meeting notes into clear action items
Convert raw notes or a transcript into decisions, owners, and next steps.
Example output
**TL;DR** — The team approved the Q3 pricing test and pushed the mobile redesign to August. Two action items are unassigned.
**Decisions made**
- Run the pricing A/B test on the Pro plan starting July 1.
- Delay the mobile redesign to August to avoid the holiday code freeze.
**Action items**
| Task | Owner | Due date |
|---|---|---|
| Set up pricing test in billing | Priya | Jun 27 |
| Draft August launch timeline | unassigned | unassigned |
| Tell support about the price change | Marco | Jun 30 |
**Open questions**
- Who signs off on the final August date?
TipThe "do not invent owners or dates" rule is what makes this trustworthy — AI otherwise fills gaps with plausible-but-wrong names. Paste a Zoom/Meet transcript directly for best results.