cc1a9c106b
* feat: add customer-research skill (#186)
* feat: add customer-research skill (#185)
Adds a new skill for conducting and synthesizing customer research —
covering analysis of existing assets (transcripts, surveys, support
tickets, NPS) and digital watering hole research (Reddit, G2, forums,
communities, review sites). Includes persona generation framework,
JTBD extraction, VOC quote banking, and competitive intel from reviews.
Also adds a detailed source-guides reference with per-platform playbooks
(Reddit operators, G2 review tiers, LinkedIn job posting mining, etc.)
and 10 evals covering the main trigger scenarios.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix: address Codex review of customer-research skill
- Fix evals.json schema to match repo convention (skill_name wrapper,
integer IDs, expected_output, files fields)
- Add product-marketing-context.md assertion to all evals
- Add 2 new evals: B2C drop-off scenario and zero-research bootstrap
- Collapse 'Where to Look' in SKILL.md to a decision table; detail
lives in source-guides.md
- Add Research Quality Guardrails section (confidence labels,
recency window, sample bias, minimum viable sample)
- Add Related Skills section cross-linking 7 downstream skills
- Expand source-guides.md with full B2C section (app stores,
TikTok/Instagram, consumer Reddit, Discord)
- Add Source Reliability and Confidence Scoring reference guide
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* fix: correct alphabetical ordering of customer-research in manifest and README
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* docs: add customer-research to skills relationship diagram
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* docs: move customer-research into Strategy column in diagram
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat: Resend CLI docs + Firehose integration (#188)
* feat: add Resend CLI docs and Firehose integration
- resend.md: update CLI availability (now official), add CLI install,
setup, and common commands section
- firehose.md: new integration guide for real-time web content streaming
API — query syntax, stream setup, marketing use cases (brand monitoring,
competitive intel, lead triggers, PR/link building)
- REGISTRY.md: add firehose under Competitive Intelligence
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* docs: document Claude Code dynamic content injection pattern
Add Claude Code-specific enhancement section to AGENTS.md explaining
the !`command` syntax for injecting shell output into skills at
invocation time. Marked as Claude Code-only to preserve cross-agent
compatibility of SKILL.md files.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* Revert "docs: document Claude Code dynamic content injection pattern"
This reverts commit 8e1ce7b363.
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* docs: document Claude Code dynamic content injection pattern (#189)
Add Claude Code-specific enhancement section to AGENTS.md explaining
the !`command` syntax for injecting shell output into skills at
invocation time. Marked as Claude Code-only to preserve cross-agent
compatibility of SKILL.md files.
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
* feat: add Introw PRM as partner ecosystem integration (#193)
Great contribution — clean integration guide with solid MCP tool coverage, and the cross-references into referral-program, revops, launch-strategy, and sales-enablement are well-placed. Thanks!
* feat: add Nitrosend integration for AI-native email sequencing
Adds Nitrosend as a tool option for teams building email sequences via
AI agents — no dashboard required, full MCP control.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: Tibo <72124096+CoopahG@users.noreply.github.com>
183 lines
4.8 KiB
Markdown
183 lines
4.8 KiB
Markdown
# Introw PRM
|
|
|
|
Partner Relationship Management platform for managing channel partners, tracking partner-sourced deals, commissions, tasks, and engagement — with built-in business review generation.
|
|
|
|
## Capabilities
|
|
|
|
| Integration | Available | Notes |
|
|
|-------------|-----------|-------|
|
|
| API | - | Not available |
|
|
| MCP | ✓ | Full read/write via Claude connector |
|
|
| CLI | - | Not available |
|
|
| SDK | - | Not available |
|
|
|
|
## Authentication
|
|
|
|
- **Type**: OAuth2 (via MCP connector)
|
|
- **Setup**: Connect via Claude MCP connector — no API key management needed
|
|
- **Scope**: All data is scoped to the authenticated organisation
|
|
|
|
## Common Agent Operations
|
|
|
|
All operations are performed via MCP tools. The following are the primary tool calls available.
|
|
|
|
### Search Partners
|
|
|
|
```
|
|
search_partners
|
|
dateRange: { field: "CREATED_AT" | "LAST_ACTIVITY_AT", from: "YYYY-MM-DD", to: "YYYY-MM-DD" }
|
|
```
|
|
|
|
Returns: partner name/ID, contact info, tier, lifecycle stage, categories, country, last activity date.
|
|
|
|
### Search CRM Objects (Deals, Tickets, Leads, Companies, Contacts)
|
|
|
|
```
|
|
search_crm_objects
|
|
objectType: "DEAL" | "TICKET" | "LEAD" | "COMPANY" | "CONTACT"
|
|
stage: "OPEN" | "WON" | "LOST"
|
|
view: "ALL" | "DUE" | "OVERDUE" | "INACTIVE"
|
|
rollingDateFilter: { field: "CLOSED_AT", value: "THIS_QUARTER" }
|
|
sortBy: { property: "AMOUNT", direction: "DESC" }
|
|
limit: 10
|
|
```
|
|
|
|
Synonym mapping: Opportunity/Forecast → `DEAL`, Account → `COMPANY`, Case → `TICKET`.
|
|
|
|
### Search Tasks
|
|
|
|
```
|
|
search_tasks
|
|
status: "TODO" | "IN_PROGRESS" | "PENDING" | "COMPLETED" | "DONE"
|
|
partnerId: "{partner_id}"
|
|
```
|
|
|
|
### Search Commissions
|
|
|
|
```
|
|
search_commissions
|
|
partnerId: "{partner_id}"
|
|
```
|
|
|
|
Returns: commission amounts, currency, payment status, associated partner and deals.
|
|
|
|
### Generate Business Review (QBR/MBR/WBR)
|
|
|
|
```
|
|
generate_business_review
|
|
duration: "QUARTERLY" | "MONTHLY" | "WEEKLY"
|
|
partnerId: "{partner_id}"
|
|
```
|
|
|
|
Returns: pipeline & forecast analysis, form submissions overview, mutual action plan, goal tracking, timed agenda and next steps.
|
|
|
|
### Search Partner Engagement
|
|
|
|
```
|
|
search_partner_engagement
|
|
partnerId: "{partner_id}"
|
|
type: "ROOM_VISIT" | "OBJECT_SHARE" | "COMMENT" | "FORM_SUBMIT" | "TASK_CREATED" | ...
|
|
dateRange: { from: "YYYY-MM-DD", to: "YYYY-MM-DD" }
|
|
```
|
|
|
|
Returns: comments, deal updates, asset views, task events, portal visits, form submissions, announcements, quotes.
|
|
|
|
### Add Comment to Deal/Object
|
|
|
|
```
|
|
add_comment
|
|
comment: "Comment text"
|
|
objectId: "{crm_object_id}"
|
|
objectType: "DEAL" | "TICKET" | "LEAD" | "COMPANY" | "CONTACT"
|
|
```
|
|
|
|
### Create or Update Tasks
|
|
|
|
```
|
|
add_task
|
|
name: "Task title"
|
|
dueDate: "2025-02-20"
|
|
assignedTo: "PARTNER" | "ORGANISATION"
|
|
partnerId: "{partner_id}"
|
|
|
|
update_task
|
|
taskId: 123
|
|
status: "TODO" | "IN_PROGRESS" | "DONE"
|
|
```
|
|
|
|
### Update CRM Object Properties
|
|
|
|
```
|
|
update_crm_object
|
|
objectId: "{crm_object_id}"
|
|
objectType: "DEAL"
|
|
propertiesToUpdate: { "amount": 50000, "stage": "Negotiation" }
|
|
```
|
|
|
|
### Share Lead or Register Deal
|
|
|
|
Two-step flow:
|
|
1. **Discovery**: provide `objectType` and `callToAction` to get form fields
|
|
2. **Submit**: provide `formId` and `userProvidedData` to submit
|
|
|
|
```
|
|
share_lead_or_register_deal
|
|
objectType: "Deal"
|
|
callToAction: "Register Deal"
|
|
partnerId: "{partner_id}"
|
|
```
|
|
|
|
## Key Metrics
|
|
|
|
### Partner Data
|
|
- `id` - Partner ID
|
|
- `name` - Partner company name
|
|
- `championEmail` - Primary contact email
|
|
- `tier` - Current tier level
|
|
- `lifecycleStage` - Partner lifecycle stage
|
|
- `categories` - Partner categories
|
|
- `country` - Partner country
|
|
- `lastActivityAt` - Last activity date
|
|
|
|
### CRM Object Data
|
|
- `objectId` - External CRM ID
|
|
- `objectType` - DEAL, TICKET, LEAD, COMPANY, CONTACT
|
|
- `stage` - OPEN, WON, LOST
|
|
- `amount` - Deal amount
|
|
- `closeDate` - Expected close date
|
|
|
|
### Commission Data
|
|
- `amount` - Commission amount
|
|
- `currency` - Payment currency
|
|
- `paymentStatus` - Current payment status
|
|
- `partnerId` - Associated partner
|
|
- `dealId` - Associated deal
|
|
|
|
### Engagement Data
|
|
- `type` - Activity type (ROOM_VISIT, COMMENT, FORM_SUBMIT, etc.)
|
|
- `partnerId` - Partner involved
|
|
- `crmObjectId` - Related CRM object
|
|
- `createdAt` - Activity timestamp
|
|
|
|
## When to Use
|
|
|
|
- Managing channel partner relationships and tracking partner activity
|
|
- Reviewing partner-sourced pipeline (deals, leads, opportunities)
|
|
- Preparing QBR/MBR/WBR meetings with automated business review generation
|
|
- Tracking partner commissions and payouts
|
|
- Managing mutual action plans via tasks assigned to partners or internal teams
|
|
- Processing deal registrations and lead sharing from partners
|
|
- Monitoring partner portal engagement and content asset views
|
|
|
|
## Rate Limits
|
|
|
|
- Rate limits managed by the MCP connector
|
|
- All data scoped to authenticated organisation
|
|
|
|
## Relevant Skills
|
|
|
|
- revops
|
|
- sales-enablement
|
|
- referral-program
|
|
- competitor-alternatives
|