You need to prepare a strategy for an architecture negotiation — a conversation where the architect must persuade, push back, or reach consensus with someone who disagrees. Typical triggers:
This skill prepares the negotiation strategy. The human executes the actual conversation.
Before starting, verify:
-> Check prompt for: titles (CTO, VP, PM, developer, senior engineer), names, relationships
-> If still missing, ask: "Who are you negotiating with — a business stakeholder, another architect, or a developer?"
-> Check prompt for: technology choices, quality attributes, requirements, priorities, trade-offs
-> If still missing, ask: "What is the specific disagreement or decision you need to navigate?"
-> Check prompt for: hierarchy mentions, "my boss," "C-level," seniority references
-> If unavailable: assume peer-level negotiation
-> Check prompt for: "always," "keeps saying no," "we've had this fight before"
-> If unavailable: assume first significant disagreement
-> Check prompt for: project impact, cost implications, timeline effects
-> If unavailable: assess from the disagreement itself
SUFFICIENT when ALL of these are true:
- The counterpart type is known (business, architect, developer)
- The specific disagreement is understood
- The user's desired outcome is clear or can be inferred
PROCEED WITH DEFAULTS when:
- Counterpart and disagreement are known
- Power dynamics and history can be assumed
MUST ASK when:
- The counterpart type is completely unclear
- The disagreement itself is ambiguous
ACTION: Determine which of the three negotiation audience types this falls into, as each requires different techniques.
WHY: Negotiating with a business stakeholder who doesn't understand technology requires completely different techniques than negotiating with a senior developer who understands the technology deeply. Business stakeholders respond to cost and time framing. Developers respond to technical demonstrations. Other architects respond to evidence-based trade-off analysis. Using the wrong approach wastes credibility.
| Audience | Core Technique | Key Lever |
|---|---|---|
| ---------- | --------------- | ----------- |
| Business stakeholders | Leverage their grammar — translate to cost, time, and risk | They care about business outcomes, not technical elegance |
| Other architects | Divide and conquer — find areas of agreement, isolate disagreements | They understand trade-offs; focus on evidence and alternatives |
| Developers | Demonstration defeats discussion — show, don't tell | They trust working code and concrete examples over authority or argument |
AGENT: EXECUTES — produces the negotiation brief
ACTION: Based on the audience type, prepare the negotiation strategy using the appropriate techniques. For detailed technique breakdowns, see references/negotiation-techniques.md.
WHY: Each technique targets a specific cognitive bias or communication barrier. Leverage grammar works because stakeholders literally don't hear technical arguments — they filter for business impact. Demonstration defeats discussion because developers have seen too many "it should work in theory" arguments fail in practice. Divide and conquer works on architects because it prevents ego-driven all-or-nothing positions.
For Business Stakeholders:
For Other Architects:
For Developers:
AGENT: EXECUTES — integrates the 4 C's into the strategy
ACTION: Evaluate and strengthen the negotiation strategy against the 4 C's of Architecture.
WHY: The 4 C's are a meta-framework for all architect communication, not just negotiation. Failing at any one of them undermines the negotiation regardless of how good the technical argument is.
AGENT: EXECUTES — defines fallback positions
ACTION: Define the Best Alternative to a Negotiated Agreement (BATNA) and identify possible compromise positions.
WHY: Entering a negotiation without knowing your walk-away point and your compromise zone is negotiating blind. The architect should know: "If I can't get event-driven architecture, I can accept REST with a message queue for the high-throughput services as a compromise. My BATNA is documenting the risk and revisiting in 6 months when the performance problems materialize."
Include:
AGENT: EXECUTES — produces the final deliverable
HANDOFF TO HUMAN — the user conducts the actual negotiation
ACTION: Compile the complete negotiation strategy into a concise brief the user can reference before and during the conversation.
# Negotiation Brief: {Topic}
## Situation
- **Counterpart:** {who, role, relationship}
- **Disagreement:** {what's contested}
- **Stakes:** {what's at risk if unresolved}
## Audience Classification: {Business / Architect / Developer}
## Strategy
### Key Techniques
1. {primary technique with specific application}
2. {secondary technique}
3. {fallback technique}
### Opening Frame
{How to open the conversation — specific language to use}
### Key Arguments (in order of deployment)
1. {strongest argument, in counterpart's language}
2. {supporting argument}
3. {evidence/demonstration if available}
### Anticipated Objections and Responses
| They might say... | Respond with... |
|-------------------|-----------------|
| {objection 1} | {response using appropriate technique} |
| {objection 2} | {response} |
## Positions
| Position | Description |
|----------|-------------|
| **Ideal outcome** | {best case} |
| **Acceptable compromise** | {what you can live with} |
| **BATNA** | {what you do if negotiation fails} |
| **Red lines** | {what you cannot accept, with WHY} |
## 4 C's Check
- Communication: {language adapted for audience? Y/N}
- Collaboration: {framed as joint problem-solving? Y/N}
- Clarity: {recommendation unambiguous? Y/N}
- Conciseness: {argument as short as possible? Y/N}
Scenario: Pushing back on unrealistic availability requirements
Trigger: "My CTO wants 99.999% availability for our internal tool used by 50 employees. That would cost $200K in infrastructure."
Process: Classified as business stakeholder negotiation. Primary technique: leverage their grammar by translating availability percentages to cost and downtime impact. Prepared comparison table: 99.9% = 8.7 hours downtime/year at $40K vs 99.999% = 5 minutes downtime/year at $200K. Framed as "what's the cost of each hour of downtime for 50 internal users?" to let the math make the argument. BATNA: implement 99.9% with monitoring, propose revisiting if actual downtime impacts exceed the cost differential. 4 C's check: using cost language (Communication), framing as "let's find the right investment" (Collaboration), specific numbers not vague "it's expensive" (Clarity), two-slide comparison not a 30-page report (Conciseness).
Output: Negotiation brief with cost comparison table, opening frame, anticipated objections (e.g., "but what about that outage last year?"), and compromise position at 99.95%.
Scenario: Disagreement with senior developer on architecture pattern
Trigger: "The senior developer insists REST is better for everything. He has 15 years of experience."
Process: Classified as developer negotiation. Primary technique: demonstration defeats discussion. Prepared a plan for a small proof-of-concept showing the specific scenario where event-driven outperforms REST (e.g., order processing where downstream services don't need synchronous response). Also identified the Frozen Caveman pattern — the senior developer may be defaulting to REST because of a bad experience with messaging years ago. Strategy: acknowledge their REST expertise explicitly, agree REST is appropriate for most of the services (divide and conquer), but propose a POC for the 2 services where async communication has clear benefits. BATNA: implement REST everywhere with the understanding that the 2 high-throughput services may need refactoring later, and document this prediction in an ADR.
Output: Negotiation brief with POC proposal, specific service pair for demonstration, acknowledgment language, and ADR template for documenting the decision.
Scenario: Negotiating tech debt vs features with product leadership
Trigger: "The product team wants 5 new features. I think we need to address tech debt first."
Process: Classified as business stakeholder negotiation (VP of Product). Primary technique: state impacts in cost and time. Translated tech debt to business language: "Each feature currently takes 3 weeks because of the data layer complexity. After a 4-week refactor, each feature would take 1 week. Five features at 3 weeks = 15 weeks. Four-week refactor + five features at 1 week = 9 weeks. The refactor saves 6 weeks and every future feature is faster." Compromise position: do the refactor in parallel with 2 of the 5 features, deferring 3 features by 2 weeks. BATNA: proceed with all 5 features, document the increasing delivery time trend, and revisit when feature delivery time exceeds stakeholder patience.
Output: Negotiation brief with ROI calculation, delivery timeline comparison chart, compromise proposal, and risk documentation plan.
This skill is licensed under CC-BY-SA-4.0.
Source: BookForge — Fundamentals of Software Architecture by Mark Richards, Neal Ford.
This skill is standalone. Browse more BookForge skills: bookforge-skills
共 1 个版本
暂无安全检测报告