hackerspace-blueprint/decision.md

104 lines
6.1 KiB
Markdown
Raw Normal View History

2014-05-06 20:00:56 +00:00
# Decision making models
For each layer there is a specific decision making model. This page describes them.
2018-04-28 14:10:14 +00:00
## The board
2014-05-06 20:11:41 +00:00
The decision making model can be decided at runtime by the current board. The board is supposed to be a group that is sync'ed so the decision making process should be a natural flow. The below is outlined as a backup in case a decision can not be made.
2018-04-28 14:10:14 +00:00
2014-05-06 20:00:56 +00:00
* voting with a 2/3 majority.
* therefore the board must consist of an uneven amount of members: 3, 5, 7, ...
2014-05-06 20:11:41 +00:00
2014-05-06 20:00:56 +00:00
## Members group
2018-04-28 14:10:14 +00:00
Below outlines the decision making model to be used by this group.
2014-05-06 20:00:56 +00:00
2014-05-06 20:13:43 +00:00
| PLAN/TIME | ACTION | VOTE |
| ------------------------------- |:------------------------------:| --------------:|
| Week 0 | Put problem on agenda 3 days before meeting | no vote |
2014-05-07 20:40:35 +00:00
| Week 1 | Discuss in group, listen, learn and build compromise | 100% consensus |
| Week 2 | Discuss in group, listen, learn and build compromise | 80% consensus |
| Week 3 | Discuss in group, listen, learn and build compromise | Point system |
2014-05-06 20:13:43 +00:00
### week 0
2018-04-28 14:10:14 +00:00
The point is put on the agenda of the weekly meeting and is announced on the mailing-list. This needs to be at least 3 days in advance.
### week 1
2018-04-28 14:10:14 +00:00
2018-04-29 18:09:18 +00:00
The point is discussed in group and requires a 100% consensus to reach a group decision. The motivation for striving for consensus is because consensus comes with characteristics that benefit the hackerspace:
2018-04-28 14:10:14 +00:00
* encourages discussion
2018-04-29 18:09:18 +00:00
* forced to listen to opposing ideas that can give new insights
2018-04-28 14:10:14 +00:00
* they can bring smarter compromises
* http://en.wikipedia.org/wiki/Consensus
2014-05-06 20:11:41 +00:00
The required 100% consensus also means that a very small minority can block a decision. That is a desired feature but it comes with a responsibility. When a small minority or even an individual feels very strongly that a proposed decision is not correct they have the option to block a decision. This does not stop a decision but gives the opposers 1 week of time. During that week the minority has the task to convince fellow members of their viewpoint.
### week 2
2018-04-28 14:10:14 +00:00
2018-04-28 19:05:46 +00:00
The point is discussed again but now a rough consensus of 80% is applied to reach a decision (https://en.wikipedia.org/wiki/Rough_consensus). If the small minority of last week was not able to convince enough fellow members the decision will be passed with rough consensus of 80%. When their viewpoint makes enough sense to fellow members, critical mass must be found to reach a new compromise. All members joining the discussion must strive to reach the rough consensus, to build the compromise. Not doing so is not being excellent.
2018-04-28 14:10:14 +00:00
### week 3
2018-04-28 14:10:14 +00:00
2018-04-28 19:11:06 +00:00
When all has failed, or the problem is too controversial, but a decision is still required, the point system below will be used to reach a decision.
2014-05-06 20:00:56 +00:00
### Point system
The point system is a **last-resort** option. This should not be the general process of resolving conflicts. If the space is starting to use this too much, that means that there is a structural problem in the group dynamic.
2014-05-06 20:16:00 +00:00
2014-05-06 20:00:56 +00:00
**The point system has a few basic rules:**
2018-04-28 14:10:14 +00:00
* Each voter has a certain number of points that he can distribute over the different proposals.
* The proposal with the most points wins.
* In case of tie; revote.
* **Number of points per voter =** `(#_of_options * 2 ) + 1`
* Results should be given to the group in binary format: what proposal won and what lost. This is to strengthen the support of the decision.
2014-05-06 20:16:00 +00:00
2014-05-06 20:00:56 +00:00
"No decision" is worse than a "bad decision". Conflict has to be solved eventually. That is why there is this last-resort option. However, we want to discourage people from blocking consensus. The point system has the following advantages:
2018-04-28 14:10:14 +00:00
* The outcome is not always clear because balanced ideas can still win, even if the minority would vote for them.
* The minority will gain from convincing the majority that their idea is not completely ridiculous.
* People have the ability to vote for, and thereby support, multiple ideas.
2018-04-28 19:05:46 +00:00
In the point system, every voter gets some points that they can distribute between the different options.
2014-05-06 20:00:56 +00:00
#### Examples
| Vote without points | Points to A | Points to B |
| ------------------------------- |:------------------------------:| --------------:|
| A | 3 | 2 |
| A | 4 |1 |
| A | 3 | 2 |
| A | 3 | 2 |
| A | 4 | 1 |
| A | 3 | 2 |
| B | 2 | 3 |
| B | 0| 5 |
| B | 1 | 4 |
| B | 1 | 4 |
| TOTAL | 24 | **26** |
As you can see in this example, a less-extreme proposal that, on first sight, has the minority of the votes, can still win. This gives the minority the incentive to come up with moderate ideas that everyone can agree with.
2014-05-06 20:00:56 +00:00
| Vote without points | Points to A | Points to B |
| ------------------------------- |:------------------------------:| --------------:|
| A | 4 | 1 |
| A | 5 | 0 |
| A | 5 | 0 |
| A | 4 | 1 |
| A | 5 | 0 |
| A | 5 | 0 |
| B | 4 | 1 |
| B | 0| 5 |
| B | 0 | 5 |
| B | 0 | 5 |
| TOTAL | **32** | 18 |
However, extreme ideas will not be able to "win". With extreme ideas, the outcome of this model will be the same as with a +50% majority.
2014-05-06 20:00:56 +00:00
## Individual
2018-04-28 19:05:46 +00:00
* Every individual has their own responsibilities as a member of the group, and thus requires their own decision model.
2014-05-06 20:00:56 +00:00
* An individual is free to choose their own decision model, but keep in mind that you are part of a group.