@forwardimpact/pathway 0.4.0 → 0.6.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 (245) hide show
  1. package/bin/{pathway.js → fit-pathway.js} +65 -153
  2. package/package.json +18 -41
  3. package/{app → src}/commands/agent.js +5 -2
  4. package/{app → src}/commands/behaviour.js +1 -1
  5. package/{app → src}/commands/command-factory.js +2 -2
  6. package/{app → src}/commands/discipline.js +1 -1
  7. package/{app → src}/commands/driver.js +2 -2
  8. package/{app → src}/commands/grade.js +2 -2
  9. package/{app → src}/commands/job.js +3 -3
  10. package/{app → src}/commands/serve.js +26 -4
  11. package/{app → src}/commands/site.js +24 -4
  12. package/{app → src}/commands/skill.js +3 -3
  13. package/{app → src}/commands/stage.js +1 -1
  14. package/{app → src}/commands/track.js +2 -2
  15. package/{app → src}/components/card.js +11 -1
  16. package/{app → src}/components/checklist.js +1 -1
  17. package/src/components/code-display.js +153 -0
  18. package/{app → src}/components/comparison-radar.js +1 -1
  19. package/{app → src}/components/detail.js +1 -1
  20. package/src/components/markdown-textarea.js +153 -0
  21. package/{app → src}/components/skill-matrix.js +1 -1
  22. package/{app → src}/css/bundles/app.css +14 -0
  23. package/{app → src}/css/components/badges.css +15 -8
  24. package/{app → src}/css/components/forms.css +23 -13
  25. package/{app → src}/css/components/surfaces.css +49 -3
  26. package/{app → src}/css/components/typography.css +1 -2
  27. package/{app → src}/css/pages/agent-builder.css +11 -102
  28. package/{app → src}/css/pages/detail.css +11 -1
  29. package/{app → src}/css/tokens.css +3 -0
  30. package/{app → src}/formatters/agent/dom.js +26 -71
  31. package/{app → src}/formatters/agent/profile.js +11 -6
  32. package/{app → src}/formatters/behaviour/dom.js +1 -1
  33. package/{app → src}/formatters/discipline/dom.js +1 -1
  34. package/{app → src}/formatters/driver/dom.js +1 -1
  35. package/{app → src}/formatters/grade/dom.js +7 -7
  36. package/{app → src}/formatters/grade/markdown.js +1 -1
  37. package/{app → src}/formatters/interview/dom.js +1 -1
  38. package/{app → src}/formatters/interview/markdown.js +1 -1
  39. package/{app → src}/formatters/interview/shared.js +3 -3
  40. package/{app → src}/formatters/job/description.js +1 -1
  41. package/{app → src}/formatters/job/dom.js +3 -3
  42. package/{app → src}/formatters/job/markdown.js +1 -1
  43. package/{app → src}/formatters/json-ld.js +1 -1
  44. package/{app → src}/formatters/progress/shared.js +3 -3
  45. package/{app → src}/formatters/skill/dom.js +69 -57
  46. package/{app → src}/formatters/skill/markdown.js +1 -1
  47. package/{app → src}/formatters/skill/shared.js +5 -3
  48. package/{app → src}/formatters/stage/microdata.js +2 -2
  49. package/{app → src}/formatters/stage/shared.js +3 -3
  50. package/{app → src}/formatters/tool/shared.js +6 -0
  51. package/{app → src}/formatters/track/dom.js +1 -1
  52. package/{app → src}/formatters/track/markdown.js +1 -1
  53. package/{app → src}/formatters/track/shared.js +4 -1
  54. package/{app → src}/handout-main.js +16 -12
  55. package/src/handout.html +43 -0
  56. package/{app → src}/index.html +23 -2
  57. package/{app → src}/lib/card-mappers.js +28 -1
  58. package/{app → src}/lib/job-cache.js +1 -1
  59. package/{app → src}/lib/render.js +1 -1
  60. package/{app → src}/pages/agent-builder.js +120 -76
  61. package/{app → src}/pages/assessment-results.js +1 -1
  62. package/{app → src}/pages/interview.js +1 -1
  63. package/{app → src}/pages/job-builder.js +1 -1
  64. package/{app → src}/pages/job.js +1 -1
  65. package/{app → src}/pages/landing.js +5 -2
  66. package/{app → src}/pages/self-assessment.js +1 -1
  67. package/{app → src}/pages/skill.js +1 -1
  68. package/{app → src}/pages/stage.js +5 -5
  69. package/{app → src}/pages/tool.js +1 -1
  70. package/{app → src}/slide-main.js +2 -2
  71. package/{app → src}/slides/chapter.js +8 -8
  72. package/{app → src}/slides/index.js +3 -3
  73. package/{app → src}/slides/job.js +1 -1
  74. package/{app → src}/slides/overview.js +9 -9
  75. package/{app → src}/slides/skill.js +1 -0
  76. package/{app → src}/slides.html +16 -1
  77. package/templates/agent.template.md +44 -13
  78. package/templates/job.template.md +14 -20
  79. package/templates/skill.template.md +20 -23
  80. package/LICENSE +0 -201
  81. package/README.md +0 -104
  82. package/app/components/markdown-textarea.js +0 -132
  83. package/app/handout.html +0 -28
  84. package/app/model/agent.js +0 -738
  85. package/app/model/checklist.js +0 -103
  86. package/app/model/derivation.js +0 -766
  87. package/app/model/index-generator.js +0 -65
  88. package/app/model/interview.js +0 -539
  89. package/app/model/job.js +0 -228
  90. package/app/model/levels.js +0 -601
  91. package/app/model/loader.js +0 -599
  92. package/app/model/matching.js +0 -888
  93. package/app/model/modifiers.js +0 -158
  94. package/app/model/profile.js +0 -259
  95. package/app/model/progression.js +0 -507
  96. package/app/model/schema-validation.js +0 -438
  97. package/app/model/validation.js +0 -2130
  98. package/examples/agents/.claude/skills/architecture-design/SKILL.md +0 -130
  99. package/examples/agents/.claude/skills/cloud-platforms/SKILL.md +0 -131
  100. package/examples/agents/.claude/skills/code-quality-review/SKILL.md +0 -108
  101. package/examples/agents/.claude/skills/devops-cicd/SKILL.md +0 -142
  102. package/examples/agents/.claude/skills/full-stack-development/SKILL.md +0 -134
  103. package/examples/agents/.claude/skills/sre-practices/SKILL.md +0 -163
  104. package/examples/agents/.claude/skills/technical-debt-management/SKILL.md +0 -164
  105. package/examples/agents/.github/agents/se-platform-code.agent.md +0 -132
  106. package/examples/agents/.github/agents/se-platform-plan.agent.md +0 -131
  107. package/examples/agents/.github/agents/se-platform-review.agent.md +0 -136
  108. package/examples/agents/.vscode/settings.json +0 -8
  109. package/examples/behaviours/_index.yaml +0 -8
  110. package/examples/behaviours/outcome_ownership.yaml +0 -43
  111. package/examples/behaviours/polymathic_knowledge.yaml +0 -41
  112. package/examples/behaviours/precise_communication.yaml +0 -39
  113. package/examples/behaviours/relentless_curiosity.yaml +0 -37
  114. package/examples/behaviours/systems_thinking.yaml +0 -40
  115. package/examples/capabilities/_index.yaml +0 -8
  116. package/examples/capabilities/business.yaml +0 -189
  117. package/examples/capabilities/delivery.yaml +0 -303
  118. package/examples/capabilities/people.yaml +0 -68
  119. package/examples/capabilities/reliability.yaml +0 -412
  120. package/examples/capabilities/scale.yaml +0 -378
  121. package/examples/copilot-setup-steps.yaml +0 -25
  122. package/examples/devcontainer.yaml +0 -21
  123. package/examples/disciplines/_index.yaml +0 -6
  124. package/examples/disciplines/data_engineering.yaml +0 -78
  125. package/examples/disciplines/engineering_management.yaml +0 -63
  126. package/examples/disciplines/software_engineering.yaml +0 -78
  127. package/examples/drivers.yaml +0 -202
  128. package/examples/framework.yaml +0 -69
  129. package/examples/grades.yaml +0 -115
  130. package/examples/questions/behaviours/outcome_ownership.yaml +0 -51
  131. package/examples/questions/behaviours/polymathic_knowledge.yaml +0 -47
  132. package/examples/questions/behaviours/precise_communication.yaml +0 -54
  133. package/examples/questions/behaviours/relentless_curiosity.yaml +0 -50
  134. package/examples/questions/behaviours/systems_thinking.yaml +0 -52
  135. package/examples/questions/skills/architecture_design.yaml +0 -53
  136. package/examples/questions/skills/cloud_platforms.yaml +0 -47
  137. package/examples/questions/skills/code_quality.yaml +0 -48
  138. package/examples/questions/skills/data_modeling.yaml +0 -45
  139. package/examples/questions/skills/devops.yaml +0 -46
  140. package/examples/questions/skills/full_stack_development.yaml +0 -47
  141. package/examples/questions/skills/sre_practices.yaml +0 -43
  142. package/examples/questions/skills/stakeholder_management.yaml +0 -48
  143. package/examples/questions/skills/team_collaboration.yaml +0 -42
  144. package/examples/questions/skills/technical_writing.yaml +0 -42
  145. package/examples/self-assessments.yaml +0 -64
  146. package/examples/stages.yaml +0 -131
  147. package/examples/tracks/_index.yaml +0 -5
  148. package/examples/tracks/platform.yaml +0 -49
  149. package/examples/tracks/sre.yaml +0 -48
  150. package/examples/vscode-settings.yaml +0 -17
  151. /package/{app → src}/commands/index.js +0 -0
  152. /package/{app → src}/commands/init.js +0 -0
  153. /package/{app → src}/commands/interview.js +0 -0
  154. /package/{app → src}/commands/progress.js +0 -0
  155. /package/{app → src}/commands/questions.js +0 -0
  156. /package/{app → src}/commands/tool.js +0 -0
  157. /package/{app → src}/components/action-buttons.js +0 -0
  158. /package/{app → src}/components/behaviour-profile.js +0 -0
  159. /package/{app → src}/components/builder.js +0 -0
  160. /package/{app → src}/components/error-page.js +0 -0
  161. /package/{app → src}/components/grid.js +0 -0
  162. /package/{app → src}/components/list.js +0 -0
  163. /package/{app → src}/components/modifier-table.js +0 -0
  164. /package/{app → src}/components/nav.js +0 -0
  165. /package/{app → src}/components/progression-table.js +0 -0
  166. /package/{app → src}/components/radar-chart.js +0 -0
  167. /package/{app → src}/css/base.css +0 -0
  168. /package/{app → src}/css/bundles/handout.css +0 -0
  169. /package/{app → src}/css/bundles/slides.css +0 -0
  170. /package/{app → src}/css/components/buttons.css +0 -0
  171. /package/{app → src}/css/components/layout.css +0 -0
  172. /package/{app → src}/css/components/nav.css +0 -0
  173. /package/{app → src}/css/components/progress.css +0 -0
  174. /package/{app → src}/css/components/states.css +0 -0
  175. /package/{app → src}/css/components/tables.css +0 -0
  176. /package/{app → src}/css/components/utilities.css +0 -0
  177. /package/{app → src}/css/pages/assessment-results.css +0 -0
  178. /package/{app → src}/css/pages/interview-builder.css +0 -0
  179. /package/{app → src}/css/pages/job-builder.css +0 -0
  180. /package/{app → src}/css/pages/landing.css +0 -0
  181. /package/{app → src}/css/pages/lifecycle.css +0 -0
  182. /package/{app → src}/css/pages/progress-builder.css +0 -0
  183. /package/{app → src}/css/pages/self-assessment.css +0 -0
  184. /package/{app → src}/css/reset.css +0 -0
  185. /package/{app → src}/css/views/handout.css +0 -0
  186. /package/{app → src}/css/views/print.css +0 -0
  187. /package/{app → src}/css/views/slide-animations.css +0 -0
  188. /package/{app → src}/css/views/slide-base.css +0 -0
  189. /package/{app → src}/css/views/slide-sections.css +0 -0
  190. /package/{app → src}/css/views/slide-tables.css +0 -0
  191. /package/{app → src}/formatters/agent/skill.js +0 -0
  192. /package/{app → src}/formatters/behaviour/markdown.js +0 -0
  193. /package/{app → src}/formatters/behaviour/microdata.js +0 -0
  194. /package/{app → src}/formatters/behaviour/shared.js +0 -0
  195. /package/{app → src}/formatters/discipline/markdown.js +0 -0
  196. /package/{app → src}/formatters/discipline/microdata.js +0 -0
  197. /package/{app → src}/formatters/discipline/shared.js +0 -0
  198. /package/{app → src}/formatters/driver/microdata.js +0 -0
  199. /package/{app → src}/formatters/driver/shared.js +0 -0
  200. /package/{app → src}/formatters/grade/microdata.js +0 -0
  201. /package/{app → src}/formatters/grade/shared.js +0 -0
  202. /package/{app → src}/formatters/index.js +0 -0
  203. /package/{app → src}/formatters/microdata-shared.js +0 -0
  204. /package/{app → src}/formatters/progress/dom.js +0 -0
  205. /package/{app → src}/formatters/progress/markdown.js +0 -0
  206. /package/{app → src}/formatters/questions/json.js +0 -0
  207. /package/{app → src}/formatters/questions/markdown.js +0 -0
  208. /package/{app → src}/formatters/questions/shared.js +0 -0
  209. /package/{app → src}/formatters/questions/yaml.js +0 -0
  210. /package/{app → src}/formatters/shared.js +0 -0
  211. /package/{app → src}/formatters/skill/microdata.js +0 -0
  212. /package/{app → src}/formatters/stage/dom.js +0 -0
  213. /package/{app → src}/formatters/stage/index.js +0 -0
  214. /package/{app → src}/formatters/track/microdata.js +0 -0
  215. /package/{app → src}/lib/cli-output.js +0 -0
  216. /package/{app → src}/lib/error-boundary.js +0 -0
  217. /package/{app → src}/lib/errors.js +0 -0
  218. /package/{app → src}/lib/form-controls.js +0 -0
  219. /package/{app → src}/lib/markdown.js +0 -0
  220. /package/{app → src}/lib/radar.js +0 -0
  221. /package/{app → src}/lib/reactive.js +0 -0
  222. /package/{app → src}/lib/router-core.js +0 -0
  223. /package/{app → src}/lib/router-pages.js +0 -0
  224. /package/{app → src}/lib/router-slides.js +0 -0
  225. /package/{app → src}/lib/state.js +0 -0
  226. /package/{app → src}/lib/template-loader.js +0 -0
  227. /package/{app → src}/lib/utils.js +0 -0
  228. /package/{app → src}/lib/yaml-loader.js +0 -0
  229. /package/{app → src}/main.js +0 -0
  230. /package/{app → src}/pages/behaviour.js +0 -0
  231. /package/{app → src}/pages/discipline.js +0 -0
  232. /package/{app → src}/pages/driver.js +0 -0
  233. /package/{app → src}/pages/grade.js +0 -0
  234. /package/{app → src}/pages/interview-builder.js +0 -0
  235. /package/{app → src}/pages/progress-builder.js +0 -0
  236. /package/{app → src}/pages/progress.js +0 -0
  237. /package/{app → src}/pages/track.js +0 -0
  238. /package/{app → src}/slides/behaviour.js +0 -0
  239. /package/{app → src}/slides/discipline.js +0 -0
  240. /package/{app → src}/slides/driver.js +0 -0
  241. /package/{app → src}/slides/grade.js +0 -0
  242. /package/{app → src}/slides/interview.js +0 -0
  243. /package/{app → src}/slides/progress.js +0 -0
  244. /package/{app → src}/slides/track.js +0 -0
  245. /package/{app → src}/types.js +0 -0
@@ -1,47 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
2
-
3
- awareness:
4
- - id: cp_aware_1
5
- text: What cloud platforms are you familiar with?
6
- lookingFor:
7
- - Basic cloud awareness
8
- - Understanding of cloud services
9
- expectedDurationMinutes: 5
10
-
11
- foundational:
12
- - id: cp_found_1
13
- text: How would you deploy a simple application to the cloud?
14
- lookingFor:
15
- - Basic deployment knowledge
16
- - Understanding of cloud resources
17
- expectedDurationMinutes: 8
18
-
19
- working:
20
- - id: cp_work_1
21
- text:
22
- Describe a cloud architecture you've designed. What services did you use
23
- and why?
24
- followUps:
25
- - How did you handle cost optimization?
26
- lookingFor:
27
- - Practical cloud architecture experience
28
- - Service selection rationale
29
- expectedDurationMinutes: 10
30
-
31
- practitioner:
32
- - id: cp_pract_1
33
- text:
34
- How do you approach cloud cost optimization and governance for your team?
35
- lookingFor:
36
- - Cloud cost management
37
- - Governance practices
38
- expectedDurationMinutes: 8
39
-
40
- expert:
41
- - id: cp_expert_1
42
- text:
43
- How have you shaped cloud strategy and practices across an organization?
44
- lookingFor:
45
- - Enterprise cloud strategy
46
- - Multi-cloud or hybrid considerations
47
- expectedDurationMinutes: 10
@@ -1,48 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
2
-
3
- awareness:
4
- - id: cq_aware_1
5
- text: What does 'clean code' mean to you?
6
- lookingFor:
7
- - Basic understanding of readability
8
- - Awareness of maintainability concerns
9
- expectedDurationMinutes: 5
10
-
11
- foundational:
12
- - id: cq_found_1
13
- text: How do you ensure the code you write is readable by others?
14
- followUps:
15
- - What naming conventions do you follow?
16
- - How do you decide when to add comments?
17
- lookingFor:
18
- - Consistent coding practices
19
- - Understanding of code formatting and structure
20
- expectedDurationMinutes: 5
21
-
22
- working:
23
- - id: cq_work_1
24
- text: How do you approach code review? What do you look for?
25
- lookingFor:
26
- - Systematic approach to reviews
27
- - Balance between quality and velocity
28
- expectedDurationMinutes: 8
29
-
30
- practitioner:
31
- - id: cq_pract_1
32
- text: How have you improved code quality practices in your team?
33
- lookingFor:
34
- - Measurable improvements
35
- - Team influence
36
- expectedDurationMinutes: 8
37
-
38
- expert:
39
- - id: cq_expert_1
40
- text:
41
- How have you established code quality standards across an organization?
42
- followUps:
43
- - How did you gain adoption?
44
- - How do you measure success?
45
- lookingFor:
46
- - Organizational influence
47
- - Scalable quality practices
48
- expectedDurationMinutes: 10
@@ -1,45 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
2
-
3
- awareness:
4
- - id: dm_aware_1
5
- text: What's the difference between relational and non-relational databases?
6
- lookingFor:
7
- - Basic database concepts
8
- - Understanding of use cases for each
9
- expectedDurationMinutes: 5
10
- foundational:
11
- - id: dm_found_1
12
- text:
13
- How would you design a simple database schema for a user management
14
- system?
15
- lookingFor:
16
- - Basic schema design
17
- - Understanding of normalization
18
- expectedDurationMinutes: 8
19
- working:
20
- - id: dm_work_1
21
- text: Describe a data model you've designed. What trade-offs did you make?
22
- followUps:
23
- - How did you handle performance?
24
- lookingFor:
25
- - Practical data modeling experience
26
- - Performance considerations
27
- expectedDurationMinutes: 10
28
- practitioner:
29
- - id: dm_pract_1
30
- text:
31
- How do you approach data modeling for complex domains with evolving
32
- requirements?
33
- lookingFor:
34
- - Advanced modeling techniques
35
- - Handling schema evolution
36
- expectedDurationMinutes: 10
37
- expert:
38
- - id: dm_expert_1
39
- text:
40
- How do you establish data modeling standards and practices across an
41
- organization?
42
- lookingFor:
43
- - Enterprise data architecture
44
- - Organizational standards leadership
45
- expectedDurationMinutes: 10
@@ -1,46 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
2
-
3
- awareness:
4
- - id: devops_aware_1
5
- text: What do you understand about CI/CD pipelines? How have you used them?
6
- lookingFor:
7
- - Basic understanding of automated builds and deployments
8
- - Experience using pipelines defined by others
9
- expectedDurationMinutes: 5
10
- foundational:
11
- - id: devops_found_1
12
- text: Describe how you would set up a basic CI pipeline for a new project.
13
- lookingFor:
14
- - Understanding of CI fundamentals
15
- - Basic pipeline configuration knowledge
16
- expectedDurationMinutes: 8
17
- working:
18
- - id: devops_work_1
19
- text:
20
- Tell me about a deployment pipeline you've built. What stages did it
21
- include?
22
- followUps:
23
- - How did you handle failures?
24
- - What monitoring did you add?
25
- lookingFor:
26
- - End-to-end pipeline experience
27
- - Infrastructure as code awareness
28
- expectedDurationMinutes: 10
29
- practitioner:
30
- - id: devops_pract_1
31
- text: How have you improved deployment practices in your team?
32
- followUps:
33
- - How did you measure improvement?
34
- lookingFor:
35
- - DevOps leadership
36
- - Metrics-driven improvement
37
- expectedDurationMinutes: 8
38
- expert:
39
- - id: devops_expert_1
40
- text: How have you shaped DevOps practices across an organization?
41
- followUps:
42
- - What cultural changes did you drive?
43
- lookingFor:
44
- - Organizational DevOps transformation
45
- - Culture change leadership
46
- expectedDurationMinutes: 10
@@ -1,47 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
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
@@ -1,43 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
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
@@ -1,48 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
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
@@ -1,42 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
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
@@ -1,42 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/skill-questions.schema.json
2
-
3
- awareness:
4
- - id: tw_aware_1
5
- text: How do you approach documenting your code and work?
6
- lookingFor:
7
- - Basic documentation habits
8
- - Understanding of documentation importance
9
- expectedDurationMinutes: 5
10
- foundational:
11
- - id: tw_found_1
12
- text: What makes a good README file? Walk me through what you'd include.
13
- lookingFor:
14
- - README best practices
15
- - Reader-centric documentation
16
- expectedDurationMinutes: 5
17
- working:
18
- - id: tw_work_1
19
- text:
20
- How do you write technical specifications that enable others to implement
21
- features?
22
- followUps:
23
- - How detailed do you go?
24
- lookingFor:
25
- - Spec writing skills
26
- - Communication of technical requirements
27
- expectedDurationMinutes: 8
28
- practitioner:
29
- - id: tw_pract_1
30
- text:
31
- How do you establish documentation standards and practices in your team?
32
- lookingFor:
33
- - Documentation leadership
34
- - Spec-driven development advocacy
35
- expectedDurationMinutes: 8
36
- expert:
37
- - id: tw_expert_1
38
- text: How do you create organizational documentation culture and systems?
39
- lookingFor:
40
- - Enterprise documentation strategy
41
- - Knowledge management systems
42
- expectedDurationMinutes: 10
@@ -1,64 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/self-assessments.schema.json
2
-
3
- - id: example_mid_swe
4
- skillLevels:
5
- architecture_design: working
6
- code_quality: working
7
- devops: foundational
8
- ai_augmented_development: foundational
9
- technical_debt_management: foundational
10
- lean_thinking: awareness
11
- data_modeling: awareness
12
- stakeholder_management: awareness
13
- technical_writing: foundational
14
- ai_literacy: foundational
15
- service_management: awareness
16
- behaviourMaturities:
17
- precise_communication: developing
18
- relentless_curiosity: developing
19
- outcome_ownership: developing
20
- polymathic_knowledge: emerging
21
- systems_thinking: developing
22
-
23
- # Example: Senior Data Engineer
24
- - id: example_senior_de
25
- skillLevels:
26
- data_modeling: practitioner
27
- data_integration: practitioner
28
- architecture_design: working
29
- code_quality: working
30
- devops: working
31
- cloud_platforms: working
32
- ai_literacy: working
33
- stakeholder_management: foundational
34
- technical_writing: foundational
35
- ai_augmented_development: foundational
36
- lean_thinking: foundational
37
- behaviourMaturities:
38
- precise_communication: practicing
39
- relentless_curiosity: practicing
40
- outcome_ownership: practicing
41
- polymathic_knowledge: developing
42
- systems_thinking: practicing
43
-
44
- # Example: Data Scientist - R&D Focus
45
- - id: example_ds_rd
46
- skillLevels:
47
- model_development: working
48
- data_analysis: working
49
- statistical_modeling: working
50
- data_modeling: foundational
51
- ai_evaluation: working
52
- technical_writing: foundational
53
- business_immersion: foundational
54
- code_quality: foundational
55
- stakeholder_management: awareness
56
- ai_literacy: working
57
- multi_audience_communication: foundational
58
- service_management: awareness
59
- behaviourMaturities:
60
- precise_communication: developing
61
- relentless_curiosity: practicing
62
- outcome_ownership: developing
63
- polymathic_knowledge: developing
64
- systems_thinking: developing
@@ -1,131 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/stages.schema.json
2
-
3
- - id: specify
4
- name: Specify
5
- emoji: "🎯"
6
- description:
7
- Define What and Why - User stories, acceptance criteria, requirements
8
- handoffs:
9
- - targetStage: specify
10
- label: Refine Spec
11
- prompt: Refine spec.md with more detail or clarity.
12
- - targetStage: specify
13
- label: Alternative Spec
14
- prompt: Create an alternative spec.md exploring a different approach.
15
- - targetStage: plan
16
- label: Create Plan
17
- prompt: Create plan.md based on spec.md.
18
- constraints:
19
- - Do not make code edits or execute commands
20
- - Focus on WHAT users need and WHY, not HOW to implement
21
- - Write specifications as markdown files under specs/[feature-name]/spec.md
22
- - Mark ambiguities with [NEEDS CLARIFICATION]; ask the user; do not guess
23
- - No technology choices, APIs, or code structure in specifications
24
- entryCriteria: []
25
- exitCriteria:
26
- - spec.md exists with user stories and acceptance criteria
27
- - No unresolved [NEEDS CLARIFICATION] markers in spec.md
28
-
29
- - id: plan
30
- name: Plan
31
- emoji: "📐"
32
- description:
33
- Define How - Technology choices, architecture, contracts, data models
34
- handoffs:
35
- - targetStage: plan
36
- label: Refine Plan
37
- prompt: Refine plan.md with more detail or clarity.
38
- - targetStage: plan
39
- label: Alternative Plan
40
- prompt: Create an alternative plan.md exploring a different approach.
41
- - targetStage: code
42
- label: Start Coding
43
- prompt: Implement the tasks defined in plan.md.
44
- constraints:
45
- - Do not make code edits or execute commands
46
- - Every technology choice must trace back to a specific requirement
47
- - Write plans as markdown files under specs/[feature-name]/plan.md
48
- - Define contracts and data models before implementation details
49
- - Document rationale for architectural decisions
50
- entryCriteria:
51
- - spec.md exists with user stories and acceptance criteria
52
- - No unresolved [NEEDS CLARIFICATION] markers in spec.md
53
- exitCriteria:
54
- - plan.md exists with technology choices and architecture
55
- - Contracts and data models defined where applicable
56
- - No unresolved [NEEDS CLARIFICATION] markers in plan.md
57
-
58
- - id: code
59
- name: Code
60
- emoji: "💻"
61
- description: Build and Iterate - Implement, test, refine
62
- handoffs:
63
- - targetStage: review
64
- label: Request Review
65
- prompt: Review the implemented changes.
66
- constraints:
67
- - Implement one task at a time, verify before moving on
68
- - Write tests alongside implementation
69
- - Track progress with the todo tool
70
- entryCriteria:
71
- - spec.md exists with user stories and acceptance criteria
72
- - plan.md exists with technology choices and architecture
73
- - No unresolved [NEEDS CLARIFICATION] markers in plan.md
74
- exitCriteria:
75
- - Implementation complete according to plan.md
76
- - Tests written and passing
77
- - Self-review completed
78
-
79
- - id: review
80
- name: Review
81
- emoji: "🔍"
82
- description: Verify and Ship - Review, approve, document
83
- handoffs:
84
- - targetStage: code
85
- label: Request Changes
86
- prompt: Address the findings in review.md.
87
- - targetStage: plan
88
- label: Needs Re-planning
89
- prompt: Update plan.md to address issues found in review.md.
90
- - targetStage: deploy
91
- label: Deploy
92
- prompt: Deploy the approved changes.
93
- constraints:
94
- - Do not make code edits
95
- - Write review findings as markdown under specs/[feature-name]/review.md
96
- - Prioritize actionable feedback over exhaustive lists
97
- - Track findings and required changes with the todo tool
98
- - Run the application locally and verify changes work as expected
99
- - Test user-facing functionality against acceptance criteria
100
- entryCriteria:
101
- - Implementation complete according to plan.md
102
- - Tests written and passing
103
- - Self-review completed
104
- exitCriteria:
105
- - Application runs locally without errors
106
- - Changes verified against acceptance criteria through manual testing
107
- - No blocking issues identified in review
108
- - Review approved
109
-
110
- - id: deploy
111
- name: Deploy
112
- emoji: "🚀"
113
- description: Ship to Production - Push, monitor workflows, verify deployment
114
- handoffs:
115
- - targetStage: code
116
- label: Fix Pipeline
117
- prompt: Fix the failing workflow issues identified during deployment.
118
- constraints:
119
- - Use git push to deploy changes
120
- - Use gh CLI to monitor triggered workflows (gh run list, gh run watch)
121
- - Do not make code edits; hand off to code stage if fixes are needed
122
- - Verify all workflows complete successfully before considering deployment
123
- done
124
- entryCriteria:
125
- - Application runs locally without errors
126
- - Changes verified against acceptance criteria through manual testing
127
- - No blocking issues identified in review
128
- - Review approved
129
- exitCriteria:
130
- - All triggered workflows are green
131
- - Deployment verified in target environment
@@ -1,5 +0,0 @@
1
- # Auto-generated index for browser loading
2
- # Do not edit manually - regenerate with: npx pathway --generate-index
3
- files:
4
- - platform
5
- - sre
@@ -1,49 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/track.schema.json
2
-
3
- name: Platform
4
-
5
- # Shared content (used by both human job descriptions and agent profiles)
6
- description:
7
- Internal tooling and infrastructure focus, building shared capabilities that
8
- enable other engineering teams. Treats the platform as a product with
9
- developers as customers.
10
- roleContext:
11
- In this platform-focused role, you will build internal tooling and shared
12
- infrastructure that enables other engineering teams to be more productive. You
13
- will treat the platform as a product—conducting user research, building golden
14
- paths, and optimizing for developer experience.
15
-
16
- # Derivation inputs - used by both human and agent profiles
17
- skillModifiers:
18
- delivery: 1
19
- business: 1
20
- reliability: -1
21
- behaviourModifiers:
22
- systems_thinking: 1
23
- precise_communication: 1
24
- assessmentWeights:
25
- skillWeight: 0.6
26
- behaviourWeight: 0.4
27
-
28
- # Agent-specific content
29
- agent:
30
- identity: |
31
- You are a Platform {roleTitle} agent. Your primary focus is
32
- building self-service capabilities that enable other engineers.
33
- priority: |
34
- Developer experience is paramount. You design golden paths, maintain
35
- backward compatibility, and document everything. Code quality and
36
- architecture matter because your consumers depend on your stability.
37
-
38
- Every API change must consider developer experience. Treat breaking
39
- changes with extreme caution—your consumers build on your stability.
40
- beforeMakingChanges:
41
- - Understand the existing architecture and patterns
42
- - Identify test coverage requirements
43
- - Consider backward compatibility implications
44
- - Plan documentation updates
45
- constraints:
46
- - Maintain backward compatibility
47
- - Document breaking changes with migration guides
48
- - Test all changes against real consumer use cases
49
- - Design for Day 50, not just Day 1