plugins/octave/skills/insights/SKILL.md
Surface findings, trends, and conversation patterns from calls, emails, and deals. Use when user says "what are prospects saying", "common objections", "conversation trends", "conversation patterns", "field intelligence", or asks about aggregate conversation insights. Do NOT use for a single pasted conversation (use /octave:analyzer) or deal-level win/loss analysis (use /octave:wins-losses).
npx skillsauth add octavehq/lfgtm insightsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Surface insights from your sales conversations—objections, pain points, questions, and what's resonating. Learn from the field to improve your library and messaging.
/octave:insights [--type <finding-type>] [--period <time-range>]
--type <type> - Focus on specific finding type (objections, pain-points, questions, competitors, value-props)--period <range> - Time range (today, week, month, quarter, custom)--segment <name> - Filter by segment--persona <name> - Filter by persona--company <domain> - Filter by company/octave:insights # Overview of recent insights
/octave:insights --type objections # Top objections
/octave:insights --type pain-points --period month # Pain points this month
/octave:insights --persona "CTO" # Insights from CTO conversations
/octave:insights --company acme.com # Insights from Acme conversations
When the user runs /octave:insights:
If no options provided, show an overview:
What insights would you like to explore?
1. Overview - Summary across all finding types
2. Objections - What objections are prospects raising?
3. Pain Points - What problems are prospects mentioning?
4. Questions - What are prospects asking about?
5. Competitors - Which competitors are coming up?
6. Value Props - Which value props are resonating?
7. Custom - Specific filters
Your choice (or just ask a question):
Use the MCP tools to gather data. list_events takes event types inside filters; list_findings requires a natural-language query describing the kind of findings you want, with entity and outcome filters inside eventFilters.
For Overview:
# Get recent events
list_events({
startDate: "<30 days ago>",
endDate: "<today>",
limit: 50,
filters: { eventTypes: ["CALL_TRANSCRIPT", "EMAIL_SENT", "EMAIL_REPLY_RECEIVED"] }
})
# Get findings across the main types
list_findings({
query: "objections, pain points, questions about the offering, competitor mentions, value props presented",
startDate: "<30 days ago>",
endDate: "<today>",
limit: 100
})
Group the returned findings by type yourself (objections, pain points, questions, competitors, value props) before presenting the overview.
For Specific Type (e.g., Objections):
list_findings({
query: "objections and pushback raised by prospects in calls and emails",
startDate: "<period start>",
endDate: "<period end>",
limit: 50
})
With Persona/Segment Filter:
list_findings({
query: "<finding type description>",
eventFilters: {
personas: ["<persona_oId>"]
},
limit: 50
})
See overview-output.md for the overview output template.
See objections-output.md for the objection-type output template.
When user wants to see specific events:
get_event_detail({
eventOId: "<event_oId>"
})
Present the full context:
EVENT DETAILS: Call with John Smith (Acme Corp)
===============================================
Date: January 15, 2026
Duration: 32 minutes
Participants:
- Internal: Sarah (AE), Mike (SE)
- External: John Smith (VP Ops), Lisa Chen (Director)
Matched Persona: VP Operations
Matched Playbook: Enterprise Efficiency
---
KEY FINDINGS
Objections Raised:
• [12:34] John: "Your pricing is 2x what we're paying now for our current solution"
→ Response: Sarah mentioned ROI payback period
Pain Points Acknowledged:
• [08:15] John: "We're spending 20 hours a week on manual data entry"
→ Matches persona pain point ✓
• [15:42] Lisa: "The biggest issue is data not syncing between systems"
→ Consider adding to persona
Questions Asked:
• [18:20] John: "How long does implementation typically take?"
• [22:05] Lisa: "Do you integrate with Salesforce?"
Competitor Mentioned:
• [25:30] John: "We looked at [Competitor] last year but didn't move forward"
Value Props Delivered:
• [10:15] Sarah: "Customers typically see 80% reduction in manual work"
→ Positive response from John
---
[View full transcript] (uses get_event_detail with includeTranscript: true)
If user wants to update library based on insights:
Based on this insight, I recommend:
Update Persona: VP Operations
Add pain point: "Data silos causing manual reconciliation work"
Add objection: "Pricing compared to current solution"
Update Playbook: Enterprise Efficiency
Add objection handling: "Pricing 2x current solution"
Response: "Let's look at total cost of ownership including the 20 hours/week
your team spends on manual work. At $X/hour, that's $Y annually..."
Apply these updates?
1. Yes, update both
2. Update persona only
3. Update Motion ICP narrative only
4. Let me customize first
5. Skip
If yes, use update_entity to apply.
Express the finding type in the list_findings query text:
| Type | Description | Example query | |------|-------------|---------------| | objections | Pushback and concerns raised | "objections and pushback raised by prospects" | | pain-points | Problems prospects mention | "business problems and pain points prospects described" | | questions | Questions asked about offering | "questions or confusion about our offering" | | competitors | Competitor mentions | "competitors mentioned or compared against our offering" | | value-props | Value props that resonated | "value props presented and how prospects responded" | | use-cases | Use cases discussed | "use cases brought up in conversations" | | proof-points | Proof points referenced | "proof points and customer stories cited" |
list_events - Search events with filterslist_findings - Aggregate findings across eventsget_event_detail - Get detailed event info with transcript/contentget_entity - Get persona / segment / competitor / objection detailslist_motions / list_motion_icps / find_motion_icp - Pull the Motion ICP narrative (Target ICP overview, Operating landscape, Strategic narrative, Pains and consequences, Benefits and impacts, Methodology, References) for persona × segment contextsearch_knowledge_base - Find related library contentupdate_entity - Apply suggested updates to library entities (personas, segments, objections, etc.)update_motion_playbook - Edit Motion ICP narrative sections (Strategic narrative, Benefits and impacts, Pains and consequences) with field-informed refinementsNo Events Found:
No events found for the specified period.
This could mean:
- No calls/emails have been synced yet
- The date range is too narrow
- Filters are too restrictive
Try:
- Expanding the date range
- Removing filters
- Check that your CRM/email integration is connected in Octave
No Findings Extracted:
Events found but no findings extracted yet.
Findings are extracted automatically when events are processed. Recent events may still be processing.
Check back in a few minutes, or view raw events instead.
/octave:analyzer - Analyze specific conversations in depth/octave:wins-losses - Focus on deal outcomes/octave:audit - Ensure library captures field learnings/octave:library - Update library with insights/octave:battlecard - Competitive intelligence from conversation data/octave:icp-refine - Use conversation patterns to refine ICP/octave:enablement - Turn field insights into team enablement materialsdevelopment
Turn one or more Octave GTM Explorer / Beats reports into a branded, shareable digest with selectable insight scope, evidence depth, and output format. Use when the user asks for a report digest, weekly or monthly insight recap, executive intelligence brief, magazine-style insight story, report deck, or a recurring published summary of Octave insights.
content-media
Product and feature launch planning with full content kit generation across channels and audiences. Use when user says "launch plan", "product launch", "feature announcement", "GTM plan for launch", "launch content kit", or mentions launching something new.
development
A dense internal deal room a rep hands to a champion so they can run the buying-committee sell without you in the room. Quantified business case, stakeholder map with per-seat ammo, objection handling, and a path to yes, rendered as self-contained HTML. Use when user says "champion deal room", "arm my champion", "help my champion sell internally", "internal business case for [deal]", or wants a champion enablement doc. For a customer-facing top-of-funnel page use /octave:microsite; for the formal closing proposal use /octave:proposal.
data-ai
Analyze email threads, call transcripts, and conversations for resonance, adherence to messaging, and competitive differentiation. Use when user says "analyze this call", "how did the email land", "score this thread", "conversation analysis", or pastes conversation content to evaluate.