@forwardimpact/schema 0.4.0 → 0.7.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 (48) hide show
  1. package/bin/fit-schema.js +2 -2
  2. package/examples/capabilities/business.yaml +27 -11
  3. package/examples/capabilities/delivery.yaml +65 -27
  4. package/examples/capabilities/people.yaml +1 -1
  5. package/examples/capabilities/reliability.yaml +85 -31
  6. package/examples/capabilities/scale.yaml +83 -31
  7. package/examples/framework.yaml +5 -1
  8. package/examples/questions/behaviours/outcome_ownership.yaml +226 -49
  9. package/examples/questions/behaviours/polymathic_knowledge.yaml +273 -45
  10. package/examples/questions/behaviours/precise_communication.yaml +246 -52
  11. package/examples/questions/behaviours/relentless_curiosity.yaml +246 -48
  12. package/examples/questions/behaviours/systems_thinking.yaml +236 -50
  13. package/examples/questions/capabilities/business.yaml +107 -0
  14. package/examples/questions/capabilities/delivery.yaml +104 -0
  15. package/examples/questions/capabilities/people.yaml +104 -0
  16. package/examples/questions/capabilities/reliability.yaml +103 -0
  17. package/examples/questions/capabilities/scale.yaml +103 -0
  18. package/examples/questions/skills/architecture_design.yaml +102 -51
  19. package/examples/questions/skills/cloud_platforms.yaml +90 -44
  20. package/examples/questions/skills/code_quality.yaml +86 -45
  21. package/examples/questions/skills/data_modeling.yaml +93 -43
  22. package/examples/questions/skills/devops.yaml +91 -44
  23. package/examples/questions/skills/full_stack_development.yaml +93 -45
  24. package/examples/questions/skills/sre_practices.yaml +92 -41
  25. package/examples/questions/skills/stakeholder_management.yaml +97 -46
  26. package/examples/questions/skills/team_collaboration.yaml +87 -40
  27. package/examples/questions/skills/technical_writing.yaml +89 -40
  28. package/examples/stages.yaml +52 -13
  29. package/package.json +9 -9
  30. package/schema/json/behaviour-questions.schema.json +53 -26
  31. package/schema/json/capability-questions.schema.json +95 -0
  32. package/schema/json/capability.schema.json +8 -7
  33. package/schema/json/framework.schema.json +13 -0
  34. package/schema/json/skill-questions.schema.json +34 -19
  35. package/schema/json/stages.schema.json +6 -6
  36. package/schema/rdf/behaviour-questions.ttl +39 -7
  37. package/schema/rdf/capability.ttl +15 -15
  38. package/schema/rdf/defs.ttl +3 -3
  39. package/schema/rdf/framework.ttl +38 -0
  40. package/schema/rdf/skill-questions.ttl +28 -1
  41. package/schema/rdf/stages.ttl +14 -14
  42. package/{lib → src}/levels.js +53 -101
  43. package/{lib → src}/loader.js +9 -5
  44. package/{lib → src}/modifiers.js +3 -3
  45. package/{lib → src}/validation.js +105 -79
  46. /package/{lib → src}/index-generator.js +0 -0
  47. /package/{lib → src}/index.js +0 -0
  48. /package/{lib → src}/schema-validation.js +0 -0
@@ -1,47 +1,95 @@
1
1
  # yaml-language-server: $schema=https://www.forwardimpact.team/schema/json/skill-questions.schema.json
2
2
 
3
- awareness:
4
- - id: fs_aware_1
5
- text: What layers of a typical web application are you familiar with?
6
- lookingFor:
7
- - Basic understanding of frontend, backend, database
8
- - Awareness of how layers interact
9
- expectedDurationMinutes: 5
10
- foundational:
11
- - id: fs_found_1
12
- text:
13
- Walk me through building a simple feature that touches the UI, API, and
14
- database.
15
- lookingFor:
16
- - Understanding of full-stack flow
17
- - Basic implementation across layers
18
- expectedDurationMinutes: 10
19
- working:
20
- - id: fs_work_1
21
- text:
22
- Describe a complete feature you delivered end-to-end. How did you approach
23
- each layer?
24
- followUps:
25
- - What challenges did you face?
26
- lookingFor:
27
- - Independent full-stack delivery
28
- - Pragmatic technology choices
29
- expectedDurationMinutes: 10
30
- practitioner:
31
- - id: fs_pract_1
32
- text:
33
- How do you rapidly deliver complete solutions without depending on
34
- specialists?
35
- followUps:
36
- - How do you handle areas outside your expertise?
37
- lookingFor:
38
- - Speed of end-to-end delivery
39
- - Self-sufficiency across the stack
40
- expectedDurationMinutes: 10
41
- expert:
42
- - id: fs_expert_1
43
- text: How do you enable rapid full-stack delivery across teams?
44
- lookingFor:
45
- - Organizational full-stack enablement
46
- - Removing specialist dependencies at scale
47
- expectedDurationMinutes: 10
3
+ professionalQuestions:
4
+ awareness:
5
+ - id: fs_pro_aware_1
6
+ text: What layers of a typical web application are you familiar with?
7
+ lookingFor:
8
+ - Basic understanding of frontend, backend, database
9
+ - Awareness of how layers interact
10
+ expectedDurationMinutes: 5
11
+ foundational:
12
+ - id: fs_pro_found_1
13
+ text:
14
+ Walk me through building a simple feature that touches the UI, API, and
15
+ database.
16
+ lookingFor:
17
+ - Understanding of full-stack flow
18
+ - Basic implementation across layers
19
+ expectedDurationMinutes: 10
20
+ working:
21
+ - id: fs_pro_work_1
22
+ text:
23
+ Describe a complete feature you delivered end-to-end. How did you
24
+ approach each layer?
25
+ followUps:
26
+ - What challenges did you face?
27
+ lookingFor:
28
+ - Independent full-stack delivery
29
+ - Pragmatic technology choices
30
+ expectedDurationMinutes: 10
31
+ practitioner:
32
+ - id: fs_pro_pract_1
33
+ text:
34
+ How do you rapidly deliver complete solutions without depending on
35
+ specialists?
36
+ followUps:
37
+ - How do you handle areas outside your expertise?
38
+ lookingFor:
39
+ - Speed of end-to-end delivery
40
+ - Self-sufficiency across the stack
41
+ expectedDurationMinutes: 10
42
+ expert:
43
+ - id: fs_pro_expert_1
44
+ text: How do you enable rapid full-stack delivery across teams?
45
+ lookingFor:
46
+ - Organizational full-stack enablement
47
+ - Removing specialist dependencies at scale
48
+ expectedDurationMinutes: 10
49
+
50
+ managementQuestions:
51
+ awareness:
52
+ - id: fs_mgmt_aware_1
53
+ text:
54
+ How do you ensure your team can work across the full stack when needed?
55
+ lookingFor:
56
+ - Basic understanding of full-stack team needs
57
+ - Awareness of skill coverage
58
+ expectedDurationMinutes: 5
59
+ foundational:
60
+ - id: fs_mgmt_found_1
61
+ text: How do you handle skill gaps across the stack in your team?
62
+ followUps:
63
+ - When do you bring in specialists vs develop skills internally?
64
+ lookingFor:
65
+ - Skill gap management
66
+ - Team capability planning
67
+ expectedDurationMinutes: 10
68
+ working:
69
+ - id: fs_mgmt_work_1
70
+ text:
71
+ How do you balance specialist depth vs full-stack breadth in your team
72
+ composition?
73
+ followUps:
74
+ - How does this affect your hiring and development?
75
+ lookingFor:
76
+ - Team composition strategy
77
+ - Skill development planning
78
+ expectedDurationMinutes: 10
79
+ practitioner:
80
+ - id: fs_mgmt_pract_1
81
+ text: How do you build full-stack capabilities within your team?
82
+ followUps:
83
+ - How do you reduce dependencies on external specialists?
84
+ lookingFor:
85
+ - Full-stack capability development
86
+ - Team self-sufficiency strategies
87
+ expectedDurationMinutes: 10
88
+ expert:
89
+ - id: fs_mgmt_expert_1
90
+ text:
91
+ How do you enable autonomous full-stack delivery across multiple teams?
92
+ lookingFor:
93
+ - Cross-team full-stack enablement
94
+ - Organizational capability strategy
95
+ expectedDurationMinutes: 10
@@ -1,43 +1,94 @@
1
1
  # yaml-language-server: $schema=https://www.forwardimpact.team/schema/json/skill-questions.schema.json
2
2
 
3
- awareness:
4
- - id: sre_aware_1
5
- text: What do you understand by SLIs, SLOs, and error budgets?
6
- lookingFor:
7
- - Basic SRE concepts understanding
8
- - Awareness of reliability metrics
9
- expectedDurationMinutes: 5
10
- foundational:
11
- - id: sre_found_1
12
- text: How would you set up basic monitoring and alerting for a service?
13
- lookingFor:
14
- - Understanding of observability basics
15
- - Experience with monitoring tools
16
- expectedDurationMinutes: 8
17
- working:
18
- - id: sre_work_1
19
- text:
20
- Describe how you've handled an incident in production. What was your
21
- process?
22
- followUps:
23
- - What did you learn from it?
24
- lookingFor:
25
- - Incident response experience
26
- - Post-incident improvement
27
- expectedDurationMinutes: 10
28
- practitioner:
29
- - id: sre_pract_1
30
- text: How do you balance reliability with feature velocity in your team?
31
- lookingFor:
32
- - Error budget management
33
- - Pragmatic reliability decisions
34
- expectedDurationMinutes: 8
35
- expert:
36
- - id: sre_expert_1
37
- text:
38
- How have you established reliability culture and practices across an
39
- organization?
40
- lookingFor:
41
- - Organizational reliability leadership
42
- - Systematic reliability improvement
43
- expectedDurationMinutes: 10
3
+ professionalQuestions:
4
+ awareness:
5
+ - id: sre_pro_aware_1
6
+ text: What do you understand by SLIs, SLOs, and error budgets?
7
+ lookingFor:
8
+ - Basic SRE concepts understanding
9
+ - Awareness of reliability metrics
10
+ expectedDurationMinutes: 5
11
+ foundational:
12
+ - id: sre_pro_found_1
13
+ text: How would you set up basic monitoring and alerting for a service?
14
+ lookingFor:
15
+ - Understanding of observability basics
16
+ - Experience with monitoring tools
17
+ expectedDurationMinutes: 8
18
+ working:
19
+ - id: sre_pro_work_1
20
+ text:
21
+ Describe how you've handled an incident in production. What was your
22
+ process?
23
+ followUps:
24
+ - What did you learn from it?
25
+ lookingFor:
26
+ - Incident response experience
27
+ - Post-incident improvement
28
+ expectedDurationMinutes: 10
29
+ practitioner:
30
+ - id: sre_pro_pract_1
31
+ text: How do you balance reliability with feature velocity in your team?
32
+ lookingFor:
33
+ - Error budget management
34
+ - Pragmatic reliability decisions
35
+ expectedDurationMinutes: 8
36
+ expert:
37
+ - id: sre_pro_expert_1
38
+ text:
39
+ How have you established reliability culture and practices across an
40
+ organization?
41
+ lookingFor:
42
+ - Organizational reliability leadership
43
+ - Systematic reliability improvement
44
+ expectedDurationMinutes: 10
45
+
46
+ managementQuestions:
47
+ awareness:
48
+ - id: sre_mgmt_aware_1
49
+ text:
50
+ How do you ensure your team understands the reliability expectations for
51
+ their services?
52
+ lookingFor:
53
+ - Basic reliability awareness
54
+ - Team expectation setting
55
+ expectedDurationMinutes: 5
56
+ foundational:
57
+ - id: sre_mgmt_found_1
58
+ text:
59
+ How do you manage on-call rotations and incident response in your team?
60
+ followUps:
61
+ - How do you prevent burnout?
62
+ lookingFor:
63
+ - On-call management
64
+ - Team wellbeing awareness
65
+ expectedDurationMinutes: 8
66
+ working:
67
+ - id: sre_mgmt_work_1
68
+ text:
69
+ How do you balance reliability investment with feature delivery in your
70
+ team's roadmap?
71
+ followUps:
72
+ - How do you prioritize reliability work?
73
+ lookingFor:
74
+ - Reliability vs velocity trade-offs
75
+ - Roadmap prioritization
76
+ expectedDurationMinutes: 10
77
+ practitioner:
78
+ - id: sre_mgmt_pract_1
79
+ text: How do you build a reliability-focused culture within your team?
80
+ followUps:
81
+ - How do you learn from incidents?
82
+ lookingFor:
83
+ - Reliability culture development
84
+ - Incident learning practices
85
+ expectedDurationMinutes: 8
86
+ expert:
87
+ - id: sre_mgmt_expert_1
88
+ text:
89
+ How do you drive reliability practices and culture across multiple
90
+ teams?
91
+ lookingFor:
92
+ - Cross-team reliability leadership
93
+ - Organizational reliability strategy
94
+ expectedDurationMinutes: 10
@@ -1,48 +1,99 @@
1
1
  # yaml-language-server: $schema=https://www.forwardimpact.team/schema/json/skill-questions.schema.json
2
2
 
3
- awareness:
4
- - id: stk_aware_1
5
- text:
6
- Who are the key stakeholders you work with and how do you keep them
7
- informed?
8
- lookingFor:
9
- - Stakeholder identification
10
- - Basic communication practices
11
- expectedDurationMinutes: 5
12
- foundational:
13
- - id: stk_found_1
14
- text:
15
- How do you set expectations with stakeholders about timelines and
16
- deliverables?
17
- lookingFor:
18
- - Expectation management
19
- - Proactive communication
20
- expectedDurationMinutes: 5
21
- working:
22
- - id: stk_work_1
23
- text:
24
- Describe a situation where you had to manage conflicting stakeholder
25
- priorities.
26
- followUps:
27
- - How did you resolve it?
28
- lookingFor:
29
- - Conflict navigation
30
- - Prioritization skills
31
- expectedDurationMinutes: 8
32
- practitioner:
33
- - id: stk_pract_1
34
- text:
35
- How do you build trust with senior stakeholders and influence their
36
- decisions?
37
- lookingFor:
38
- - Executive relationship building
39
- - Influence without authority
40
- expectedDurationMinutes: 10
41
- expert:
42
- - id: stk_expert_1
43
- text:
44
- How do you manage complex stakeholder landscapes across an organization?
45
- lookingFor:
46
- - Enterprise stakeholder management
47
- - Political navigation
48
- expectedDurationMinutes: 10
3
+ professionalQuestions:
4
+ awareness:
5
+ - id: stk_pro_aware_1
6
+ text:
7
+ Who are the key stakeholders you work with and how do you keep them
8
+ informed?
9
+ lookingFor:
10
+ - Stakeholder identification
11
+ - Basic communication practices
12
+ expectedDurationMinutes: 5
13
+ foundational:
14
+ - id: stk_pro_found_1
15
+ text:
16
+ How do you set expectations with stakeholders about timelines and
17
+ deliverables?
18
+ lookingFor:
19
+ - Expectation management
20
+ - Proactive communication
21
+ expectedDurationMinutes: 5
22
+ working:
23
+ - id: stk_pro_work_1
24
+ text:
25
+ Describe a situation where you had to manage conflicting stakeholder
26
+ priorities.
27
+ followUps:
28
+ - How did you resolve it?
29
+ lookingFor:
30
+ - Conflict navigation
31
+ - Prioritization skills
32
+ expectedDurationMinutes: 8
33
+ practitioner:
34
+ - id: stk_pro_pract_1
35
+ text:
36
+ How do you build trust with senior stakeholders and influence their
37
+ decisions?
38
+ lookingFor:
39
+ - Executive relationship building
40
+ - Influence without authority
41
+ expectedDurationMinutes: 10
42
+ expert:
43
+ - id: stk_pro_expert_1
44
+ text:
45
+ How do you manage complex stakeholder landscapes across an organization?
46
+ lookingFor:
47
+ - Enterprise stakeholder management
48
+ - Political navigation
49
+ expectedDurationMinutes: 10
50
+
51
+ managementQuestions:
52
+ awareness:
53
+ - id: stk_mgmt_aware_1
54
+ text:
55
+ How do you ensure your team communicates effectively with stakeholders?
56
+ lookingFor:
57
+ - Basic stakeholder communication guidance
58
+ - Team communication awareness
59
+ expectedDurationMinutes: 5
60
+ foundational:
61
+ - id: stk_mgmt_found_1
62
+ text:
63
+ How do you shield your team from stakeholder pressure while maintaining
64
+ relationships?
65
+ followUps:
66
+ - How do you handle unrealistic demands?
67
+ lookingFor:
68
+ - Team protection practices
69
+ - Stakeholder boundary setting
70
+ expectedDurationMinutes: 5
71
+ working:
72
+ - id: stk_mgmt_work_1
73
+ text:
74
+ How do you represent your team's interests to stakeholders while
75
+ maintaining trust?
76
+ followUps:
77
+ - How do you handle conflicting stakeholder demands?
78
+ lookingFor:
79
+ - Team advocacy
80
+ - Stakeholder relationship management
81
+ expectedDurationMinutes: 8
82
+ practitioner:
83
+ - id: stk_mgmt_pract_1
84
+ text: How do you develop stakeholder management skills within your team?
85
+ followUps:
86
+ - How do you delegate stakeholder relationships?
87
+ lookingFor:
88
+ - Team stakeholder capability building
89
+ - Delegation of relationships
90
+ expectedDurationMinutes: 10
91
+ expert:
92
+ - id: stk_mgmt_expert_1
93
+ text:
94
+ How do you build strategic stakeholder relationships that benefit
95
+ multiple teams?
96
+ lookingFor:
97
+ - Cross-team stakeholder strategy
98
+ - Organizational relationship building
99
+ expectedDurationMinutes: 10
@@ -1,42 +1,89 @@
1
1
  # yaml-language-server: $schema=https://www.forwardimpact.team/schema/json/skill-questions.schema.json
2
2
 
3
- awareness:
4
- - id: tc_aware_1
5
- text: How do you work with your team to complete shared tasks?
6
- lookingFor:
7
- - Basic teamwork skills
8
- - Communication practices
9
- expectedDurationMinutes: 5
10
- foundational:
11
- - id: tc_found_1
12
- text:
13
- Describe how you've helped a teammate when they were stuck on a problem.
14
- lookingFor:
15
- - Supportive collaboration
16
- - Knowledge sharing
17
- expectedDurationMinutes: 5
18
- working:
19
- - id: tc_work_1
20
- text: How do you facilitate effective collaboration within your team?
21
- followUps:
22
- - How do you handle remote collaboration?
23
- lookingFor:
24
- - Active collaboration facilitation
25
- - Team enablement
26
- expectedDurationMinutes: 8
27
- practitioner:
28
- - id: tc_pract_1
29
- text: Describe how you've built high-performing team dynamics.
30
- lookingFor:
31
- - Team building expertise
32
- - Handling interpersonal challenges
33
- expectedDurationMinutes: 10
34
- expert:
35
- - id: tc_expert_1
36
- text:
37
- How do you create collaborative culture across multiple teams or an
38
- organization?
39
- lookingFor:
40
- - Cross-team collaboration leadership
41
- - Organizational culture shaping
42
- expectedDurationMinutes: 10
3
+ professionalQuestions:
4
+ awareness:
5
+ - id: tc_pro_aware_1
6
+ text: How do you work with your team to complete shared tasks?
7
+ lookingFor:
8
+ - Basic teamwork skills
9
+ - Communication practices
10
+ expectedDurationMinutes: 5
11
+ foundational:
12
+ - id: tc_pro_found_1
13
+ text:
14
+ Describe how you've helped a teammate when they were stuck on a problem.
15
+ lookingFor:
16
+ - Supportive collaboration
17
+ - Knowledge sharing
18
+ expectedDurationMinutes: 5
19
+ working:
20
+ - id: tc_pro_work_1
21
+ text: How do you facilitate effective collaboration within your team?
22
+ followUps:
23
+ - How do you handle remote collaboration?
24
+ lookingFor:
25
+ - Active collaboration facilitation
26
+ - Team enablement
27
+ expectedDurationMinutes: 8
28
+ practitioner:
29
+ - id: tc_pro_pract_1
30
+ text: Describe how you've built high-performing team dynamics.
31
+ lookingFor:
32
+ - Team building expertise
33
+ - Handling interpersonal challenges
34
+ expectedDurationMinutes: 10
35
+ expert:
36
+ - id: tc_pro_expert_1
37
+ text:
38
+ How do you create collaborative culture across multiple teams or an
39
+ organization?
40
+ lookingFor:
41
+ - Cross-team collaboration leadership
42
+ - Organizational culture shaping
43
+ expectedDurationMinutes: 10
44
+
45
+ managementQuestions:
46
+ awareness:
47
+ - id: tc_mgmt_aware_1
48
+ text: How do you encourage collaboration within your team?
49
+ lookingFor:
50
+ - Basic collaboration encouragement
51
+ - Team communication awareness
52
+ expectedDurationMinutes: 5
53
+ foundational:
54
+ - id: tc_mgmt_found_1
55
+ text: How do you handle conflicts or tensions within your team?
56
+ followUps:
57
+ - How do you prevent conflicts from escalating?
58
+ lookingFor:
59
+ - Conflict resolution approach
60
+ - Team harmony maintenance
61
+ expectedDurationMinutes: 5
62
+ working:
63
+ - id: tc_mgmt_work_1
64
+ text: How do you build psychological safety and trust within your team?
65
+ followUps:
66
+ - How do you measure team health?
67
+ lookingFor:
68
+ - Psychological safety practices
69
+ - Team health monitoring
70
+ expectedDurationMinutes: 8
71
+ practitioner:
72
+ - id: tc_mgmt_pract_1
73
+ text:
74
+ How do you develop collaboration skills and team culture in your team?
75
+ followUps:
76
+ - How do you onboard new members into the team culture?
77
+ lookingFor:
78
+ - Team culture development
79
+ - Collaboration skill building
80
+ expectedDurationMinutes: 10
81
+ expert:
82
+ - id: tc_mgmt_expert_1
83
+ text:
84
+ How do you foster collaborative culture across multiple teams you
85
+ influence?
86
+ lookingFor:
87
+ - Cross-team collaboration leadership
88
+ - Organizational culture shaping
89
+ expectedDurationMinutes: 10