@forwardimpact/pathway 0.1.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/LICENSE +201 -0
- package/README.md +104 -0
- package/app/commands/agent.js +430 -0
- package/app/commands/behaviour.js +61 -0
- package/app/commands/command-factory.js +211 -0
- package/app/commands/discipline.js +58 -0
- package/app/commands/driver.js +94 -0
- package/app/commands/grade.js +60 -0
- package/app/commands/index.js +20 -0
- package/app/commands/init.js +67 -0
- package/app/commands/interview.js +68 -0
- package/app/commands/job.js +157 -0
- package/app/commands/progress.js +77 -0
- package/app/commands/questions.js +179 -0
- package/app/commands/serve.js +143 -0
- package/app/commands/site.js +121 -0
- package/app/commands/skill.js +76 -0
- package/app/commands/stage.js +129 -0
- package/app/commands/track.js +70 -0
- package/app/components/action-buttons.js +66 -0
- package/app/components/behaviour-profile.js +53 -0
- package/app/components/builder.js +341 -0
- package/app/components/card.js +98 -0
- package/app/components/checklist.js +145 -0
- package/app/components/comparison-radar.js +237 -0
- package/app/components/detail.js +230 -0
- package/app/components/error-page.js +72 -0
- package/app/components/grid.js +109 -0
- package/app/components/list.js +120 -0
- package/app/components/modifier-table.js +142 -0
- package/app/components/nav.js +64 -0
- package/app/components/progression-table.js +320 -0
- package/app/components/radar-chart.js +102 -0
- package/app/components/skill-matrix.js +97 -0
- package/app/css/base.css +56 -0
- package/app/css/bundles/app.css +40 -0
- package/app/css/bundles/handout.css +43 -0
- package/app/css/bundles/slides.css +40 -0
- package/app/css/components/badges.css +215 -0
- package/app/css/components/buttons.css +101 -0
- package/app/css/components/forms.css +105 -0
- package/app/css/components/layout.css +209 -0
- package/app/css/components/nav.css +166 -0
- package/app/css/components/progress.css +166 -0
- package/app/css/components/states.css +82 -0
- package/app/css/components/surfaces.css +243 -0
- package/app/css/components/tables.css +362 -0
- package/app/css/components/typography.css +122 -0
- package/app/css/components/utilities.css +41 -0
- package/app/css/pages/agent-builder.css +391 -0
- package/app/css/pages/assessment-results.css +453 -0
- package/app/css/pages/detail.css +59 -0
- package/app/css/pages/interview-builder.css +148 -0
- package/app/css/pages/job-builder.css +134 -0
- package/app/css/pages/landing.css +92 -0
- package/app/css/pages/lifecycle.css +118 -0
- package/app/css/pages/progress-builder.css +274 -0
- package/app/css/pages/self-assessment.css +502 -0
- package/app/css/reset.css +50 -0
- package/app/css/tokens.css +153 -0
- package/app/css/views/handout.css +30 -0
- package/app/css/views/print.css +608 -0
- package/app/css/views/slide-animations.css +113 -0
- package/app/css/views/slide-base.css +330 -0
- package/app/css/views/slide-sections.css +597 -0
- package/app/css/views/slide-tables.css +275 -0
- package/app/formatters/agent/dom.js +540 -0
- package/app/formatters/agent/profile.js +133 -0
- package/app/formatters/agent/skill.js +58 -0
- package/app/formatters/behaviour/dom.js +91 -0
- package/app/formatters/behaviour/markdown.js +54 -0
- package/app/formatters/behaviour/shared.js +64 -0
- package/app/formatters/discipline/dom.js +187 -0
- package/app/formatters/discipline/markdown.js +87 -0
- package/app/formatters/discipline/shared.js +131 -0
- package/app/formatters/driver/dom.js +103 -0
- package/app/formatters/driver/shared.js +92 -0
- package/app/formatters/grade/dom.js +208 -0
- package/app/formatters/grade/markdown.js +94 -0
- package/app/formatters/grade/shared.js +86 -0
- package/app/formatters/index.js +50 -0
- package/app/formatters/interview/dom.js +97 -0
- package/app/formatters/interview/markdown.js +66 -0
- package/app/formatters/interview/shared.js +332 -0
- package/app/formatters/job/description.js +176 -0
- package/app/formatters/job/dom.js +411 -0
- package/app/formatters/job/markdown.js +102 -0
- package/app/formatters/progress/dom.js +135 -0
- package/app/formatters/progress/markdown.js +86 -0
- package/app/formatters/progress/shared.js +339 -0
- package/app/formatters/questions/json.js +43 -0
- package/app/formatters/questions/markdown.js +303 -0
- package/app/formatters/questions/shared.js +274 -0
- package/app/formatters/questions/yaml.js +76 -0
- package/app/formatters/shared.js +71 -0
- package/app/formatters/skill/dom.js +168 -0
- package/app/formatters/skill/markdown.js +109 -0
- package/app/formatters/skill/shared.js +125 -0
- package/app/formatters/stage/dom.js +135 -0
- package/app/formatters/stage/index.js +12 -0
- package/app/formatters/stage/shared.js +111 -0
- package/app/formatters/track/dom.js +128 -0
- package/app/formatters/track/markdown.js +105 -0
- package/app/formatters/track/shared.js +181 -0
- package/app/handout-main.js +421 -0
- package/app/handout.html +21 -0
- package/app/index.html +59 -0
- package/app/lib/card-mappers.js +173 -0
- package/app/lib/cli-output.js +270 -0
- package/app/lib/error-boundary.js +70 -0
- package/app/lib/errors.js +49 -0
- package/app/lib/form-controls.js +47 -0
- package/app/lib/job-cache.js +86 -0
- package/app/lib/markdown.js +114 -0
- package/app/lib/radar.js +866 -0
- package/app/lib/reactive.js +77 -0
- package/app/lib/render.js +212 -0
- package/app/lib/router-core.js +160 -0
- package/app/lib/router-pages.js +16 -0
- package/app/lib/router-slides.js +202 -0
- package/app/lib/state.js +148 -0
- package/app/lib/utils.js +14 -0
- package/app/lib/yaml-loader.js +327 -0
- package/app/main.js +213 -0
- package/app/model/agent.js +702 -0
- package/app/model/checklist.js +137 -0
- package/app/model/derivation.js +699 -0
- package/app/model/index-generator.js +71 -0
- package/app/model/interview.js +539 -0
- package/app/model/job.js +222 -0
- package/app/model/levels.js +591 -0
- package/app/model/loader.js +564 -0
- package/app/model/matching.js +858 -0
- package/app/model/modifiers.js +158 -0
- package/app/model/profile.js +266 -0
- package/app/model/progression.js +507 -0
- package/app/model/validation.js +1385 -0
- package/app/pages/agent-builder.js +823 -0
- package/app/pages/assessment-results.js +507 -0
- package/app/pages/behaviour.js +70 -0
- package/app/pages/discipline.js +71 -0
- package/app/pages/driver.js +106 -0
- package/app/pages/grade.js +117 -0
- package/app/pages/interview-builder.js +50 -0
- package/app/pages/interview.js +304 -0
- package/app/pages/job-builder.js +50 -0
- package/app/pages/job.js +58 -0
- package/app/pages/landing.js +305 -0
- package/app/pages/progress-builder.js +58 -0
- package/app/pages/progress.js +495 -0
- package/app/pages/self-assessment.js +729 -0
- package/app/pages/skill.js +113 -0
- package/app/pages/stage.js +231 -0
- package/app/pages/track.js +69 -0
- package/app/slide-main.js +360 -0
- package/app/slides/behaviour.js +38 -0
- package/app/slides/chapter.js +82 -0
- package/app/slides/discipline.js +40 -0
- package/app/slides/driver.js +39 -0
- package/app/slides/grade.js +32 -0
- package/app/slides/index.js +198 -0
- package/app/slides/interview.js +58 -0
- package/app/slides/job.js +55 -0
- package/app/slides/overview.js +126 -0
- package/app/slides/progress.js +83 -0
- package/app/slides/skill.js +40 -0
- package/app/slides/track.js +39 -0
- package/app/slides.html +56 -0
- package/app/types.js +147 -0
- package/bin/pathway.js +489 -0
- package/examples/agents/.claude/skills/architecture-design/SKILL.md +88 -0
- package/examples/agents/.claude/skills/cloud-platforms/SKILL.md +90 -0
- package/examples/agents/.claude/skills/code-quality-review/SKILL.md +67 -0
- package/examples/agents/.claude/skills/data-modeling/SKILL.md +99 -0
- package/examples/agents/.claude/skills/developer-experience/SKILL.md +99 -0
- package/examples/agents/.claude/skills/devops-cicd/SKILL.md +96 -0
- package/examples/agents/.claude/skills/full-stack-development/SKILL.md +90 -0
- package/examples/agents/.claude/skills/knowledge-management/SKILL.md +100 -0
- package/examples/agents/.claude/skills/pattern-generalization/SKILL.md +102 -0
- package/examples/agents/.claude/skills/sre-practices/SKILL.md +117 -0
- package/examples/agents/.claude/skills/technical-debt-management/SKILL.md +123 -0
- package/examples/agents/.claude/skills/technical-writing/SKILL.md +129 -0
- package/examples/agents/.github/agents/se-platform-code.agent.md +181 -0
- package/examples/agents/.github/agents/se-platform-plan.agent.md +178 -0
- package/examples/agents/.github/agents/se-platform-review.agent.md +113 -0
- package/examples/agents/.vscode/settings.json +8 -0
- package/examples/behaviours/_index.yaml +8 -0
- package/examples/behaviours/outcome_ownership.yaml +44 -0
- package/examples/behaviours/polymathic_knowledge.yaml +42 -0
- package/examples/behaviours/precise_communication.yaml +40 -0
- package/examples/behaviours/relentless_curiosity.yaml +38 -0
- package/examples/behaviours/systems_thinking.yaml +41 -0
- package/examples/capabilities/_index.yaml +8 -0
- package/examples/capabilities/business.yaml +251 -0
- package/examples/capabilities/delivery.yaml +352 -0
- package/examples/capabilities/people.yaml +100 -0
- package/examples/capabilities/reliability.yaml +318 -0
- package/examples/capabilities/scale.yaml +394 -0
- package/examples/disciplines/_index.yaml +5 -0
- package/examples/disciplines/data_engineering.yaml +76 -0
- package/examples/disciplines/software_engineering.yaml +76 -0
- package/examples/drivers.yaml +205 -0
- package/examples/framework.yaml +58 -0
- package/examples/grades.yaml +118 -0
- package/examples/questions/behaviours/outcome_ownership.yaml +52 -0
- package/examples/questions/behaviours/polymathic_knowledge.yaml +48 -0
- package/examples/questions/behaviours/precise_communication.yaml +55 -0
- package/examples/questions/behaviours/relentless_curiosity.yaml +51 -0
- package/examples/questions/behaviours/systems_thinking.yaml +53 -0
- package/examples/questions/skills/architecture_design.yaml +54 -0
- package/examples/questions/skills/cloud_platforms.yaml +48 -0
- package/examples/questions/skills/code_quality.yaml +49 -0
- package/examples/questions/skills/data_modeling.yaml +46 -0
- package/examples/questions/skills/devops.yaml +47 -0
- package/examples/questions/skills/full_stack_development.yaml +48 -0
- package/examples/questions/skills/sre_practices.yaml +44 -0
- package/examples/questions/skills/stakeholder_management.yaml +49 -0
- package/examples/questions/skills/team_collaboration.yaml +43 -0
- package/examples/questions/skills/technical_writing.yaml +43 -0
- package/examples/self-assessments.yaml +66 -0
- package/examples/stages.yaml +76 -0
- package/examples/tracks/_index.yaml +6 -0
- package/examples/tracks/manager.yaml +53 -0
- package/examples/tracks/platform.yaml +54 -0
- package/examples/tracks/sre.yaml +58 -0
- package/examples/vscode-settings.yaml +22 -0
- package/package.json +68 -0
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
# Drivers - What outcomes matter?
|
|
2
|
+
# Organizational outcomes that productive teams achieve
|
|
3
|
+
# Links skills and behaviours to business impact
|
|
4
|
+
|
|
5
|
+
# Direction & Strategy
|
|
6
|
+
- id: clear_direction
|
|
7
|
+
name: Clear Direction
|
|
8
|
+
description:
|
|
9
|
+
The degree to which developers understand their team's mission, goals, and
|
|
10
|
+
alignment with the greater organization
|
|
11
|
+
contributingSkills:
|
|
12
|
+
- stakeholder_management
|
|
13
|
+
- technical_writing
|
|
14
|
+
contributingBehaviours:
|
|
15
|
+
- polymathic_knowledge
|
|
16
|
+
- systems_thinking
|
|
17
|
+
|
|
18
|
+
- id: say_on_priorities
|
|
19
|
+
name: Say on Priorities
|
|
20
|
+
description:
|
|
21
|
+
The involvement and influence developers hold in shaping their team's
|
|
22
|
+
direction and tasks
|
|
23
|
+
contributingSkills:
|
|
24
|
+
- stakeholder_management
|
|
25
|
+
- team_collaboration
|
|
26
|
+
contributingBehaviours:
|
|
27
|
+
- outcome_ownership
|
|
28
|
+
- relentless_curiosity
|
|
29
|
+
|
|
30
|
+
- id: requirements_quality
|
|
31
|
+
name: Requirements Quality
|
|
32
|
+
description:
|
|
33
|
+
How well specifications are defined for tasks and projects, encompassing
|
|
34
|
+
completeness and stability of requirements
|
|
35
|
+
contributingSkills:
|
|
36
|
+
- stakeholder_management
|
|
37
|
+
- technical_writing
|
|
38
|
+
- architecture_design
|
|
39
|
+
contributingBehaviours:
|
|
40
|
+
- precise_communication
|
|
41
|
+
- systems_thinking
|
|
42
|
+
|
|
43
|
+
# Delivery & Release
|
|
44
|
+
- id: ease_of_release
|
|
45
|
+
name: Ease of Release
|
|
46
|
+
description:
|
|
47
|
+
The amount of friction involved in releasing code to end-users, encompassing
|
|
48
|
+
validation, packaging, and deployment
|
|
49
|
+
contributingSkills:
|
|
50
|
+
- devops
|
|
51
|
+
- code_quality
|
|
52
|
+
- full_stack_development
|
|
53
|
+
- cloud_platforms
|
|
54
|
+
contributingBehaviours:
|
|
55
|
+
- outcome_ownership
|
|
56
|
+
- precise_communication
|
|
57
|
+
|
|
58
|
+
- id: test_efficiency
|
|
59
|
+
name: Test Efficiency
|
|
60
|
+
description:
|
|
61
|
+
The speed and stability of an automated test suite, affecting feedback loops
|
|
62
|
+
in the software development lifecycle
|
|
63
|
+
contributingSkills:
|
|
64
|
+
- full_stack_development
|
|
65
|
+
- code_quality
|
|
66
|
+
- devops
|
|
67
|
+
contributingBehaviours:
|
|
68
|
+
- outcome_ownership
|
|
69
|
+
- relentless_curiosity
|
|
70
|
+
|
|
71
|
+
- id: managing_tech_debt
|
|
72
|
+
name: Managing Tech Debt
|
|
73
|
+
description:
|
|
74
|
+
Continuously identifying, analyzing, and addressing technical debt to
|
|
75
|
+
maintain developer productivity
|
|
76
|
+
contributingSkills:
|
|
77
|
+
- code_quality
|
|
78
|
+
- architecture_design
|
|
79
|
+
contributingBehaviours:
|
|
80
|
+
- outcome_ownership
|
|
81
|
+
- systems_thinking
|
|
82
|
+
|
|
83
|
+
# Quality & Documentation
|
|
84
|
+
- id: code_review
|
|
85
|
+
name: Code Review
|
|
86
|
+
description:
|
|
87
|
+
The timeliness and quality of feedback received during code review, as well
|
|
88
|
+
as the experience of reviewing others' code
|
|
89
|
+
contributingSkills:
|
|
90
|
+
- code_quality
|
|
91
|
+
- team_collaboration
|
|
92
|
+
contributingBehaviours:
|
|
93
|
+
- precise_communication
|
|
94
|
+
- relentless_curiosity
|
|
95
|
+
|
|
96
|
+
- id: documentation
|
|
97
|
+
name: Documentation
|
|
98
|
+
description:
|
|
99
|
+
Helping developers obtain the information they need to understand and
|
|
100
|
+
complete technical tasks
|
|
101
|
+
contributingSkills:
|
|
102
|
+
- technical_writing
|
|
103
|
+
contributingBehaviours:
|
|
104
|
+
- precise_communication
|
|
105
|
+
- polymathic_knowledge
|
|
106
|
+
|
|
107
|
+
- id: codebase_experience
|
|
108
|
+
name: Codebase Experience
|
|
109
|
+
description:
|
|
110
|
+
The ease of understanding and modifying code, significantly affecting
|
|
111
|
+
overall developer experience
|
|
112
|
+
contributingSkills:
|
|
113
|
+
- code_quality
|
|
114
|
+
- architecture_design
|
|
115
|
+
contributingBehaviours:
|
|
116
|
+
- relentless_curiosity
|
|
117
|
+
- polymathic_knowledge
|
|
118
|
+
|
|
119
|
+
# Operations & Reliability
|
|
120
|
+
- id: incident_response
|
|
121
|
+
name: Incident Response
|
|
122
|
+
description:
|
|
123
|
+
How developers handle and resolve issues in their systems, including triage,
|
|
124
|
+
resolution, and communication
|
|
125
|
+
contributingSkills:
|
|
126
|
+
- sre_practices
|
|
127
|
+
- devops
|
|
128
|
+
- cloud_platforms
|
|
129
|
+
contributingBehaviours:
|
|
130
|
+
- outcome_ownership
|
|
131
|
+
- systems_thinking
|
|
132
|
+
|
|
133
|
+
# Learning & Growth
|
|
134
|
+
- id: learning_culture
|
|
135
|
+
name: Learning Culture
|
|
136
|
+
description:
|
|
137
|
+
The team characteristic of continuously improving and learning from past
|
|
138
|
+
experience
|
|
139
|
+
contributingSkills:
|
|
140
|
+
- team_collaboration
|
|
141
|
+
- technical_writing
|
|
142
|
+
contributingBehaviours:
|
|
143
|
+
- relentless_curiosity
|
|
144
|
+
- polymathic_knowledge
|
|
145
|
+
|
|
146
|
+
- id: experimentation
|
|
147
|
+
name: Experimentation
|
|
148
|
+
description:
|
|
149
|
+
Activities that generate new ideas, test hypotheses, and capture insights
|
|
150
|
+
from experiments
|
|
151
|
+
contributingSkills:
|
|
152
|
+
- data_modeling
|
|
153
|
+
- full_stack_development
|
|
154
|
+
contributingBehaviours:
|
|
155
|
+
- relentless_curiosity
|
|
156
|
+
- polymathic_knowledge
|
|
157
|
+
|
|
158
|
+
# Team & Collaboration
|
|
159
|
+
- id: connectedness
|
|
160
|
+
name: Connectedness
|
|
161
|
+
description:
|
|
162
|
+
The state of feeling linked and related to others at work, fostered through
|
|
163
|
+
communication and interaction
|
|
164
|
+
contributingSkills:
|
|
165
|
+
- team_collaboration
|
|
166
|
+
- stakeholder_management
|
|
167
|
+
contributingBehaviours:
|
|
168
|
+
- precise_communication
|
|
169
|
+
- polymathic_knowledge
|
|
170
|
+
|
|
171
|
+
- id: efficient_processes
|
|
172
|
+
name: Efficient Processes
|
|
173
|
+
description:
|
|
174
|
+
How effectively team members collaborate to design and deliver software
|
|
175
|
+
using principles and workflows
|
|
176
|
+
contributingSkills:
|
|
177
|
+
- team_collaboration
|
|
178
|
+
- devops
|
|
179
|
+
contributingBehaviours:
|
|
180
|
+
- precise_communication
|
|
181
|
+
- outcome_ownership
|
|
182
|
+
|
|
183
|
+
- id: deep_work
|
|
184
|
+
name: Deep Work
|
|
185
|
+
description:
|
|
186
|
+
The ability to focus on tasks without distraction, achieved by minimizing
|
|
187
|
+
interruptions and context switching
|
|
188
|
+
contributingSkills:
|
|
189
|
+
- architecture_design
|
|
190
|
+
- code_quality
|
|
191
|
+
contributingBehaviours:
|
|
192
|
+
- relentless_curiosity
|
|
193
|
+
- precise_communication
|
|
194
|
+
|
|
195
|
+
# User Focus
|
|
196
|
+
- id: leveraging_user_feedback
|
|
197
|
+
name: Leveraging User Feedback
|
|
198
|
+
description:
|
|
199
|
+
Collecting, analyzing, and taking action based on insights from end-users
|
|
200
|
+
contributingSkills:
|
|
201
|
+
- stakeholder_management
|
|
202
|
+
- data_modeling
|
|
203
|
+
contributingBehaviours:
|
|
204
|
+
- relentless_curiosity
|
|
205
|
+
- precise_communication
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Framework - High-level definitions about the Engineering Pathway
|
|
2
|
+
# Drives page content for landing page, entity list pages, and handout chapters
|
|
3
|
+
|
|
4
|
+
title: Engineering Pathway
|
|
5
|
+
emoji: "🧭"
|
|
6
|
+
tag: "#AcmeCorp"
|
|
7
|
+
description: |
|
|
8
|
+
A unified framework for human and AI collaboration in engineering. Define roles, track skills and behaviours, build career paths, and generate AI coding agents—all from the same coherent foundation. The pathway aligns human capabilities with AI assistance, enabling productive teams in the AI era.
|
|
9
|
+
|
|
10
|
+
# Entity definitions for pages and chapters
|
|
11
|
+
entityDefinitions:
|
|
12
|
+
driver:
|
|
13
|
+
title: Drivers
|
|
14
|
+
emoji: "🎯"
|
|
15
|
+
description: |
|
|
16
|
+
Organizational outcomes that productive teams achieve. Drivers link skills and behaviours to business value, helping teams understand how their capabilities contribute to organizational success.
|
|
17
|
+
|
|
18
|
+
skill:
|
|
19
|
+
title: Skills
|
|
20
|
+
emoji: "💡"
|
|
21
|
+
description: |
|
|
22
|
+
Capabilities required to perform work effectively. Skills are organized by capability and measured across five levels from Awareness to Expert. They form the foundation of technical and professional competence.
|
|
23
|
+
|
|
24
|
+
behaviour:
|
|
25
|
+
title: Behaviours
|
|
26
|
+
emoji: "🧠"
|
|
27
|
+
description: |
|
|
28
|
+
Mindsets and ways of working that underpin effective application of skills. Behaviours are measured across five maturity levels from Emerging to Exemplifying. They describe how engineers approach their work, collaborate with others, and drive outcomes.
|
|
29
|
+
|
|
30
|
+
discipline:
|
|
31
|
+
title: Disciplines
|
|
32
|
+
emoji: "🔧"
|
|
33
|
+
description: |
|
|
34
|
+
Engineering specializations that define T-shaped skill profiles. Each discipline specifies primary skills for deep expertise, secondary skills for supporting capabilities, and broad skills for general awareness. Disciplines answer the question: "What kind of engineer are you?"
|
|
35
|
+
|
|
36
|
+
grade:
|
|
37
|
+
title: Grades
|
|
38
|
+
emoji: "📊"
|
|
39
|
+
description: |
|
|
40
|
+
Career levels that define expectations for skill proficiency, behaviour maturity, and scope of impact. Grades provide a clear progression path from entry-level to distinguished leadership roles, with defined expectations at each stage.
|
|
41
|
+
|
|
42
|
+
track:
|
|
43
|
+
title: Tracks
|
|
44
|
+
emoji: "🛤️"
|
|
45
|
+
description: |
|
|
46
|
+
Work contexts that modify skill and behaviour expectations based on the nature of the role. Tracks answer the question: "Where and how do you work?" They apply modifiers to adjust expectations for different working environments and responsibilities.
|
|
47
|
+
|
|
48
|
+
job:
|
|
49
|
+
title: Jobs
|
|
50
|
+
emoji: "📋"
|
|
51
|
+
description: |
|
|
52
|
+
Complete role specifications that combine discipline, track, and grade into actionable job definitions with skill matrices, behaviour profiles, and derived responsibilities. Jobs represent the practical application of the framework to define concrete engineering positions.
|
|
53
|
+
|
|
54
|
+
agent:
|
|
55
|
+
title: Agents
|
|
56
|
+
emoji: "🤖"
|
|
57
|
+
description: |
|
|
58
|
+
AI coding agent configurations generated from the same disciplines, tracks, and skills that define human roles. Agent profiles and skills follow the GitHub Copilot specification, ensuring AI assistants understand context, constraints, and working styles aligned with human engineering expectations.
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# Grades - What career level?
|
|
2
|
+
# Base skill levels and behaviour maturities by seniority
|
|
3
|
+
# See domain-concepts.instructions.md for level progressions
|
|
4
|
+
|
|
5
|
+
- id: L1
|
|
6
|
+
professionalTitle: Engineer I
|
|
7
|
+
managementTitle: Associate Manager
|
|
8
|
+
typicalExperienceRange: "0-2"
|
|
9
|
+
ordinalRank: 1
|
|
10
|
+
qualificationSummary:
|
|
11
|
+
Entry-level position for those new to the field or transitioning careers.
|
|
12
|
+
Bachelor's degree or equivalent practical experience.
|
|
13
|
+
baseSkillLevels:
|
|
14
|
+
primary: foundational
|
|
15
|
+
secondary: awareness
|
|
16
|
+
broad: awareness
|
|
17
|
+
baseBehaviourMaturity: emerging
|
|
18
|
+
expectations:
|
|
19
|
+
impactScope:
|
|
20
|
+
Individual tasks and small features with guidance from senior team members
|
|
21
|
+
autonomyExpectation:
|
|
22
|
+
Work with close supervision and ask for help when encountering challenges
|
|
23
|
+
influenceScope:
|
|
24
|
+
Contribute to team discussions and learn from experienced colleagues
|
|
25
|
+
complexityHandled:
|
|
26
|
+
Standard tasks with established patterns and clear requirements
|
|
27
|
+
|
|
28
|
+
- id: L2
|
|
29
|
+
professionalTitle: Engineer II
|
|
30
|
+
managementTitle: Manager
|
|
31
|
+
typicalExperienceRange: "2-5"
|
|
32
|
+
ordinalRank: 2
|
|
33
|
+
qualificationSummary:
|
|
34
|
+
2-5 years of relevant experience. Demonstrated ability to complete tasks
|
|
35
|
+
independently and contribute effectively to team projects.
|
|
36
|
+
baseSkillLevels:
|
|
37
|
+
primary: foundational
|
|
38
|
+
secondary: foundational
|
|
39
|
+
broad: awareness
|
|
40
|
+
baseBehaviourMaturity: emerging
|
|
41
|
+
expectations:
|
|
42
|
+
impactScope: Complete features and components delivered independently
|
|
43
|
+
autonomyExpectation:
|
|
44
|
+
Work independently on familiar problems while seeking guidance on novel
|
|
45
|
+
situations
|
|
46
|
+
influenceScope:
|
|
47
|
+
Help onboard new team members and participate actively in code reviews
|
|
48
|
+
complexityHandled: Moderate complexity with some ambiguity in requirements
|
|
49
|
+
|
|
50
|
+
- id: L3
|
|
51
|
+
professionalTitle: Senior Engineer
|
|
52
|
+
managementTitle: Senior Manager
|
|
53
|
+
typicalExperienceRange: "5-8"
|
|
54
|
+
ordinalRank: 3
|
|
55
|
+
qualificationSummary:
|
|
56
|
+
5-8 years of relevant experience. Proven track record of leading technical
|
|
57
|
+
initiatives and mentoring team members.
|
|
58
|
+
baseSkillLevels:
|
|
59
|
+
primary: practitioner
|
|
60
|
+
secondary: working
|
|
61
|
+
broad: foundational
|
|
62
|
+
baseBehaviourMaturity: developing
|
|
63
|
+
expectations:
|
|
64
|
+
impactScope:
|
|
65
|
+
Large features and technical initiatives including leading small projects
|
|
66
|
+
autonomyExpectation:
|
|
67
|
+
Do self-directed work while seeking input on strategic decisions
|
|
68
|
+
influenceScope: Shape team practices and mentor junior engineers
|
|
69
|
+
complexityHandled: High complexity with comfort navigating ambiguity
|
|
70
|
+
|
|
71
|
+
- id: L4
|
|
72
|
+
professionalTitle: Staff Engineer
|
|
73
|
+
managementTitle: Director
|
|
74
|
+
typicalExperienceRange: "8-12"
|
|
75
|
+
ordinalRank: 4
|
|
76
|
+
qualificationSummary:
|
|
77
|
+
8-12 years of relevant experience. Extensive experience leading complex
|
|
78
|
+
technical projects with multi-team impact.
|
|
79
|
+
baseSkillLevels:
|
|
80
|
+
primary: expert
|
|
81
|
+
secondary: practitioner
|
|
82
|
+
broad: working
|
|
83
|
+
baseBehaviourMaturity: practicing
|
|
84
|
+
breadthCriteria:
|
|
85
|
+
practitioner: 4
|
|
86
|
+
expectations:
|
|
87
|
+
impactScope: Multi-team initiatives with organizational impact
|
|
88
|
+
autonomyExpectation: Set own direction within broader strategic goals
|
|
89
|
+
influenceScope:
|
|
90
|
+
Influence multiple teams and be recognized as a domain expert
|
|
91
|
+
complexityHandled:
|
|
92
|
+
Very high complexity driving through ambiguity to deliver results
|
|
93
|
+
|
|
94
|
+
- id: L5
|
|
95
|
+
professionalTitle: Principal Engineer
|
|
96
|
+
managementTitle: VP of Engineering
|
|
97
|
+
typicalExperienceRange: "12+"
|
|
98
|
+
ordinalRank: 5
|
|
99
|
+
qualificationSummary:
|
|
100
|
+
12+ years of relevant experience. Deep technical expertise with a proven
|
|
101
|
+
track record of organization-wide technical leadership.
|
|
102
|
+
baseSkillLevels:
|
|
103
|
+
primary: expert
|
|
104
|
+
secondary: expert
|
|
105
|
+
broad: practitioner
|
|
106
|
+
baseBehaviourMaturity: role_modeling
|
|
107
|
+
breadthCriteria:
|
|
108
|
+
practitioner: 5
|
|
109
|
+
expert: 2
|
|
110
|
+
expectations:
|
|
111
|
+
impactScope:
|
|
112
|
+
Organization-wide technical strategy and architectural direction
|
|
113
|
+
autonomyExpectation:
|
|
114
|
+
Define strategic direction and be accountable for outcomes
|
|
115
|
+
influenceScope:
|
|
116
|
+
Shape organizational practices and maintain external industry visibility
|
|
117
|
+
complexityHandled:
|
|
118
|
+
Organizational-scale complexity creating clarity from chaos
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# outcome_ownership questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
emerging:
|
|
5
|
+
- id: own_emerg_1
|
|
6
|
+
text: Describe a task you completed from start to finish.
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Follow-through
|
|
9
|
+
- Basic accountability
|
|
10
|
+
expectedDurationMinutes: 5
|
|
11
|
+
developing:
|
|
12
|
+
- id: own_dev_1
|
|
13
|
+
text: Tell me about a time when you took responsibility for a mistake.
|
|
14
|
+
lookingFor:
|
|
15
|
+
- Accountability
|
|
16
|
+
- Learning from errors
|
|
17
|
+
expectedDurationMinutes: 5
|
|
18
|
+
practicing:
|
|
19
|
+
- id: own_pract_1
|
|
20
|
+
text:
|
|
21
|
+
Describe a project where you owned the entire lifecycle from design to
|
|
22
|
+
production support.
|
|
23
|
+
lookingFor:
|
|
24
|
+
- End-to-end ownership
|
|
25
|
+
- Operational responsibility
|
|
26
|
+
expectedDurationMinutes: 8
|
|
27
|
+
role_modeling:
|
|
28
|
+
- id: own_role_1
|
|
29
|
+
text: How do you build a culture of ownership in your team?
|
|
30
|
+
lookingFor:
|
|
31
|
+
- Team accountability
|
|
32
|
+
- Systemic approaches
|
|
33
|
+
expectedDurationMinutes: 8
|
|
34
|
+
exemplifying:
|
|
35
|
+
- id: own_exemp_1
|
|
36
|
+
text:
|
|
37
|
+
How do you establish and drive ownership culture across an entire
|
|
38
|
+
organization?
|
|
39
|
+
followUps:
|
|
40
|
+
- How do you balance ownership with collaboration?
|
|
41
|
+
lookingFor:
|
|
42
|
+
- Enterprise ownership culture
|
|
43
|
+
- Accountability at scale
|
|
44
|
+
expectedDurationMinutes: 10
|
|
45
|
+
- id: own_exemp_2
|
|
46
|
+
text:
|
|
47
|
+
How do you hold yourself and others accountable for outcomes at an
|
|
48
|
+
organizational level?
|
|
49
|
+
lookingFor:
|
|
50
|
+
- Executive-level accountability
|
|
51
|
+
- Systemic ownership practices
|
|
52
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# polymathic_knowledge questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
emerging:
|
|
5
|
+
- id: poly_emerg_1
|
|
6
|
+
text: What interests do you have outside your primary technical domain?
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Breadth of interests
|
|
9
|
+
- Cross-disciplinary awareness
|
|
10
|
+
expectedDurationMinutes: 5
|
|
11
|
+
developing:
|
|
12
|
+
- id: poly_dev_1
|
|
13
|
+
text: Describe a time when knowledge from one area helped you in another.
|
|
14
|
+
lookingFor:
|
|
15
|
+
- Cross-domain application
|
|
16
|
+
- Creative problem solving
|
|
17
|
+
expectedDurationMinutes: 5
|
|
18
|
+
practicing:
|
|
19
|
+
- id: poly_pract_1
|
|
20
|
+
text: How do you approach problems that span multiple disciplines?
|
|
21
|
+
lookingFor:
|
|
22
|
+
- Integration of knowledge
|
|
23
|
+
- Holistic thinking
|
|
24
|
+
expectedDurationMinutes: 8
|
|
25
|
+
role_modeling:
|
|
26
|
+
- id: poly_role_1
|
|
27
|
+
text: How do you encourage cross-disciplinary learning in your organization?
|
|
28
|
+
lookingFor:
|
|
29
|
+
- Creating learning opportunities
|
|
30
|
+
- Breaking down silos
|
|
31
|
+
expectedDurationMinutes: 8
|
|
32
|
+
exemplifying:
|
|
33
|
+
- id: poly_exemp_1
|
|
34
|
+
text: How do you build and promote polymathic culture across an enterprise?
|
|
35
|
+
followUps:
|
|
36
|
+
- How do you break down organizational silos?
|
|
37
|
+
lookingFor:
|
|
38
|
+
- Enterprise cross-disciplinary leadership
|
|
39
|
+
- Silo breaking at scale
|
|
40
|
+
expectedDurationMinutes: 10
|
|
41
|
+
- id: poly_exemp_2
|
|
42
|
+
text:
|
|
43
|
+
How do you personally maintain breadth across multiple domains while
|
|
44
|
+
achieving depth? How do you model this for others?
|
|
45
|
+
lookingFor:
|
|
46
|
+
- Personal polymathic practice
|
|
47
|
+
- Modeling breadth and depth balance
|
|
48
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# precise_communication questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
emerging:
|
|
5
|
+
- id: comm_emerg_1
|
|
6
|
+
text:
|
|
7
|
+
Tell me about a time when you had to explain something technical to
|
|
8
|
+
someone less familiar with the topic.
|
|
9
|
+
lookingFor:
|
|
10
|
+
- Ability to simplify concepts
|
|
11
|
+
- Awareness of audience
|
|
12
|
+
expectedDurationMinutes: 5
|
|
13
|
+
developing:
|
|
14
|
+
- id: comm_dev_1
|
|
15
|
+
text: Describe how you approach writing documentation for your work.
|
|
16
|
+
lookingFor:
|
|
17
|
+
- Clear writing habits
|
|
18
|
+
- Consideration of readers
|
|
19
|
+
expectedDurationMinutes: 5
|
|
20
|
+
practicing:
|
|
21
|
+
- id: comm_pract_1
|
|
22
|
+
text:
|
|
23
|
+
Tell me about presenting a complex technical topic to diverse
|
|
24
|
+
stakeholders.
|
|
25
|
+
lookingFor:
|
|
26
|
+
- Audience adaptation
|
|
27
|
+
- Facilitation skills
|
|
28
|
+
expectedDurationMinutes: 8
|
|
29
|
+
role_modeling:
|
|
30
|
+
- id: comm_role_1
|
|
31
|
+
text: How have you improved communication practices in your organization?
|
|
32
|
+
lookingFor:
|
|
33
|
+
- Leadership in communication
|
|
34
|
+
- Systemic improvements
|
|
35
|
+
expectedDurationMinutes: 8
|
|
36
|
+
exemplifying:
|
|
37
|
+
- id: comm_exemp_1
|
|
38
|
+
text:
|
|
39
|
+
How do you shape communication culture across an enterprise and represent
|
|
40
|
+
your organization externally?
|
|
41
|
+
followUps:
|
|
42
|
+
- How do you coach executives on technical communication?
|
|
43
|
+
lookingFor:
|
|
44
|
+
- Enterprise communication leadership
|
|
45
|
+
- External representation
|
|
46
|
+
- Communication excellence at all levels
|
|
47
|
+
expectedDurationMinutes: 10
|
|
48
|
+
- id: comm_exemp_2
|
|
49
|
+
text:
|
|
50
|
+
Describe how you've established communication standards that span
|
|
51
|
+
technical and business audiences across the organization.
|
|
52
|
+
lookingFor:
|
|
53
|
+
- Cross-functional communication leadership
|
|
54
|
+
- Scalable communication practices
|
|
55
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# relentless_curiosity questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
emerging:
|
|
5
|
+
- id: cur_emerg_1
|
|
6
|
+
text: What new technology or concept have you learned recently?
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Evidence of learning
|
|
9
|
+
- Interest beyond immediate work
|
|
10
|
+
expectedDurationMinutes: 5
|
|
11
|
+
developing:
|
|
12
|
+
- id: cur_dev_1
|
|
13
|
+
text:
|
|
14
|
+
Tell me about a time when you went beyond the requirements to understand
|
|
15
|
+
something deeper.
|
|
16
|
+
lookingFor:
|
|
17
|
+
- Self-directed exploration
|
|
18
|
+
- Root cause thinking
|
|
19
|
+
expectedDurationMinutes: 5
|
|
20
|
+
practicing:
|
|
21
|
+
- id: cur_pract_1
|
|
22
|
+
text: How do you stay current with developments in your field?
|
|
23
|
+
lookingFor:
|
|
24
|
+
- Systematic learning approach
|
|
25
|
+
- Breadth of interests
|
|
26
|
+
expectedDurationMinutes: 5
|
|
27
|
+
role_modeling:
|
|
28
|
+
- id: cur_role_1
|
|
29
|
+
text: How do you foster a culture of curiosity in your team?
|
|
30
|
+
lookingFor:
|
|
31
|
+
- Creating learning environments
|
|
32
|
+
- Encouraging exploration
|
|
33
|
+
expectedDurationMinutes: 8
|
|
34
|
+
exemplifying:
|
|
35
|
+
- id: cur_exemp_1
|
|
36
|
+
text:
|
|
37
|
+
How do you shape organizational culture around curiosity and continuous
|
|
38
|
+
learning at an enterprise level?
|
|
39
|
+
followUps:
|
|
40
|
+
- How do you sponsor experimental initiatives?
|
|
41
|
+
lookingFor:
|
|
42
|
+
- Enterprise learning culture leadership
|
|
43
|
+
- Sponsoring innovation and experimentation
|
|
44
|
+
expectedDurationMinutes: 10
|
|
45
|
+
- id: cur_exemp_2
|
|
46
|
+
text:
|
|
47
|
+
How do you influence industry practices around innovation and exploration?
|
|
48
|
+
lookingFor:
|
|
49
|
+
- External thought leadership
|
|
50
|
+
- Industry-level influence on learning culture
|
|
51
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# systems_thinking questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
emerging:
|
|
5
|
+
- id: sys_emerg_1
|
|
6
|
+
text:
|
|
7
|
+
How do you consider the impact of your code changes on other parts of the
|
|
8
|
+
system?
|
|
9
|
+
lookingFor:
|
|
10
|
+
- Awareness of dependencies
|
|
11
|
+
- Basic impact thinking
|
|
12
|
+
expectedDurationMinutes: 5
|
|
13
|
+
developing:
|
|
14
|
+
- id: sys_dev_1
|
|
15
|
+
text:
|
|
16
|
+
Describe a time when you identified an unintended consequence of a change.
|
|
17
|
+
lookingFor:
|
|
18
|
+
- Systemic awareness
|
|
19
|
+
- Proactive identification
|
|
20
|
+
expectedDurationMinutes: 5
|
|
21
|
+
practicing:
|
|
22
|
+
- id: sys_pract_1
|
|
23
|
+
text: How do you approach understanding a complex system you're new to?
|
|
24
|
+
lookingFor:
|
|
25
|
+
- Systematic exploration
|
|
26
|
+
- Mapping approaches
|
|
27
|
+
expectedDurationMinutes: 8
|
|
28
|
+
role_modeling:
|
|
29
|
+
- id: sys_role_1
|
|
30
|
+
text: How do you help others develop systems thinking capabilities?
|
|
31
|
+
lookingFor:
|
|
32
|
+
- Teaching approaches
|
|
33
|
+
- Creating visibility
|
|
34
|
+
expectedDurationMinutes: 8
|
|
35
|
+
exemplifying:
|
|
36
|
+
- id: sys_exemp_1
|
|
37
|
+
text:
|
|
38
|
+
How do you define enterprise-wide systems architecture principles and
|
|
39
|
+
influence organizational thinking?
|
|
40
|
+
followUps:
|
|
41
|
+
- How do you advise executive leadership on complex systems?
|
|
42
|
+
lookingFor:
|
|
43
|
+
- Enterprise systems thinking leadership
|
|
44
|
+
- Executive advisory on complexity
|
|
45
|
+
expectedDurationMinutes: 10
|
|
46
|
+
- id: sys_exemp_2
|
|
47
|
+
text:
|
|
48
|
+
How do you bridge technical systems with business processes at an
|
|
49
|
+
organizational scale?
|
|
50
|
+
lookingFor:
|
|
51
|
+
- Business-technical systems integration
|
|
52
|
+
- Enterprise complexity management
|
|
53
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# architecture_design questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: arch_aware_1
|
|
6
|
+
text: What do you understand by 'separation of concerns' in software design?
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Basic understanding of modularity
|
|
9
|
+
- Recognition that different parts of a system should handle different
|
|
10
|
+
things
|
|
11
|
+
expectedDurationMinutes: 5
|
|
12
|
+
foundational:
|
|
13
|
+
- id: arch_found_1
|
|
14
|
+
text:
|
|
15
|
+
Walk me through a recent feature you built. How did you decide on the
|
|
16
|
+
structure?
|
|
17
|
+
followUps:
|
|
18
|
+
- What alternatives did you consider?
|
|
19
|
+
- What would you do differently?
|
|
20
|
+
lookingFor:
|
|
21
|
+
- Evidence of thoughtful design decisions
|
|
22
|
+
- Understanding of common patterns
|
|
23
|
+
expectedDurationMinutes: 8
|
|
24
|
+
working:
|
|
25
|
+
- id: arch_work_1
|
|
26
|
+
text:
|
|
27
|
+
Describe a system you designed. What were the key trade-offs you had to
|
|
28
|
+
make?
|
|
29
|
+
followUps:
|
|
30
|
+
- How did you validate these decisions?
|
|
31
|
+
lookingFor:
|
|
32
|
+
- Clear articulation of trade-offs
|
|
33
|
+
- Evidence of independent design work
|
|
34
|
+
expectedDurationMinutes: 8
|
|
35
|
+
practitioner:
|
|
36
|
+
- id: arch_pract_1
|
|
37
|
+
text:
|
|
38
|
+
Tell me about a time when you had to guide a team through a significant
|
|
39
|
+
architectural decision.
|
|
40
|
+
followUps:
|
|
41
|
+
- How did you handle disagreements?
|
|
42
|
+
lookingFor:
|
|
43
|
+
- Leadership in technical decisions
|
|
44
|
+
- Ability to build consensus
|
|
45
|
+
expectedDurationMinutes: 8
|
|
46
|
+
expert:
|
|
47
|
+
- id: arch_expert_1
|
|
48
|
+
text:
|
|
49
|
+
How do you approach defining and evolving architectural standards for an
|
|
50
|
+
organization?
|
|
51
|
+
lookingFor:
|
|
52
|
+
- Strategic thinking about architecture
|
|
53
|
+
- Experience with organizational influence
|
|
54
|
+
expectedDurationMinutes: 8
|