forked from arlobelshee/AgileEngineeringFluency
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stages_of_practice_map.html
228 lines (205 loc) · 11.3 KB
/
Stages_of_practice_map.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
<!DOCTYPE html>
<html>
<head>
<title>Agile Engineering Fluency Stages</title>
<script type="text/javascript" src="static/js/layout.js">
</script>
<script type="text/javascript" src="stages_data.js">
</script>
<script type="text/javascript" src="static/js/textile.js">
</script>
<script type="text/javascript" src="static/js/knockout-3.1.0.js">
</script>
<script type="text/javascript" src="static/js/history1.8/native.history.js">
</script>
<script type="text/javascript">
function start() {
extend_ko();
var vm = new ViewModel();
vm.reset_data_to(load_data());
vm.begin_tracking_history();
ko.applyBindings(vm);
}
</script>
<link href="https://fonts.googleapis.com/css?family=Lato|Oswald" rel="stylesheet">
<link rel="stylesheet" href="static/css/layout.css" />
<style media="print">
.options_corner {
display: none;
}
.legend {
position: absolute;
}
.display_port {
width: 100%;
}
.detail_pane {
display: none;
}
</style>
</head>
<body onload="start();">
<div class="display_port" data-bind="css: { extra_scroll_space: expanded }">
<div class="main_pane" data-bind="stages: app, with: app">
<canvas id="skillsCanvas" width="3220" height="1280" class="drawing canvas"></canvas>
<canvas id="debugCanvas" class="debug canvas"></canvas>
<!-- ko foreach: levels -->
<h1 class="level_title" data-bind="style: { top: label_position.top, left: label_position.left, width: label_position.width }, text: name, click: $parent.show_level_details"></h1>
<!-- ko if: help_to_request -->
<div class="help_action" data-bind="text: help_to_request, style: { top: label_position.top, left: label_position.left }"></div>
<!-- /ko -->
<!-- /ko -->
<!-- ko foreach: skills -->
<div class="skill_text" data-bind="style: { top: label_position.top, left: label_position.left }, css {key: is_key, expanded: _id == ($parent.focal_skill() ? $parent.focal_skill()._id : null) }, click: $parent.show_skill_details">
<span class="name" data-bind="text: name"></span>
</div>
<!-- ko if: help_to_request -->
<div class="help_action" data-bind="text: help_to_request, style: { top: label_position.top, left: label_position.left }"></div>
<!-- /ko -->
<!-- /ko -->
</div>
<p class="copyright">View: <a href="http://bit.ly/AgileEngineeringStages">http://bit.ly/AgileEngineeringStages</a>, print (PDF): <a href="http://bit.ly/AgileEngineeringStagesPdf">http://bit.ly/AgileEngineeringStagesPdf</a>.
Version <span data-bind="text: app.version"></span>. Copyright © Innovating Teams, LLC, 2016.</p>
</div>
<div class="detail_pane">
<div class="how_to">
<p>View details for any practice by clicking it on the map.</p>
<header>
<h1 class="title">Agile Engineering Fluency</h1>
<p class="tagline">A model for undertanding the specific proficiencies involved in creating a good <a href="http://agilefluency.com/">2+star agile</a> team.</p>
</header>
<article>
<p>Teams develop by gaining fluency at specific proficiencies. Those proficiencies seem to follow common patterns: later
proficiencies require fluency at lower-level proficiencies.</p>
<h2>Why fluency?</h2>
<p>Fluency means the ability to perform some proficiency without thought and in all circumstances. You are fluent at the
things that you do when you are behind on a critical deadline and dealing with a live-site issue in the middle of the
night with a customer on the line. When the chips are down and stress is high, you will perform using the techniques
at which you are fluent.</p>
<p>Outcomes are determined mostly by the stages at which everyone on your team has full fluency. The things at which you
are aspiring (you do them on your best days) will not give consistent results. Your overall result will be determined
more by your normal and worst days than by your best. For this reason, we recommend that teams focus on developing fluency
at various levels, not just aspiring to basic capability at the proficiency.</p>
<h2>Why not skip levels?</h2>
<p>Some proficiencies are not even understandable or valued until fluency is achieved with some set of prior proficiencies.
The tight inner dev loop (red-green-refactor, with minimum time in red and green steps) is one such.</p>
<p>Until a team has gained full fluency at reflective design, they will not be able to create good designs in such small
steps. R-G-R is actively harmful for early teams. Yet once a team masters reflective design, R-G-R gives them more frequent
data and assessment of the results of their designs: they couldn't get as good a design in any other way.</p>
<h2>What the model gives you</h2>
<p>This model lays out the <a href="Stages_of_practice_map.html">Agile Engineering stages</a> of proficiency. Each stage
shows what it is, its pre-reqs, what it obsoletes, how to gain basic proficiency, how to attain full fluency, and some
of the benefits and costs caused by fluency at that stage.</p>
<h2>Contributing</h2>
<p>The model is editable. We welcome insights. To contribute, fork the <a href="https://github.com/arlobelshee/AgileEngineeringFluency">github project</a> and send me a pull request. All of the data is stored in stages_data.js. You can edit the markdown live on the site,
then copy the contents for this file from a textarea in the options pane (open using the little curled up corner in
the lower-left).
</p>
<p>All contributions are given under the license for this project. By issuing a pull request, you indicate that you understand
all copyright and other IP issues, have rights to your contribution, and are releasing such rights to that contribution
such that we can include it with the rest of the model for immediate publication.</p>
</article>
</div>
<div class="legend" data-bind="with: app">
<h2>Legend</h2>
<div id="show_label">Show</div>
<table>
<tbody>
<!-- ko foreach: components -->
<tr class="entry">
<td class="show"><input type="checkbox" data-bind="checked: show_dependencies" /></td>
<td>
<div class="solid_line" data-bind="style: { 'border-color': color }"> </div>
</td>
<td class="category" data-bind="text: name"></td>
<td class="techniques" data-bind="text: '(' + techniques() + ')'"></td>
</tr>
<!-- /ko -->
<tr class="entry">
<td class="show"><input type="checkbox" data-bind="checked: show_all_dependencies" /></td>
<td colspan="2">All</td>
</tr>
<!-- ko foreach: kinds -->
<tr class="entry">
<td class="show"> </td>
<td>
<div class="solid_line" data-bind="style: { 'border-style': border_style }"> </div>
</td>
<td data-bind="text: description" colspan="2"></td>
</tr>
<!-- /ko -->
</tbody>
</table>
</div>
<div class="skill focus_dialog hidden" data-bind="css: { hidden: !app.focal_skill(), editing: app.editing() }, click: app.hide_details">
<div class="contents" data-bind="click: function(){}, clickBubble: false, with: app.focal_skill()">
<h1 class="name" data-bind="text: name"></h1>
<p class="stage"><span class="era" data-bind="text: level.name()"></span><span class="purpose" data-bind="text: component.name()"></span></p>
<div class="relationships">
<script type="text/html" id="relationships-template">
<ul>
<li data-bind="text: relationship"></li>
<!-- ko foreach: { data: data, as: 'req' } -->
<li class="relation"><a href="#" data-bind="text: req.skill.name(), css: { optional: req.kind._id !== 'IS_REQUIRED' }, attr: { title: req.kind.name }, click: function(link) { $root.app.show_skill_details(link.skill); }, clickBubble: false"></a></li>
<!-- /ko -->
</ul>
</script>
<div data-bind="template: { name: 'relationships-template', data: { relationship: 'Depends on', data: requires } }"></div>
<div data-bind="template: { name: 'relationships-template', data: { relationship: 'Enables', data: enables } }"></div>
<!--<div data-bind="template: { name: 'relationships-template', data: { relationship: 'Obsoletes', data: obsoletes } }"></div>-->
</div>
<div class="description_block">
<div class="edit_button" data-bind="click: function() { $root.app.editing(true); }, clickBubble: false"></div>
<div class="display" data-bind="html: description_display, click: function() { return true; }, clickBubble: false"></div>
<div class="editor">
<button data-bind="click: function() { $root.app.editing(false); }, clickBubble: false">Close</button>
<textarea rows="25" cols="50" data-bind="value: description, valueUpdate: 'afterkeydown'"></textarea>
<p>This uses <a href="https://txstyle.org/">Textile formatting</a>.</p>
<p class="label">Help needed:</p>
<!-- ko foreach: { data: $root.app.kinds_of_help, as: 'help' } -->
<p><input type="checkbox" data-bind="checkedValue: help, checked: $parent.help_needed" /> <span data-bind="text: help.name"></span></p>
<!-- /ko -->
</div>
</div>
</div>
</div>
<div class="level focus_dialog hidden" data-bind="css: { hidden: !app.focal_level(), editing: app.editing() }, click: app.hide_details">
<div class="contents" data-bind="click: function(){}, clickBubble: false, with: app.focal_level()">
<h1 class="name" data-bind="text: name"></h1>
<div class="description_block">
<div class="edit_button" data-bind="click: function() { $root.app.editing(true); }, clickBubble: false"></div>
<div class="display" data-bind="html: description_display, click: function() { return true; }, clickBubble: false"></div>
<div class="editor">
<button data-bind="click: function() { $root.app.editing(false); }, clickBubble: false">Close</button>
<textarea rows="25" cols="50" data-bind="value: description, valueUpdate: 'afterkeydown'"></textarea>
<p>This uses <a href="https://txstyle.org/">Textile formatting</a>.</p>
<p class="label">Help needed:</p>
<!-- ko foreach: { data: $root.app.kinds_of_help, as: 'help' } -->
<p><input type="checkbox" data-bind="checkedValue: help, checked: $parent.help_needed" /> <span data-bind="text: help.name"></span></p>
<!-- /ko -->
</div>
</div>
</div>
</div>
</div>
<img class="options_corner" src="static/img/page-fold.png" data-bind="click: open_options" />
<div class="options_pane hidden" data-bind="css: { hidden: !expanded() }">
<p style="padding-left:2em;">
Copy JSON from here to the stages_data.js file.
<button data-bind="click: close_options" style="margin-left:2em;">Close</button>
<span class="error_display" data-bind="text: app.error_message()"></span>
</p>
<textarea cols="60" rows="20" data-bind="value: json_blob, valueUpdate: 'afterkeydown', css: { invalid: !app.valid() }"></textarea>
<div class="option">
<p>How I want to help today:</p>
<ul>
<li><input type="radio" data-bind="checked: app.ask_for_help" value="" name="howToHelp" />No thanks, I just want to read.</li>
<li><input type="radio" data-bind="checked: app.ask_for_help" value="ALL" name="howToHelp" />I'll do anything.</li>
<!-- ko foreach: { data: app.kinds_of_help, as: 'help' } -->
<li><input type="radio" data-bind="checked: $root.app.ask_for_help, value: help._id" name="howToHelp" /><span data-bind="text: help.name"></span></li>
<!-- /ko -->
</ul>
</div>
</div>
</body>
</html>