@forwardimpact/pathway 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/commands/agent.js +20 -20
- package/app/commands/index.js +4 -3
- package/app/commands/job.js +9 -4
- package/app/commands/skill.js +56 -2
- package/app/commands/tool.js +112 -0
- package/app/components/builder.js +6 -3
- package/app/components/checklist.js +6 -4
- package/app/components/markdown-textarea.js +132 -0
- package/app/css/components/forms.css +45 -0
- package/app/css/components/layout.css +12 -0
- package/app/css/components/surfaces.css +22 -0
- package/app/css/pages/detail.css +50 -0
- package/app/css/pages/job-builder.css +0 -42
- package/app/formatters/agent/profile.js +61 -120
- package/app/formatters/agent/skill.js +48 -60
- package/app/formatters/grade/dom.js +2 -4
- package/app/formatters/job/description.js +74 -82
- package/app/formatters/job/dom.js +45 -179
- package/app/formatters/job/markdown.js +17 -13
- package/app/formatters/shared.js +65 -2
- package/app/formatters/skill/dom.js +57 -2
- package/app/formatters/skill/markdown.js +18 -0
- package/app/formatters/skill/shared.js +12 -4
- package/app/formatters/stage/microdata.js +1 -1
- package/app/formatters/stage/shared.js +1 -1
- package/app/formatters/tool/shared.js +72 -0
- package/app/handout-main.js +7 -7
- package/app/handout.html +7 -0
- package/app/index.html +10 -3
- package/app/lib/card-mappers.js +64 -17
- package/app/lib/form-controls.js +64 -1
- package/app/lib/render.js +12 -1
- package/app/lib/template-loader.js +9 -0
- package/app/lib/yaml-loader.js +12 -1
- package/app/main.js +4 -0
- package/app/model/agent.js +26 -18
- package/app/model/derivation.js +3 -3
- package/app/model/levels.js +2 -0
- package/app/model/loader.js +12 -1
- package/app/model/validation.js +74 -8
- package/app/pages/agent-builder.js +8 -5
- package/app/pages/job.js +28 -4
- package/app/pages/landing.js +34 -14
- package/app/pages/progress.js +6 -5
- package/app/pages/self-assessment.js +10 -8
- package/app/pages/skill.js +5 -17
- package/app/pages/stage.js +10 -6
- package/app/pages/tool.js +50 -0
- package/app/slides/index.js +25 -25
- package/app/slides.html +7 -0
- package/bin/pathway.js +41 -27
- package/examples/capabilities/business.yaml +17 -17
- package/examples/capabilities/delivery.yaml +51 -36
- package/examples/capabilities/reliability.yaml +127 -114
- package/examples/capabilities/scale.yaml +38 -36
- package/examples/disciplines/engineering_management.yaml +1 -1
- package/examples/framework.yaml +12 -0
- package/examples/grades.yaml +18 -19
- package/examples/self-assessments.yaml +1 -1
- package/package.json +1 -1
- package/templates/job.template.md +47 -0
- package/templates/skill.template.md +31 -12
package/examples/grades.yaml
CHANGED
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
managementTitle: Manager
|
|
29
29
|
typicalExperienceRange: "2-5"
|
|
30
30
|
ordinalRank: 2
|
|
31
|
-
qualificationSummary:
|
|
32
|
-
|
|
33
|
-
independently and contribute effectively to team projects.
|
|
31
|
+
qualificationSummary: >
|
|
32
|
+
{typicalExperienceRange} years of relevant experience. Demonstrated ability
|
|
33
|
+
to complete tasks independently and contribute effectively to team projects.
|
|
34
34
|
baseSkillLevels:
|
|
35
35
|
primary: foundational
|
|
36
36
|
secondary: foundational
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
managementTitle: Senior Manager
|
|
51
51
|
typicalExperienceRange: "5-8"
|
|
52
52
|
ordinalRank: 3
|
|
53
|
-
qualificationSummary:
|
|
54
|
-
|
|
55
|
-
initiatives and mentoring team members.
|
|
53
|
+
qualificationSummary: >
|
|
54
|
+
{typicalExperienceRange} years of relevant experience. Proven track record
|
|
55
|
+
of leading technical initiatives and mentoring team members.
|
|
56
56
|
baseSkillLevels:
|
|
57
57
|
primary: practitioner
|
|
58
58
|
secondary: working
|
|
@@ -71,9 +71,9 @@
|
|
|
71
71
|
managementTitle: Director
|
|
72
72
|
typicalExperienceRange: "8-12"
|
|
73
73
|
ordinalRank: 4
|
|
74
|
-
qualificationSummary:
|
|
75
|
-
|
|
76
|
-
technical projects with multi-team impact.
|
|
74
|
+
qualificationSummary: >
|
|
75
|
+
{typicalExperienceRange} years of relevant experience. Extensive experience
|
|
76
|
+
leading complex technical projects with multi-team impact.
|
|
77
77
|
baseSkillLevels:
|
|
78
78
|
primary: expert
|
|
79
79
|
secondary: practitioner
|
|
@@ -82,10 +82,10 @@
|
|
|
82
82
|
breadthCriteria:
|
|
83
83
|
practitioner: 4
|
|
84
84
|
expectations:
|
|
85
|
-
impactScope: Multi-team initiatives with
|
|
85
|
+
impactScope: Multi-team initiatives with area-wide impact
|
|
86
86
|
autonomyExpectation: Set own direction within broader strategic goals
|
|
87
87
|
influenceScope:
|
|
88
|
-
Influence
|
|
88
|
+
Influence teams in your area and be recognized as a domain expert
|
|
89
89
|
complexityHandled:
|
|
90
90
|
Very high complexity driving through ambiguity to deliver results
|
|
91
91
|
|
|
@@ -94,9 +94,10 @@
|
|
|
94
94
|
managementTitle: VP of Engineering
|
|
95
95
|
typicalExperienceRange: "12+"
|
|
96
96
|
ordinalRank: 5
|
|
97
|
-
qualificationSummary:
|
|
98
|
-
|
|
99
|
-
track record of organization-wide technical
|
|
97
|
+
qualificationSummary: >
|
|
98
|
+
{typicalExperienceRange} years of relevant experience. Deep technical
|
|
99
|
+
expertise with a proven track record of organization-wide technical
|
|
100
|
+
leadership.
|
|
100
101
|
baseSkillLevels:
|
|
101
102
|
primary: expert
|
|
102
103
|
secondary: expert
|
|
@@ -106,11 +107,9 @@
|
|
|
106
107
|
practitioner: 5
|
|
107
108
|
expert: 2
|
|
108
109
|
expectations:
|
|
109
|
-
impactScope:
|
|
110
|
-
Organization-wide technical strategy and architectural direction
|
|
110
|
+
impactScope: Business unit technical strategy and architectural direction
|
|
111
111
|
autonomyExpectation:
|
|
112
112
|
Define strategic direction and be accountable for outcomes
|
|
113
113
|
influenceScope:
|
|
114
|
-
Shape
|
|
115
|
-
complexityHandled:
|
|
116
|
-
Organizational-scale complexity creating clarity from chaos
|
|
114
|
+
Shape practices across the business unit and maintain external visibility
|
|
115
|
+
complexityHandled: Business unit complexity creating clarity from ambiguity
|
package/package.json
CHANGED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# {{title}}
|
|
2
|
+
|
|
3
|
+
- **Level:** {{gradeId}}
|
|
4
|
+
- **Experience:** {{typicalExperienceRange}}
|
|
5
|
+
{{#trackName}}- **Track:** {{trackName}}
|
|
6
|
+
{{/trackName}}
|
|
7
|
+
|
|
8
|
+
## ROLE SUMMARY
|
|
9
|
+
|
|
10
|
+
{{{roleSummary}}}
|
|
11
|
+
|
|
12
|
+
{{#trackRoleContext}}
|
|
13
|
+
{{{trackRoleContext}}}
|
|
14
|
+
|
|
15
|
+
{{/trackRoleContext}}
|
|
16
|
+
{{#expectationsParagraph}}
|
|
17
|
+
{{{expectationsParagraph}}}
|
|
18
|
+
|
|
19
|
+
{{/expectationsParagraph}}
|
|
20
|
+
|
|
21
|
+
## ROLE RESPONSIBILITIES
|
|
22
|
+
|
|
23
|
+
{{#responsibilities}}
|
|
24
|
+
- **{{capabilityName}}:** {{responsibility}}
|
|
25
|
+
{{/responsibilities}}
|
|
26
|
+
|
|
27
|
+
## ROLE BEHAVIOURS
|
|
28
|
+
|
|
29
|
+
{{#behaviours}}
|
|
30
|
+
- **{{behaviourName}}:** {{maturityDescription}}
|
|
31
|
+
{{/behaviours}}
|
|
32
|
+
|
|
33
|
+
{{#skillLevels}}
|
|
34
|
+
|
|
35
|
+
## {{levelHeading}}
|
|
36
|
+
|
|
37
|
+
{{#skills}}
|
|
38
|
+
- **{{skillName}}:** {{levelDescription}}
|
|
39
|
+
{{/skills}}
|
|
40
|
+
|
|
41
|
+
{{/skillLevels}}
|
|
42
|
+
|
|
43
|
+
## QUALIFICATIONS
|
|
44
|
+
|
|
45
|
+
{{#qualificationSummary}}
|
|
46
|
+
{{{qualificationSummary}}}
|
|
47
|
+
{{/qualificationSummary}}
|
|
@@ -1,27 +1,46 @@
|
|
|
1
1
|
---
|
|
2
2
|
|
|
3
|
-
name: {{name}}
|
|
4
|
-
|
|
3
|
+
name: {{name}}
|
|
4
|
+
description: |
|
|
5
|
+
{{#descriptionLines}} {{{.}}}
|
|
6
|
+
{{/descriptionLines}}
|
|
7
|
+
|
|
8
|
+
{{#useWhenLines.length}} **Use When:** {{#useWhenLines}}{{{.}}}
|
|
9
|
+
{{/useWhenLines}}{{/useWhenLines.length}}---
|
|
5
10
|
|
|
6
11
|
# {{{title}}}
|
|
7
12
|
|
|
8
|
-
|
|
13
|
+
{{#useWhenLines.length}}
|
|
14
|
+
**Use This Skill When:** {{#useWhenLines}}{{{.}}}
|
|
15
|
+
{{/useWhenLines}}{{/useWhenLines.length}}
|
|
9
16
|
|
|
17
|
+
## Stage Guidance
|
|
10
18
|
{{#stages}}
|
|
11
19
|
|
|
12
20
|
### {{stageName}} Stage
|
|
13
21
|
|
|
14
22
|
**Focus:** {{{focus}}}
|
|
15
23
|
|
|
16
|
-
**Activities:**
|
|
17
|
-
|
|
18
|
-
- {{{.}}}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
{{/
|
|
24
|
+
**Activities:**
|
|
25
|
+
{{#activities}}
|
|
26
|
+
- {{{.}}}
|
|
27
|
+
{{/activities}}
|
|
28
|
+
|
|
29
|
+
**Ready for {{nextStageName}} when:**
|
|
30
|
+
{{#ready}}
|
|
31
|
+
- [ ] {{{.}}}
|
|
32
|
+
{{/ready}}
|
|
33
|
+
{{/stages}}
|
|
34
|
+
{{#toolReferences.length}}
|
|
35
|
+
|
|
36
|
+
## Recommended Tools
|
|
37
|
+
|
|
38
|
+
| Tool | Use When |
|
|
39
|
+
|------|----------|
|
|
40
|
+
{{#toolReferences}}
|
|
41
|
+
| {{#url}}[{{{name}}}]({{{url}}}){{/url}}{{^url}}{{{name}}}{{/url}} | {{{useWhen}}} |
|
|
42
|
+
{{/toolReferences}}
|
|
43
|
+
{{/toolReferences.length}} {{#reference}}
|
|
25
44
|
|
|
26
45
|
## Reference
|
|
27
46
|
|