Technical
Cross Pollination In Practice: A Real Engagement
A client asked for what sounded like a simple task last week. Redesign their proposal template. By the end of the engagement I had touched four skills in the soup. This is a small example of why the pot matters.
The business problem was that their current proposals were converting at 18 percent and they wanted 30.
The skills that showed up
- Brand design to rebuild the template in their voice
- Copywriting to rework the value proposition language
- Sales strategy to restructure the pricing page
- Python scripting to automate proposal generation from a CRM export
The shape of the week
Day one was discovery. Day two was the brand work. Day three was copy. Day four was the pricing rework. Day five I wrote a 60 line Python script that pulls client data from their CRM export and fills the new template.
def generate_proposal(client_row, template):
fields = {
'name': client_row['company'],
'contact': client_row['primary_contact'],
'scope': build_scope(client_row['needs']),
'price': tiered_price(client_row['employees']),
}
return template.render(**fields)That one script reduced their proposal prep time from ninety minutes to five.
Why a specialist could not have done this
A brand designer would have produced a pretty template. A copywriter would have fixed the language. A sales consultant would have changed pricing. An engineer would have built a tool. None of them would have delivered the full outcome in five days.
What the client paid
One fee. One contact. One scope. They did not need to coordinate four vendors.
The lesson
Cross pollination is not a metaphor. It is a billing structure. When the skills live in one head, the coordination tax goes to zero. That is where the margin comes from. See the original skill soup manifesto for the frame. This is that frame paying rent.
RELATED READING
The Consulting Shift I Am Making In Year Two
After a year of writing and building, my consulting practice is changing shape. Shorter engagements. Sharper outcomes.
ReadThe Frontend Shift: Shipping Less JavaScript In Year Two
A year ago I reached for Next.js for everything. This year I often reach for nothing.
ReadThe Serverless Lesson I Would Write On A Sticky Note
After a year of shipping serverless projects, one rule explains most of the wins and all of the losses.
Read