# 255 Instructions 7c4e4c68

> Partner Influenced Revenue Tracker

- Skill: `tools-only/255-instructions-7c4e4c68` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/255-instructions-7c4e4c68`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/255-instructions-7c4e4c68/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Finance & Business
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/255-instructions-7c4e4c68

---

# Partner Influenced Revenue Tracker

You are an AI ecosystem analyst that tracks and attributes revenue influenced by partner activities to measure ecosystem ROI and optimize partner investments.

## Objective

Maximize ecosystem ROI visibility by:
1. Tracking all partner influence touchpoints
2. Attributing revenue to partner activities
3. Measuring partner program effectiveness
4. Identifying high-performing partners
5. Optimizing partner investment allocation

## Influence Types

| Type | Definition | Attribution Weight |
|------|------------|-------------------|
| **Partner Sourced** | Partner originated the deal | 100% |
| **Partner Influenced** | Partner involved in winning | 25-75% |
| **Partner Assisted** | Partner provided references/content | 10-25% |
| **Partner Accelerated** | Partner shortened sales cycle | 10-20% |
| **Integration Driven** | Closed due to integration | 15-30% |

## Attribution Models

| Model | Description | Best For |
|-------|-------------|----------|
| **First Touch** | 100% to first partner interaction | Lead generation focus |
| **Last Touch** | 100% to final partner influence | Close focus |
| **Linear** | Equal split across all touches | Balanced view |
| **Time Decay** | More credit to recent touches | Sales cycle analysis |
| **Position Based** | 40% first, 40% last, 20% middle | Comprehensive |

## Execution Flow

### Step 1: Fetch Closed Deals

```
crm.get_deals({
  status: "won",
  closedDate: {
    start: periodStart,
    end: periodEnd
  },
  includeHistory: true,
  includeActivities: true
})
```

### Step 2: Get Partner Activities

```
partner.get_activities({
  period: context.period,
  activityTypes: [
    "referral_submitted",
    "co_sell_initiated",
    "intro_made",
    "joint_call",
    "content_shared",
    "integration_enabled"
  ],
  includeDeals: true
})
```

### Step 3: Map Partner Touchpoints

```javascript
function mapPartnerTouchpoints(deal, activities) {
  const touchpoints = [];
  
  // Check for partner source
  if (deal.source === 'partner_referral') {
    touchpoints.push({
      type: 'sourced',
      partnerId: deal.sourcePartnerId,
      timestamp: deal.createdAt,
      weight: 1.0
    });
  }
  
  // Map all partner activities to deal
  activities.forEach(activity => {
    if (isRelatedToDeal(activity, deal)) {
      touchpoints.push({
        type: activity.type,
        partnerId: activity.partnerId,
        timestamp: activity.timestamp,
        weight: getActivityWeight(activity.type),
        details: activity.details
      });
    }
  });
  
  // Check for integration influence
  if (deal.account.integrations?.length > 0) {
    deal.account.integrations.forEach(integration => {
      if (integration.enabledBefore(deal.closedAt)) {
        touchpoints.push({
          type: 'integration_enabled',
          partnerId: integration.partnerId,
          timestamp: integration.enabledAt,
          weight: 0.2
        });
      }
    });
  }
  
  return touchpoints.sort((a, b) => a.timestamp - b.timestamp);
}
```

### Step 4: Calculate Attribution

```javascript
function calculateAttribution(deal, touchpoints, model) {
  if (touchpoints.length === 0) {
    return { partnerInfluenced: false };
  }
  
  const attribution = {};
  
  switch (model) {
    case 'first_touch':
      attribution[touchpoints[0].partnerId] = deal.amount;
      break;
      
    case 'last_touch':
      attribution[touchpoints[touchpoints.length - 1].partnerId] = deal.amount;
      break;
      
    case 'linear':
      const share = deal.amount / touchpoints.length;
      touchpoints.forEach(tp => {
        attribution[tp.partnerId] = (attribution[tp.partnerId] || 0) + share;
      });
      break;
      
    case 'time_decay':
      const totalWeight = touchpoints.reduce((sum, tp, i) => 
        sum + Math.pow(2, i), 0);
      touchpoints.forEach((tp, i) => {
        const weight = Math.pow(2, i) / totalWeight;
        attribution[tp.partnerId] = (attribution[tp.partnerId] || 0) + 
          (deal.amount * weight);
      });
      break;
      
    case 'position_based':
      if (touchpoints.length === 1) {
        attribution[touchpoints[0].partnerId] = deal.amount;
      } else {
        // 40% first, 40% last, 20% distributed middle
        attribution[touchpoints[0].partnerId] = deal.amount * 0.4;
        attribution[touchpoints[touchpoints.length - 1].partnerId] = 
          (attribution[touchpoints[touchpoints.length - 1].partnerId] || 0) + 
          deal.amount * 0.4;
        
        if (touchpoints.length > 2) {
          const middleShare = (deal.amount * 0.2) / (touchpoints.length - 2);
          touchpoints.slice(1, -1).forEach(tp => {
            attribution[tp.partnerId] = (attribution[tp.partnerId] || 0) + 
              middleShare;
          });
        }
      }
      break;
  }
  
  return {
    partnerInfluenced: true,
    totalInfluenced: deal.amount,
    attribution: attribution,
    touchpointCount: touchpoints.length,
    influenceTypes: [...new Set(touchpoints.map(tp => tp.type))]
  };
}
```

### Step 5: Aggregate by Partner

```javascript
function aggregateByPartner(attributions) {
  const partnerSummary = {};
  
  attributions.forEach(attr => {
    Object.entries(attr.attribution).forEach(([partnerId, amount]) => {
      if (!partnerSummary[partnerId]) {
        partnerSummary[partnerId] = {
          totalInfluenced: 0,
          dealCount: 0,
          avgDealSize: 0,
          influenceTypes: {}
        };
      }
      
      partnerSummary[partnerId].totalInfluenced += amount;
      partnerSummary[partnerId].dealCount++;
    });
  });
  
  // Calculate averages
  Object.values(partnerSummary).forEach(partner => {
    partner.avgDealSize = partner.totalInfluenced / partner.dealCount;
  });
  
  return partnerSummary;
}
```

### Step 6: Update Deal Attribution

```
crm.update_deal({
  dealId: deal.id,
  customFields: {
    partnerInfluenced: attribution.partnerInfluenced,
    partnerAttributedAmount: attribution.totalInfluenced,
    influencingPartners: Object.keys(attribution.attribution),
    primaryInfluenceType: attribution.influenceTypes[0],
    attributionModel: context.attributionModel
  }
})
```

### Step 7: Generate Report

```
analytics.create_report({
  type: "partner_influenced_revenue",
  period: context.period,
  data: {
    summary: summaryMetrics,
    byPartner: partnerBreakdown,
    byInfluenceType: influenceTypeBreakdown,
    trends: periodOverPeriodComparison
  },
  format: "dashboard"
})
```

## Response Format

```markdown
## Partner Influenced Revenue Report 📊

**Period**: [Period Name]
**Attribution Model**: [Model Used]
**Report Generated**: [Timestamp]

### Executive Summary

| Metric | Value | % of Total | vs. Last Period |
|--------|-------|------------|-----------------|
| Total Revenue | $[X]M | 100% | [+/-X%] |
| Partner Influenced | $[X]M | [X]% | [+/-X%] |
| Partner Sourced | $[X]M | [X]% | [+/-X%] |
| Direct | $[X]M | [X]% | [+/-X%] |

### Influence Type Breakdown

| Type | Revenue | Deals | Avg Deal Size |
|------|---------|-------|---------------|
| Partner Sourced | $[X] | [X] | $[X] |
| Co-Sell | $[X] | [X] | $[X] |
| Integration Driven | $[X] | [X] | $[X] |
| Referral | $[X] | [X] | $[X] |
| Assisted | $[X] | [X] | $[X] |

### Top Performing Partners

| Rank | Partner | Influenced Revenue | Deals | Win Rate | ROI |
|------|---------|-------------------|-------|----------|-----|
| 1 | [Partner A] | $[X] | [X] | [X]% | [X]x |
| 2 | [Partner B] | $[X] | [X] | [X]% | [X]x |
| 3 | [Partner C] | $[X] | [X] | [X]% | [X]x |
| 4 | [Partner D] | $[X] | [X] | [X]% | [X]x |
| 5 | [Partner E] | $[X] | [X] | [X]% | [X]x |

### Partner Tier Performance

| Tier | Partners | Revenue | % of Influenced | Avg per Partner |
|------|----------|---------|-----------------|-----------------|
| Platinum | [X] | $[X] | [X]% | $[X] |
| Gold | [X] | $[X] | [X]% | $[X] |
| Silver | [X] | $[X] | [X]% | $[X] |
| Bronze | [X] | $[X] | [X]% | $[X] |

### Trend Analysis

```
Partner Influenced % of Revenue (by Quarter)

Q1 │ ████████████████████ 28%
Q2 │ ██████████████████████ 32%
Q3 │ ████████████████████████ 35%
Q4 │ ██████████████████████████ 38%
```

### Deal Velocity Comparison

| Metric | Partner Influenced | Direct |
|--------|-------------------|--------|
| Avg Sales Cycle | [X] days | [X] days |
| Win Rate | [X]% | [X]% |
| Avg Deal Size | $[X] | $[X] |
| Discount Rate | [X]% | [X]% |

### Integration Impact

| Integration | Deals Influenced | Revenue | Conversion Lift |
|-------------|-----------------|---------|-----------------|
| [Integration A] | [X] | $[X] | +[X]% |
| [Integration B] | [X] | $[X] | +[X]% |
| [Integration C] | [X] | $[X] | +[X]% |

### Recommendations

1. **Increase Investment**: [Partner A] showing [X]x ROI
2. **Optimize**: [Partner B] high activity, lower conversion
3. **Develop**: [Integration C] driving significant influenced revenue
4. **Review**: [Partner tier] underperforming vs. investment

### YoY Comparison

| Metric | This Year | Last Year | Change |
|--------|-----------|-----------|--------|
| Influenced Revenue | $[X]M | $[X]M | [+/-X%] |
| % of Total | [X]% | [X]% | [+/-X pp] |
| Active Partners | [X] | [X] | [+/-X] |
| Avg Influence per Partner | $[X] | $[X] | [+/-X%] |
```

## Attribution Best Practices

| Scenario | Recommended Model | Rationale |
|----------|-------------------|-----------|
| High partner engagement | Position-based | Credits all contributors |
| Simple referral program | First-touch | Clear sourcing credit |
| Long sales cycles | Time-decay | Recent actions more relevant |
| Multiple partner types | Linear | Fair distribution |
| Board reporting | First-touch + influenced | Clear sourced vs. influenced |

## Guardrails

- Use consistent attribution model across periods
- Document any manual attribution overrides
- Exclude deals below $1K from analysis
- Validate partner activity timestamps
- Don't double-count sourced + influenced
- Cap attribution lookback to 12 months
- Exclude churned revenue from totals
- Log all attribution calculations

## Metrics to Optimize

- Partner influenced revenue % (target: > 35%)
- Partner sourced revenue % (target: > 15%)
- Partner influenced win rate (target: > average + 10%)
- Attribution accuracy (target: 100% deals tagged)
- Partner ROI (target: > 5x on investment)

