@forwardimpact/schema 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.
Files changed (65) hide show
  1. package/bin/fit-schema.js +260 -0
  2. package/examples/behaviours/_index.yaml +8 -0
  3. package/examples/behaviours/outcome_ownership.yaml +43 -0
  4. package/examples/behaviours/polymathic_knowledge.yaml +41 -0
  5. package/examples/behaviours/precise_communication.yaml +39 -0
  6. package/examples/behaviours/relentless_curiosity.yaml +37 -0
  7. package/examples/behaviours/systems_thinking.yaml +40 -0
  8. package/examples/capabilities/_index.yaml +8 -0
  9. package/examples/capabilities/business.yaml +189 -0
  10. package/examples/capabilities/delivery.yaml +305 -0
  11. package/examples/capabilities/people.yaml +68 -0
  12. package/examples/capabilities/reliability.yaml +414 -0
  13. package/examples/capabilities/scale.yaml +378 -0
  14. package/examples/copilot-setup-steps.yaml +25 -0
  15. package/examples/devcontainer.yaml +21 -0
  16. package/examples/disciplines/_index.yaml +6 -0
  17. package/examples/disciplines/data_engineering.yaml +78 -0
  18. package/examples/disciplines/engineering_management.yaml +63 -0
  19. package/examples/disciplines/software_engineering.yaml +78 -0
  20. package/examples/drivers.yaml +202 -0
  21. package/examples/framework.yaml +69 -0
  22. package/examples/grades.yaml +115 -0
  23. package/examples/questions/behaviours/outcome_ownership.yaml +51 -0
  24. package/examples/questions/behaviours/polymathic_knowledge.yaml +47 -0
  25. package/examples/questions/behaviours/precise_communication.yaml +54 -0
  26. package/examples/questions/behaviours/relentless_curiosity.yaml +50 -0
  27. package/examples/questions/behaviours/systems_thinking.yaml +52 -0
  28. package/examples/questions/skills/architecture_design.yaml +53 -0
  29. package/examples/questions/skills/cloud_platforms.yaml +47 -0
  30. package/examples/questions/skills/code_quality.yaml +48 -0
  31. package/examples/questions/skills/data_modeling.yaml +45 -0
  32. package/examples/questions/skills/devops.yaml +46 -0
  33. package/examples/questions/skills/full_stack_development.yaml +47 -0
  34. package/examples/questions/skills/sre_practices.yaml +43 -0
  35. package/examples/questions/skills/stakeholder_management.yaml +48 -0
  36. package/examples/questions/skills/team_collaboration.yaml +42 -0
  37. package/examples/questions/skills/technical_writing.yaml +42 -0
  38. package/examples/self-assessments.yaml +64 -0
  39. package/examples/stages.yaml +139 -0
  40. package/examples/tracks/_index.yaml +5 -0
  41. package/examples/tracks/platform.yaml +49 -0
  42. package/examples/tracks/sre.yaml +48 -0
  43. package/examples/vscode-settings.yaml +21 -0
  44. package/lib/index-generator.js +65 -0
  45. package/lib/index.js +44 -0
  46. package/lib/levels.js +601 -0
  47. package/lib/loader.js +599 -0
  48. package/lib/modifiers.js +23 -0
  49. package/lib/schema-validation.js +438 -0
  50. package/lib/validation.js +2130 -0
  51. package/package.json +49 -0
  52. package/schema/json/behaviour-questions.schema.json +68 -0
  53. package/schema/json/behaviour.schema.json +73 -0
  54. package/schema/json/capability.schema.json +220 -0
  55. package/schema/json/defs.schema.json +132 -0
  56. package/schema/json/discipline.schema.json +132 -0
  57. package/schema/json/drivers.schema.json +48 -0
  58. package/schema/json/framework.schema.json +55 -0
  59. package/schema/json/grades.schema.json +121 -0
  60. package/schema/json/index.schema.json +18 -0
  61. package/schema/json/self-assessments.schema.json +52 -0
  62. package/schema/json/skill-questions.schema.json +68 -0
  63. package/schema/json/stages.schema.json +84 -0
  64. package/schema/json/track.schema.json +100 -0
  65. package/schema/rdf/pathway.ttl +2362 -0
@@ -0,0 +1,202 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/drivers.schema.json
2
+
3
+ - id: clear_direction
4
+ name: Clear Direction
5
+ description:
6
+ The degree to which developers understand their team's mission, goals, and
7
+ alignment with the greater organization
8
+ contributingSkills:
9
+ - stakeholder_management
10
+ - technical_writing
11
+ contributingBehaviours:
12
+ - polymathic_knowledge
13
+ - systems_thinking
14
+
15
+ - id: say_on_priorities
16
+ name: Say on Priorities
17
+ description:
18
+ The involvement and influence developers hold in shaping their team's
19
+ direction and tasks
20
+ contributingSkills:
21
+ - stakeholder_management
22
+ - team_collaboration
23
+ contributingBehaviours:
24
+ - outcome_ownership
25
+ - relentless_curiosity
26
+
27
+ - id: requirements_quality
28
+ name: Requirements Quality
29
+ description:
30
+ How well specifications are defined for tasks and projects, encompassing
31
+ completeness and stability of requirements
32
+ contributingSkills:
33
+ - stakeholder_management
34
+ - technical_writing
35
+ - architecture_design
36
+ contributingBehaviours:
37
+ - precise_communication
38
+ - systems_thinking
39
+
40
+ # Delivery & Release
41
+ - id: ease_of_release
42
+ name: Ease of Release
43
+ description:
44
+ The amount of friction involved in releasing code to end-users, encompassing
45
+ validation, packaging, and deployment
46
+ contributingSkills:
47
+ - devops
48
+ - code_quality
49
+ - full_stack_development
50
+ - cloud_platforms
51
+ contributingBehaviours:
52
+ - outcome_ownership
53
+ - precise_communication
54
+
55
+ - id: test_efficiency
56
+ name: Test Efficiency
57
+ description:
58
+ The speed and stability of an automated test suite, affecting feedback loops
59
+ in the software development lifecycle
60
+ contributingSkills:
61
+ - full_stack_development
62
+ - code_quality
63
+ - devops
64
+ contributingBehaviours:
65
+ - outcome_ownership
66
+ - relentless_curiosity
67
+
68
+ - id: managing_tech_debt
69
+ name: Managing Tech Debt
70
+ description:
71
+ Continuously identifying, analyzing, and addressing technical debt to
72
+ maintain developer productivity
73
+ contributingSkills:
74
+ - code_quality
75
+ - architecture_design
76
+ contributingBehaviours:
77
+ - outcome_ownership
78
+ - systems_thinking
79
+
80
+ # Quality & Documentation
81
+ - id: code_review
82
+ name: Code Review
83
+ description:
84
+ The timeliness and quality of feedback received during code review, as well
85
+ as the experience of reviewing others' code
86
+ contributingSkills:
87
+ - code_quality
88
+ - team_collaboration
89
+ contributingBehaviours:
90
+ - precise_communication
91
+ - relentless_curiosity
92
+
93
+ - id: documentation
94
+ name: Documentation
95
+ description:
96
+ Helping developers obtain the information they need to understand and
97
+ complete technical tasks
98
+ contributingSkills:
99
+ - technical_writing
100
+ contributingBehaviours:
101
+ - precise_communication
102
+ - polymathic_knowledge
103
+
104
+ - id: codebase_experience
105
+ name: Codebase Experience
106
+ description:
107
+ The ease of understanding and modifying code, significantly affecting
108
+ overall developer experience
109
+ contributingSkills:
110
+ - code_quality
111
+ - architecture_design
112
+ contributingBehaviours:
113
+ - relentless_curiosity
114
+ - polymathic_knowledge
115
+
116
+ # Operations & Reliability
117
+ - id: incident_response
118
+ name: Incident Response
119
+ description:
120
+ How developers handle and resolve issues in their systems, including triage,
121
+ resolution, and communication
122
+ contributingSkills:
123
+ - sre_practices
124
+ - devops
125
+ - cloud_platforms
126
+ contributingBehaviours:
127
+ - outcome_ownership
128
+ - systems_thinking
129
+
130
+ # Learning & Growth
131
+ - id: learning_culture
132
+ name: Learning Culture
133
+ description:
134
+ The team characteristic of continuously improving and learning from past
135
+ experience
136
+ contributingSkills:
137
+ - team_collaboration
138
+ - technical_writing
139
+ contributingBehaviours:
140
+ - relentless_curiosity
141
+ - polymathic_knowledge
142
+
143
+ - id: experimentation
144
+ name: Experimentation
145
+ description:
146
+ Activities that generate new ideas, test hypotheses, and capture insights
147
+ from experiments
148
+ contributingSkills:
149
+ - data_modeling
150
+ - full_stack_development
151
+ contributingBehaviours:
152
+ - relentless_curiosity
153
+ - polymathic_knowledge
154
+
155
+ # Team & Collaboration
156
+ - id: connectedness
157
+ name: Connectedness
158
+ description:
159
+ The state of feeling linked and related to others at work, fostered through
160
+ communication and interaction
161
+ contributingSkills:
162
+ - team_collaboration
163
+ - stakeholder_management
164
+ contributingBehaviours:
165
+ - precise_communication
166
+ - polymathic_knowledge
167
+
168
+ - id: efficient_processes
169
+ name: Efficient Processes
170
+ description:
171
+ How effectively team members collaborate to design and deliver software
172
+ using principles and workflows
173
+ contributingSkills:
174
+ - team_collaboration
175
+ - devops
176
+ contributingBehaviours:
177
+ - precise_communication
178
+ - outcome_ownership
179
+
180
+ - id: deep_work
181
+ name: Deep Work
182
+ description:
183
+ The ability to focus on tasks without distraction, achieved by minimizing
184
+ interruptions and context switching
185
+ contributingSkills:
186
+ - architecture_design
187
+ - code_quality
188
+ contributingBehaviours:
189
+ - relentless_curiosity
190
+ - precise_communication
191
+
192
+ # User Focus
193
+ - id: leveraging_user_feedback
194
+ name: Leveraging User Feedback
195
+ description:
196
+ Collecting, analyzing, and taking action based on insights from end-users
197
+ contributingSkills:
198
+ - stakeholder_management
199
+ - data_modeling
200
+ contributingBehaviours:
201
+ - relentless_curiosity
202
+ - precise_communication
@@ -0,0 +1,69 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/framework.schema.json
2
+
3
+ title: Engineering Pathway
4
+ emojiIcon: "🧭"
5
+ tag: "#AcmeCorp"
6
+ description: |
7
+ 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.
8
+
9
+ # Entity definitions for pages and chapters
10
+ entityDefinitions:
11
+ driver:
12
+ title: Drivers
13
+ emojiIcon: "🎯"
14
+ description: |
15
+ Organizational outcomes that productive teams achieve. Drivers link skills and behaviours to business value, helping teams understand how their capabilities contribute to organizational success.
16
+
17
+ skill:
18
+ title: Skills
19
+ emojiIcon: "💡"
20
+ description: |
21
+ 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.
22
+
23
+ behaviour:
24
+ title: Behaviours
25
+ emojiIcon: "🧠"
26
+ description: |
27
+ 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.
28
+
29
+ discipline:
30
+ title: Disciplines
31
+ emojiIcon: "🔧"
32
+ description: |
33
+ 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?"
34
+
35
+ grade:
36
+ title: Grades
37
+ emojiIcon: "📊"
38
+ description: |
39
+ 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.
40
+
41
+ track:
42
+ title: Tracks
43
+ emojiIcon: "🛤️"
44
+ description: |
45
+ 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.
46
+
47
+ job:
48
+ title: Jobs
49
+ emojiIcon: "📋"
50
+ description: |
51
+ 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.
52
+
53
+ agent:
54
+ title: Agents
55
+ emojiIcon: "🤖"
56
+ description: |
57
+ 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.
58
+
59
+ stage:
60
+ title: Stages
61
+ emojiIcon: "🔄"
62
+ description: |
63
+ Defined phases of the engineering lifecycle that structure work from planning through delivery and review. Stages provide context for AI agents and define entry criteria, exit criteria, and appropriate handoffs between phases.
64
+
65
+ tool:
66
+ title: Tools
67
+ emojiIcon: "🔧"
68
+ description: |
69
+ Recommended tools and utilities referenced by skills for effective engineering workflows. Tools are linked to specific skills with guidance on when and how to use them, surfacing best practices directly in skill definitions.
@@ -0,0 +1,115 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/grades.schema.json
2
+
3
+ - id: L1
4
+ professionalTitle: Engineer I
5
+ managementTitle: Associate Manager
6
+ typicalExperienceRange: "0-2"
7
+ ordinalRank: 1
8
+ qualificationSummary:
9
+ Entry-level position for those new to the field or transitioning careers.
10
+ Bachelor's degree or equivalent practical experience.
11
+ baseSkillLevels:
12
+ primary: foundational
13
+ secondary: awareness
14
+ broad: awareness
15
+ baseBehaviourMaturity: emerging
16
+ expectations:
17
+ impactScope:
18
+ Individual tasks and small features with guidance from senior team members
19
+ autonomyExpectation:
20
+ Work with close supervision and ask for help when encountering challenges
21
+ influenceScope:
22
+ Contribute to team discussions and learn from experienced colleagues
23
+ complexityHandled:
24
+ Standard tasks with established patterns and clear requirements
25
+
26
+ - id: L2
27
+ professionalTitle: Engineer II
28
+ managementTitle: Manager
29
+ typicalExperienceRange: "2-5"
30
+ ordinalRank: 2
31
+ qualificationSummary: >
32
+ {typicalExperienceRange} years of relevant experience. Demonstrated ability
33
+ to complete tasks independently and contribute effectively to team projects.
34
+ baseSkillLevels:
35
+ primary: foundational
36
+ secondary: foundational
37
+ broad: awareness
38
+ baseBehaviourMaturity: emerging
39
+ expectations:
40
+ impactScope: Complete features and components delivered independently
41
+ autonomyExpectation:
42
+ Work independently on familiar problems while seeking guidance on novel
43
+ situations
44
+ influenceScope:
45
+ Help onboard new team members and participate actively in code reviews
46
+ complexityHandled: Moderate complexity with some ambiguity in requirements
47
+
48
+ - id: L3
49
+ professionalTitle: Senior Engineer
50
+ managementTitle: Senior Manager
51
+ typicalExperienceRange: "5-8"
52
+ ordinalRank: 3
53
+ qualificationSummary: >
54
+ {typicalExperienceRange} years of relevant experience. Proven track record
55
+ of leading technical initiatives and mentoring team members.
56
+ baseSkillLevels:
57
+ primary: practitioner
58
+ secondary: working
59
+ broad: foundational
60
+ baseBehaviourMaturity: developing
61
+ expectations:
62
+ impactScope:
63
+ Large features and technical initiatives including leading small projects
64
+ autonomyExpectation:
65
+ Do self-directed work while seeking input on strategic decisions
66
+ influenceScope: Shape team practices and mentor junior engineers
67
+ complexityHandled: High complexity with comfort navigating ambiguity
68
+
69
+ - id: L4
70
+ professionalTitle: Staff Engineer
71
+ managementTitle: Director
72
+ typicalExperienceRange: "8-12"
73
+ ordinalRank: 4
74
+ qualificationSummary: >
75
+ {typicalExperienceRange} years of relevant experience. Extensive experience
76
+ leading complex technical projects with multi-team impact.
77
+ baseSkillLevels:
78
+ primary: expert
79
+ secondary: practitioner
80
+ broad: working
81
+ baseBehaviourMaturity: practicing
82
+ breadthCriteria:
83
+ practitioner: 4
84
+ expectations:
85
+ impactScope: Multi-team initiatives with area-wide impact
86
+ autonomyExpectation: Set own direction within broader strategic goals
87
+ influenceScope:
88
+ Influence teams in your area and be recognized as a domain expert
89
+ complexityHandled:
90
+ Very high complexity driving through ambiguity to deliver results
91
+
92
+ - id: L5
93
+ professionalTitle: Principal Engineer
94
+ managementTitle: VP of Engineering
95
+ typicalExperienceRange: "12+"
96
+ ordinalRank: 5
97
+ qualificationSummary: >
98
+ {typicalExperienceRange} years of relevant experience. Deep technical
99
+ expertise with a proven track record of organization-wide technical
100
+ leadership.
101
+ baseSkillLevels:
102
+ primary: expert
103
+ secondary: expert
104
+ broad: practitioner
105
+ baseBehaviourMaturity: role_modeling
106
+ breadthCriteria:
107
+ practitioner: 5
108
+ expert: 2
109
+ expectations:
110
+ impactScope: Business unit technical strategy and architectural direction
111
+ autonomyExpectation:
112
+ Define strategic direction and be accountable for outcomes
113
+ influenceScope:
114
+ Shape practices across the business unit and maintain external visibility
115
+ complexityHandled: Business unit complexity creating clarity from ambiguity
@@ -0,0 +1,51 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour-questions.schema.json
2
+
3
+ emerging:
4
+ - id: own_emerg_1
5
+ text: Describe a task you completed from start to finish.
6
+ lookingFor:
7
+ - Follow-through
8
+ - Basic accountability
9
+ expectedDurationMinutes: 5
10
+ developing:
11
+ - id: own_dev_1
12
+ text: Tell me about a time when you took responsibility for a mistake.
13
+ lookingFor:
14
+ - Accountability
15
+ - Learning from errors
16
+ expectedDurationMinutes: 5
17
+ practicing:
18
+ - id: own_pract_1
19
+ text:
20
+ Describe a project where you owned the entire lifecycle from design to
21
+ production support.
22
+ lookingFor:
23
+ - End-to-end ownership
24
+ - Operational responsibility
25
+ expectedDurationMinutes: 8
26
+ role_modeling:
27
+ - id: own_role_1
28
+ text: How do you build a culture of ownership in your team?
29
+ lookingFor:
30
+ - Team accountability
31
+ - Systemic approaches
32
+ expectedDurationMinutes: 8
33
+ exemplifying:
34
+ - id: own_exemp_1
35
+ text:
36
+ How do you establish and drive ownership culture across an entire
37
+ organization?
38
+ followUps:
39
+ - How do you balance ownership with collaboration?
40
+ lookingFor:
41
+ - Enterprise ownership culture
42
+ - Accountability at scale
43
+ expectedDurationMinutes: 10
44
+ - id: own_exemp_2
45
+ text:
46
+ How do you hold yourself and others accountable for outcomes at an
47
+ organizational level?
48
+ lookingFor:
49
+ - Executive-level accountability
50
+ - Systemic ownership practices
51
+ expectedDurationMinutes: 10
@@ -0,0 +1,47 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour-questions.schema.json
2
+
3
+ emerging:
4
+ - id: poly_emerg_1
5
+ text: What interests do you have outside your primary technical domain?
6
+ lookingFor:
7
+ - Breadth of interests
8
+ - Cross-disciplinary awareness
9
+ expectedDurationMinutes: 5
10
+ developing:
11
+ - id: poly_dev_1
12
+ text: Describe a time when knowledge from one area helped you in another.
13
+ lookingFor:
14
+ - Cross-domain application
15
+ - Creative problem solving
16
+ expectedDurationMinutes: 5
17
+ practicing:
18
+ - id: poly_pract_1
19
+ text: How do you approach problems that span multiple disciplines?
20
+ lookingFor:
21
+ - Integration of knowledge
22
+ - Holistic thinking
23
+ expectedDurationMinutes: 8
24
+ role_modeling:
25
+ - id: poly_role_1
26
+ text: How do you encourage cross-disciplinary learning in your organization?
27
+ lookingFor:
28
+ - Creating learning opportunities
29
+ - Breaking down silos
30
+ expectedDurationMinutes: 8
31
+ exemplifying:
32
+ - id: poly_exemp_1
33
+ text: How do you build and promote polymathic culture across an enterprise?
34
+ followUps:
35
+ - How do you break down organizational silos?
36
+ lookingFor:
37
+ - Enterprise cross-disciplinary leadership
38
+ - Silo breaking at scale
39
+ expectedDurationMinutes: 10
40
+ - id: poly_exemp_2
41
+ text:
42
+ How do you personally maintain breadth across multiple domains while
43
+ achieving depth? How do you model this for others?
44
+ lookingFor:
45
+ - Personal polymathic practice
46
+ - Modeling breadth and depth balance
47
+ expectedDurationMinutes: 10
@@ -0,0 +1,54 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour-questions.schema.json
2
+
3
+ emerging:
4
+ - id: comm_emerg_1
5
+ text:
6
+ Tell me about a time when you had to explain something technical to
7
+ someone less familiar with the topic.
8
+ lookingFor:
9
+ - Ability to simplify concepts
10
+ - Awareness of audience
11
+ expectedDurationMinutes: 5
12
+ developing:
13
+ - id: comm_dev_1
14
+ text: Describe how you approach writing documentation for your work.
15
+ lookingFor:
16
+ - Clear writing habits
17
+ - Consideration of readers
18
+ expectedDurationMinutes: 5
19
+ practicing:
20
+ - id: comm_pract_1
21
+ text:
22
+ Tell me about presenting a complex technical topic to diverse
23
+ stakeholders.
24
+ lookingFor:
25
+ - Audience adaptation
26
+ - Facilitation skills
27
+ expectedDurationMinutes: 8
28
+ role_modeling:
29
+ - id: comm_role_1
30
+ text: How have you improved communication practices in your organization?
31
+ lookingFor:
32
+ - Leadership in communication
33
+ - Systemic improvements
34
+ expectedDurationMinutes: 8
35
+ exemplifying:
36
+ - id: comm_exemp_1
37
+ text:
38
+ How do you shape communication culture across an enterprise and represent
39
+ your organization externally?
40
+ followUps:
41
+ - How do you coach executives on technical communication?
42
+ lookingFor:
43
+ - Enterprise communication leadership
44
+ - External representation
45
+ - Communication excellence at all levels
46
+ expectedDurationMinutes: 10
47
+ - id: comm_exemp_2
48
+ text:
49
+ Describe how you've established communication standards that span
50
+ technical and business audiences across the organization.
51
+ lookingFor:
52
+ - Cross-functional communication leadership
53
+ - Scalable communication practices
54
+ expectedDurationMinutes: 10
@@ -0,0 +1,50 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour-questions.schema.json
2
+
3
+ emerging:
4
+ - id: cur_emerg_1
5
+ text: What new technology or concept have you learned recently?
6
+ lookingFor:
7
+ - Evidence of learning
8
+ - Interest beyond immediate work
9
+ expectedDurationMinutes: 5
10
+ developing:
11
+ - id: cur_dev_1
12
+ text:
13
+ Tell me about a time when you went beyond the requirements to understand
14
+ something deeper.
15
+ lookingFor:
16
+ - Self-directed exploration
17
+ - Root cause thinking
18
+ expectedDurationMinutes: 5
19
+ practicing:
20
+ - id: cur_pract_1
21
+ text: How do you stay current with developments in your field?
22
+ lookingFor:
23
+ - Systematic learning approach
24
+ - Breadth of interests
25
+ expectedDurationMinutes: 5
26
+ role_modeling:
27
+ - id: cur_role_1
28
+ text: How do you foster a culture of curiosity in your team?
29
+ lookingFor:
30
+ - Creating learning environments
31
+ - Encouraging exploration
32
+ expectedDurationMinutes: 8
33
+ exemplifying:
34
+ - id: cur_exemp_1
35
+ text:
36
+ How do you shape organizational culture around curiosity and continuous
37
+ learning at an enterprise level?
38
+ followUps:
39
+ - How do you sponsor experimental initiatives?
40
+ lookingFor:
41
+ - Enterprise learning culture leadership
42
+ - Sponsoring innovation and experimentation
43
+ expectedDurationMinutes: 10
44
+ - id: cur_exemp_2
45
+ text:
46
+ How do you influence industry practices around innovation and exploration?
47
+ lookingFor:
48
+ - External thought leadership
49
+ - Industry-level influence on learning culture
50
+ expectedDurationMinutes: 10
@@ -0,0 +1,52 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour-questions.schema.json
2
+
3
+ emerging:
4
+ - id: sys_emerg_1
5
+ text:
6
+ How do you consider the impact of your code changes on other parts of the
7
+ system?
8
+ lookingFor:
9
+ - Awareness of dependencies
10
+ - Basic impact thinking
11
+ expectedDurationMinutes: 5
12
+ developing:
13
+ - id: sys_dev_1
14
+ text:
15
+ Describe a time when you identified an unintended consequence of a change.
16
+ lookingFor:
17
+ - Systemic awareness
18
+ - Proactive identification
19
+ expectedDurationMinutes: 5
20
+ practicing:
21
+ - id: sys_pract_1
22
+ text: How do you approach understanding a complex system you're new to?
23
+ lookingFor:
24
+ - Systematic exploration
25
+ - Mapping approaches
26
+ expectedDurationMinutes: 8
27
+ role_modeling:
28
+ - id: sys_role_1
29
+ text: How do you help others develop systems thinking capabilities?
30
+ lookingFor:
31
+ - Teaching approaches
32
+ - Creating visibility
33
+ expectedDurationMinutes: 8
34
+ exemplifying:
35
+ - id: sys_exemp_1
36
+ text:
37
+ How do you define enterprise-wide systems architecture principles and
38
+ influence organizational thinking?
39
+ followUps:
40
+ - How do you advise executive leadership on complex systems?
41
+ lookingFor:
42
+ - Enterprise systems thinking leadership
43
+ - Executive advisory on complexity
44
+ expectedDurationMinutes: 10
45
+ - id: sys_exemp_2
46
+ text:
47
+ How do you bridge technical systems with business processes at an
48
+ organizational scale?
49
+ lookingFor:
50
+ - Business-technical systems integration
51
+ - Enterprise complexity management
52
+ expectedDurationMinutes: 10
@@ -0,0 +1,53 @@
1
+ # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
2
+
3
+ awareness:
4
+ - id: arch_aware_1
5
+ text: What do you understand by 'separation of concerns' in software design?
6
+ lookingFor:
7
+ - Basic understanding of modularity
8
+ - Recognition that different parts of a system should handle different
9
+ things
10
+ expectedDurationMinutes: 5
11
+ foundational:
12
+ - id: arch_found_1
13
+ text:
14
+ Walk me through a recent feature you built. How did you decide on the
15
+ structure?
16
+ followUps:
17
+ - What alternatives did you consider?
18
+ - What would you do differently?
19
+ lookingFor:
20
+ - Evidence of thoughtful design decisions
21
+ - Understanding of common patterns
22
+ expectedDurationMinutes: 8
23
+ working:
24
+ - id: arch_work_1
25
+ text:
26
+ Describe a system you designed. What were the key trade-offs you had to
27
+ make?
28
+ followUps:
29
+ - How did you validate these decisions?
30
+ lookingFor:
31
+ - Clear articulation of trade-offs
32
+ - Evidence of independent design work
33
+ expectedDurationMinutes: 8
34
+ practitioner:
35
+ - id: arch_pract_1
36
+ text:
37
+ Tell me about a time when you had to guide a team through a significant
38
+ architectural decision.
39
+ followUps:
40
+ - How did you handle disagreements?
41
+ lookingFor:
42
+ - Leadership in technical decisions
43
+ - Ability to build consensus
44
+ expectedDurationMinutes: 8
45
+ expert:
46
+ - id: arch_expert_1
47
+ text:
48
+ How do you approach defining and evolving architectural standards for an
49
+ organization?
50
+ lookingFor:
51
+ - Strategic thinking about architecture
52
+ - Experience with organizational influence
53
+ expectedDurationMinutes: 8