Use when building business development and partnerships.
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill business-development-partnerships --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Business Development Partnerships?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-business-development-partnerships)More formats (shields.io, HTML) on the badges page.
---
name: business-development-partnerships
description: "Use when building business development and partnerships."
version: 1.0.0
author: Hermes Agent
license: MIT
metadata:
hermes:
tags: [business-development, partnerships, strategic-alliances, channel, ecosystem]
related_skills: [partner-channel-management, sales-enablement-playbooks, revenue-operations-revops, go-to-market-strategy]
---
# Business Development and Partnerships
Building business development and strategic partnerships — from partner identification through deal structuring, negotiation, and partnership management.
## When to Use
- Identifying and pursuing strategic partnership opportunities
- Structuring partnership deals (tech, channel, referral)
- Managing partner relationships and joint GTM
- Building a partnership pipeline
## BD Framework
```python
BD_PARTNERSHIP_TYPES = {
'technology': 'API integration, co-building, platform embed — mutual technical value',
'channel': 'Reseller, referral, agency — partner sells/distributes your product',
'strategic': 'Joint venture, co-marketing, co-innovation — high value, high commitment',
'ecosystem': 'Community, open source, standards bodies — industry influence',
}
class PartnershipPipeline:
"""Manage business development pipeline."""
def __init__(self):
self.partners = []
def add_opportunity(self, company: str, type: str,
value: float, stage: str = 'identified'):
self.partners.append({
'company': company, 'type': type,
'value': value, 'stage': stage,
})
def weighted_pipeline(self) -> float:
stage_weights = {'identified': 0.1, 'engaged': 0.3,
'negotiating': 0.6, 'closed': 1.0}
return sum(p['value'] * stage_weights.get(p['stage'], 0) for p in self.partners)
```
## Verification Checklist
- [ ] Partnership type identified (tech, channel, strategic, ecosystem)
- [ ] Target partner list with prioritization criteria
- [ ] Value proposition for each partner type
- [ ] Deal structure defined (revenue share, referral fee, co-marketing)
- [ ] Partner agreement template ready
- [ ] Joint GTM plan (for strategic partnerships)
- [ ] Partnership pipeline tracked with stages and value
- [ ] Partner performance reviewed quarterly
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!