Skip to content

Commit d82c28b

Browse files
authored
Merge pull request #87 from InnerSourceCommons/rrrutledge-patch-3
Cross-team Project Valuation
2 parents e470944 + 04549b8 commit d82c28b

File tree

1 file changed

+99
-3
lines changed

1 file changed

+99
-3
lines changed
Lines changed: 99 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,105 @@
11
## Title
22

3-
Cross Team Valuation
3+
Cross-Team Project Valuation
44

55
## Patlet
66

7-
It's hard to sell the value of cross-team, inner sourced projects that don't provide a direct impact on company revenue. Here's a data-driven way to represent your project that both articulates its value and amplifies it.
7+
It's hard to sell the value of cross-team, inner sourced projects that don't provide a direct impact on company revenue.
8+
Here's a data-driven way to represent your project that both articulates its value and amplifies it.
89

9-
**This pattern is currently [under development in a Pull Request](https://github.com/InnerSourceCommons/InnerSourcePatterns/pull/87)**
10+
# Context
11+
12+
* You are responsible for a cross-team that serves as a platform for others in the company.
13+
* The cross-team project does not deliver any direct value for company revenue.
14+
15+
# Problem
16+
17+
Cross-team projects can potentially have a very large impact on the company yet are difficult to represent in a data-driven fashion.
18+
As a result, it is easy and common to either pursue projects that does not provide real value or to underfund what would otherwise produce great value.
19+
20+
# Forces
21+
22+
* Projects need to show value (objective or subjective) to company leadership in order to be funded.
23+
* Cross-team project value is dispersed across multiple end business units.
24+
* Due to this dispersal, cross-team project value is difficult to measure directly.
25+
26+
# Solution
27+
28+
Set in place a pattern and model of how to value cross-team projects.
29+
Such models give us the tool that we need to focus and amplify high-value collaboration for the company.
30+
31+
The core of all cross-team project value is the idea that we can get more done together than apart.
32+
Ascribing value to a cross-team effort is an exercise in quantifying _how much more_ is getting done together.
33+
The exact delta in productivity will vary by domain and project.
34+
There is a common process, though, by which you can create a model to calculate it.
35+
36+
## Explanation
37+
38+
Assemble a small team of subject matter experts in your domain.
39+
Using that team of experts, estimate 4 things about each consumer of your project output:
40+
* How long does it take them to consume your project output?
41+
* How long would it otherwise take them to home-roll the value of your project output for themselves?
42+
* What percentage of your project output is actually useful for them?
43+
* How much time on an ongoing basis (ideally per-use) would they otherwise spend maintaining their home-rolled solution?
44+
45+
When making these estimations, it's impossible to know with high accuracy _exactly_ how long any activities take. That's not your goal.
46+
Rather than exactness, you should strive to _**set a worst-case bound**_ on these estimates.
47+
The idea is for the group of experts to be able to say to each other, "We don't know exactly how long it would take, but we can all agree it's _at least_ this much."
48+
Specifically, you should estimate a *maximum* reasonable time to consume your project output and *minimum* reasonable times for consumers to otherwise home-roll, use and maintain their own solutions.
49+
50+
> One note about cost-to home-roll. The cost to home-roll a solution is NOT necessarily (very unlikely, in fact) the same as the cost of making a shared solution.
51+
Oftentimes for the same functionality the modularity and quality involved in buliding a cross-team, shared solution makes it a noticeably higher investment than a quick, hardcoded implementation used just once.
52+
53+
## Formula
54+
55+
Once you have your worst-case bounds you can value your cross-team project output during a given time frame via the simple formula:
56+
57+
```
58+
[Time Saved] - [Time Invested]
59+
60+
([Count of New Onboardings] * [Cost to Home-Roll] * [Percent Useful Functionality] + [Count of Usages] * [Maintenance Cost Per Use]) - ([Count of New Onboardings] * [Cost to Onboard])
61+
62+
[Count of New Onboardings] * ([Cost to Home-Roll] * [Percent Useful Functionality] - [Cost to Onboard]) + [Count of Usages] * [Maintenance Cost Per Use]
63+
```
64+
65+
## Commentary
66+
67+
Despite the trappings of rigor, this process does not yield an exact way to measure cross-team project output.
68+
In-practice, though, it does give a framework by which you can make a sound decision at how to fund this work.
69+
After having good, reasonable data according to the above explanation, you should fund dedicated development hours toward running the project up to _**at least**_ of the lesser of the following three levels:
70+
71+
1. The raw hours saved by the formula above. Since we're all sure that the formula will produce a number that is below the true number of hours saved, you can have confidence that funding the project up to that point is a sure win for you.
72+
1. The amount of time that it takes to support inner sourced contributions to cross-team projects. Since the contributor would likely have done the work anyway in a one-off fashion, it is worth it to fund the time it takes to faciliate their work going into a shared location.
73+
1. Whatever feels good to you. One intentional side-effect of having a valuation formula is that it naturally forces measurement of the key points of usage that provide value to consumers.
74+
Those measurements can be understood and consumed in their raw form to provide you with a gut-feel idea of how valuable is the project.
75+
76+
Some may be concerned about the lack of accuracy in this valuation approach. It's okay for this process to not give an exact measurement. It just needs to be accurate enough to accomplish 2 purposes:
77+
78+
1. Give a means to represent the value of what is happening to those that are organizing and funding cross-team efforts.
79+
1. Help those involved to know what areas of cross-team effort are higher priority to pursue based on their value.
80+
81+
In-practice, as long as these valuations are within an order-of-magnitude of reality and one-another, they are sufficiently accurate to fill these purposes.
82+
They will provide a head-and-shoulders improvement in on-the-ground results over the ad-hoc valuations (and resultant effects) described in the **Problem** section at the beginning of this document.
83+
84+
# Resulting Context
85+
86+
* Data-driven means to discuss the value and funding of the cross-team project with leadership.
87+
* Key metrics around the cross-team project instrumented in raw form.
88+
* Defining how the cross-team project provides value tends to lead to it actually producing greater value for the company.
89+
* Generally-successful project and "buzz" around it.
90+
91+
# Known Instances
92+
93+
* Nike
94+
95+
# Authors
96+
97+
* Russ Rutledge
98+
99+
# Acknowledgement
100+
101+
* Jeremiah Wright for teaching me to think about cross-team projects as an internal business dealing in the currency of developer time.
102+
103+
# State
104+
105+
Proven in multiple domains.

0 commit comments

Comments
 (0)