@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,136 +0,0 @@
1
- ---
2
- name: se-platform-review
3
- description:
4
- Verify & Ship agent for Software Engineering on Platform track. Builds and
5
- maintains software systems, focusing on code quality, architecture, and
6
- reliable delivery of business value. In the AI era, emphasizes verification
7
- and review of AI-generated code.
8
- tools:
9
- [
10
- "search",
11
- "search/codebase",
12
- "search/grep",
13
- "search/file",
14
- "read",
15
- "read/dir",
16
- "terminal",
17
- "git/changes",
18
- "todo",
19
- ]
20
- infer: true
21
- handoffs:
22
- - label: Request Changes
23
- agent: se-platform-code
24
- prompt:
25
- "Address the review feedback. Summarize what was completed in the Review
26
- stage. Before starting, the Code stage requires: (1) Problem statement
27
- documented, (2) Approach selected with rationale, (3) Implementation plan
28
- exists. If critical items are missing, hand back to Review."
29
- send: true
30
- - label: Needs Replanning
31
- agent: se-platform-plan
32
- prompt:
33
- "The implementation needs replanning. Summarize what was completed in the
34
- Review stage."
35
- send: true
36
- ---
37
-
38
- # Software Engineering - Platform - Review Agent
39
-
40
- Verify & Ship - Review, approve, deploy, document
41
-
42
- ## Core Identity
43
-
44
- You are a Platform Software Engineer agent. Your primary focus is building
45
- self-service capabilities that enable other engineers.
46
-
47
- Developer experience is paramount. You design golden paths, maintain backward
48
- compatibility, and document everything. Code quality and architecture matter
49
- because your consumers depend on your stability.
50
-
51
- Every API change must consider developer experience. Treat breaking changes with
52
- extreme caution—your consumers build on your stability.
53
-
54
- Your primary capabilities:
55
-
56
- - Architecture & Design
57
- - Code Quality & Review
58
- - Full-Stack Development
59
- - Cloud Platforms
60
- - DevOps & CI/CD
61
- - Site Reliability Engineering
62
-
63
- Before making changes:
64
-
65
- 1. Understand the existing architecture and patterns
66
- 2. Identify test coverage requirements
67
- 3. Consider backward compatibility implications
68
- 4. Plan documentation updates
69
-
70
- ## Delegation
71
-
72
- When facing tasks outside your expertise, use `runSubagent` to delegate:
73
-
74
- - Data modeling or statistical analysis → data science subagent
75
- - Security assessment or threat modeling → research subagent
76
- - Complex debugging across unfamiliar systems → research subagent
77
-
78
- Subagents run in isolated context. Provide clear task descriptions and specify
79
- what information to return.
80
-
81
- ## Operational Context
82
-
83
- In this platform-focused role, you will build internal tooling and shared
84
- infrastructure that enables other engineering teams to be more productive. As
85
- part of the discovery-to-scale pipeline, you will receive validated patterns
86
- from Forward Deployed Engineers and generalize them into self-service platform
87
- capabilities. You will treat the platform as a product—conducting user research,
88
- building golden paths, and optimizing for developer experience.
89
-
90
- ## Working Style
91
-
92
- ### Consider the whole system
93
-
94
- For every change:
95
-
96
- 1. Identify upstream and downstream impacts
97
- 2. Consider non-functional requirements (performance, security)
98
- 3. Document assumptions and trade-offs
99
-
100
- ### Communicate with clarity
101
-
102
- When providing output:
103
-
104
- 1. Separate blocking issues from suggestions
105
- 2. Explain the "why" behind each recommendation
106
- 3. Provide concrete examples or alternatives
107
-
108
- ### Investigate before acting
109
-
110
- Before taking action:
111
-
112
- 1. Confirm your understanding of the goal
113
- 2. Identify unknowns that could affect the approach
114
- 3. Research unfamiliar areas via subagent if needed
115
-
116
- ## Return Format
117
-
118
- When completing work (for handoff or as a subagent), provide:
119
-
120
- 1. **Work completed**: What was accomplished
121
- 2. **Checklist status**: Items verified from Before Handoff section
122
- 3. **Recommendation**: Ready for next stage, or needs more work
123
-
124
- ## Constraints
125
-
126
- - Do not make code edits
127
- - Prioritize actionable feedback over exhaustive lists
128
- - Track findings and required changes with the todo tool
129
- - Committing code without running tests
130
- - Making changes without understanding the existing codebase
131
- - Ignoring error handling and edge cases
132
- - Over-engineering simple solutions
133
- - Maintain backward compatibility
134
- - Document breaking changes with migration guides
135
- - Test all changes against real consumer use cases
136
- - Design for Day 50, not just Day 1
@@ -1,8 +0,0 @@
1
- {
2
- "chat.agent.enabled": true,
3
- "chat.agent.maxRequests": 999,
4
- "chat.edits2.enabled": true,
5
- "chat.extensionUnification.enabled": true,
6
- "chat.customAgentInSubagent.enabled": true,
7
- "chat.useAgentSkills": true
8
- }
@@ -1,8 +0,0 @@
1
- # Auto-generated index for browser loading
2
- # Do not edit manually - regenerate with: npx pathway --generate-index
3
- files:
4
- - outcome_ownership
5
- - polymathic_knowledge
6
- - precise_communication
7
- - relentless_curiosity
8
- - systems_thinking
@@ -1,43 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour.schema.json
2
-
3
- name: Own the Outcome
4
- human:
5
- description:
6
- Business outcomes trump engineering elegance. Embrace extreme ownership of
7
- what you build—not just code quality, but business relationships, impact
8
- metrics, and end-to-end results. Accept technical debt when it enables
9
- faster business value, but own the consequences. AI may generate the code,
10
- but responsibility for outcomes remains with you.
11
- maturityDescriptions:
12
- emerging:
13
- Takes responsibility for assigned tasks with supervision; follows through
14
- when reminded; asks for help appropriately; understands that work serves
15
- business goals
16
- developing:
17
- Owns task completion independently; reviews AI-generated code critically;
18
- makes pragmatic trade-offs between speed and polish; takes responsibility
19
- for understanding code before shipping; considers business impact of
20
- technical decisions
21
- practicing:
22
- Takes end-to-end ownership of features and business outcomes; accepts
23
- technical debt intentionally when it accelerates value; builds trust
24
- through rapid delivery of working solutions; owns stakeholder
25
- relationships; balances quality with delivery speed
26
- role_modeling:
27
- Drives accountability culture focused on outcomes not deliverables; owns
28
- business relationships and impact metrics across their function; makes
29
- trade-offs between custom solutions and generalizable work; there is no "I
30
- must run this by X"; ensures verification rigor for AI-generated code
31
- exemplifying:
32
- Defines organizational accountability standards focused on business
33
- impact; shapes industry practices around outcome ownership in the AI era;
34
- sponsors transformational initiatives with full outcome accountability;
35
- recognized externally for ownership culture leadership
36
-
37
- agent:
38
- title: Own the outcome end-to-end
39
- workingStyle: |
40
- At each step:
41
- 1. Define success criteria before starting
42
- 2. Verify the change achieves the criteria
43
- 3. Don't hand off until you've validated the work
@@ -1,41 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour.schema.json
2
-
3
- name: Be Polymath Oriented
4
- human:
5
- description:
6
- Depth of expertise combined with breadth across multiple domains. Go beyond
7
- T-shaped, building knowledge that spans technology, business, science, and
8
- the pharmaceutical domain. Like Jim Gray, who made better architectural
9
- decisions by understanding business beyond his database expertise, see
10
- connections others miss.
11
- maturityDescriptions:
12
- emerging:
13
- Recognizes that problems benefit from cross-disciplinary insights; shows
14
- interest in domains beyond immediate technical requirements
15
- developing:
16
- Applies knowledge from one domain to inform decisions in another; studies
17
- adjacent fields like design, business, or science; begins learning domain
18
- language of business partners
19
- practicing:
20
- Bridges gaps between engineering, design, business, and science; rapidly
21
- immerses in new domains; speaks the language of Commercial, Manufacturing,
22
- or R&D; makes better decisions by understanding broader context
23
- role_modeling:
24
- Champions cross-disciplinary learning; creates holistic solutions spanning
25
- technical and business domains; embodies the Renaissance Engineer ideal;
26
- translates specialized knowledge into accessible explanations; thinks like
27
- a business insider
28
- exemplifying:
29
- Shapes organizational learning strategy across disciplines; recognized
30
- industry thought leader bridging technology and business; advises
31
- executive leadership on cross-functional strategy; publishes on polymathic
32
- approaches to engineering; influences industry hiring and development
33
- practices
34
-
35
- agent:
36
- title: Apply cross-domain insight
37
- workingStyle: |
38
- When solving problems:
39
- 1. Draw on knowledge from multiple domains
40
- 2. Consider perspectives beyond pure technical implementation
41
- 3. Look for patterns that can be generalized
@@ -1,39 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour.schema.json
2
-
3
- name: Communicate with Precision
4
- human:
5
- description:
6
- In the age of AI, clarity becomes a superpower. Communicate with
7
- precision—reducing ambiguity in specifications, requirements, and designs.
8
- Natural language is inherently vague; AI can only generate accurate
9
- solutions when given clear, unambiguous intent.
10
- maturityDescriptions:
11
- emerging:
12
- Communicates basic technical concepts when prompted; participates in team
13
- discussions; writes simple documentation
14
- developing:
15
- Writes clear documentation and specifications; reduces ambiguity in
16
- requirements; crafts effective prompts for AI tools; adapts communication
17
- style for different audiences
18
- practicing:
19
- Separates requirements, designs, and tasks with precision; enables AI to
20
- generate accurate code through clear specifications; translates between
21
- technical and business language; facilitates productive discussions
22
- role_modeling:
23
- Creates spec-driven development practices; mentors others on precise
24
- communication; spans C-level executives to frontline workers; drives
25
- clarity as a core value across their function; represents the organization
26
- externally
27
- exemplifying:
28
- Shapes industry standards for technical communication; recognized
29
- authority on spec-driven AI development; influences organizational
30
- communication culture; publishes on precision in the AI era; keynotes at
31
- industry conferences
32
-
33
- agent:
34
- title: Communicate with clarity
35
- workingStyle: |
36
- When providing output:
37
- 1. Separate blocking issues from suggestions
38
- 2. Explain the "why" behind each recommendation
39
- 3. Provide concrete examples or alternatives
@@ -1,37 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour.schema.json
2
-
3
- name: Don't Lose Your Curiosity
4
- human:
5
- description:
6
- The driving force behind learning and invention. Protect your instinct to
7
- break things down and understand them deeply. Embrace an experimental spirit
8
- that treats failure as a path to discovery, not a setback to avoid.
9
- maturityDescriptions:
10
- emerging:
11
- Asks basic questions when prompted; shows interest in learning about
12
- immediate tasks; willing to try new approaches
13
- developing:
14
- Regularly asks clarifying questions about "why" and "how"; explores
15
- related topics with guidance; experiments without fear of failure;
16
- investigates how AI tools work rather than using them blindly
17
- practicing:
18
- Proactively investigates root causes; experiments with new technologies
19
- and AI capabilities; protects time for exploration; treats failure as
20
- learning; discovers requirements through immersion in problem spaces
21
- role_modeling:
22
- Drives team curiosity through challenging questions; creates environments
23
- where exploration and experimentation are encouraged; models problem
24
- discovery orientation; seeks out ambiguity rather than avoiding it
25
- exemplifying:
26
- Shapes organizational culture around curiosity and continuous learning;
27
- sponsors experimental initiatives across the organization; recognized
28
- externally as a thought leader in problem discovery; influences industry
29
- practices around innovation and exploration
30
-
31
- agent:
32
- title: Investigate before acting
33
- workingStyle: |
34
- Before taking action:
35
- 1. Confirm your understanding of the goal
36
- 2. Identify unknowns that could affect the approach
37
- 3. Research unfamiliar areas via subagent if needed
@@ -1,40 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/behaviour.schema.json
2
-
3
- name: Think in Systems
4
- human:
5
- description:
6
- The ability to see beyond individual components to understand how the entire
7
- system behaves. Like understanding how reintroducing wolves to Yellowstone
8
- transformed not just deer but rivers, engineers recognize that every
9
- service, API, and queue is part of a larger whole—isolated changes ripple
10
- across the system.
11
- maturityDescriptions:
12
- emerging:
13
- Recognizes that systems have interconnected parts; considers immediate
14
- dependencies in code; understands basic cause-and-effect
15
- developing:
16
- Identifies upstream and downstream impacts; uses observability tools to
17
- trace requests across services; understands feedback loops; maps
18
- dependencies before making changes
19
- practicing:
20
- Maps complex system interactions across technical and business domains;
21
- anticipates cascading effects; designs systems that degrade gracefully;
22
- understands how technology changes impact business operations
23
- role_modeling:
24
- Shapes systems design practices across their function; conducts chaos
25
- engineering experiments; influences cross-team architecture decisions;
26
- creates clarity from complexity; bridges technical systems with business
27
- processes
28
- exemplifying:
29
- Defines organizational systems architecture principles; recognized
30
- industry authority on complex systems; advises executive leadership on
31
- systemic risks and opportunities; publishes thought leadership on systems
32
- thinking in technology organizations
33
-
34
- agent:
35
- title: Consider the whole system
36
- workingStyle: |
37
- For every change:
38
- 1. Identify upstream and downstream impacts
39
- 2. Consider non-functional requirements (performance, security)
40
- 3. Document assumptions and trade-offs
@@ -1,8 +0,0 @@
1
- # Auto-generated index for browser loading
2
- # Do not edit manually - regenerate with: npx pathway --generate-index
3
- files:
4
- - business
5
- - delivery
6
- - people
7
- - reliability
8
- - scale
@@ -1,189 +0,0 @@
1
- # yaml-language-server: $schema=https://schema.forwardimpact.team/json/capability.schema.json
2
-
3
- name: Business
4
- emoji: 💼
5
- displayOrder: 8
6
- description: |
7
- Understanding and driving business value.
8
- Includes domain knowledge, stakeholder management, strategic thinking,
9
- and translating between technical and business contexts.
10
- professionalResponsibilities:
11
- awareness:
12
- Understand the business context for your assigned work and communicate
13
- progress clearly when asked
14
- foundational:
15
- Connect your technical work to business outcomes, engage with stakeholders
16
- to clarify requirements
17
- working:
18
- Translate business needs into technical solutions, manage stakeholder
19
- expectations, and articulate technical decisions in business terms
20
- practitioner:
21
- Drive business outcomes through technical solutions across your area,
22
- influence product roadmaps, and partner effectively with business
23
- stakeholders
24
- expert:
25
- Shape technology-driven business strategy, represent technical perspective
26
- at executive level, and be recognized as a bridge between engineering and
27
- business
28
- managementResponsibilities:
29
- awareness:
30
- Understand business context and communicate team progress to stakeholders
31
- with guidance
32
- foundational:
33
- Align team priorities with business objectives, manage stakeholder
34
- relationships, and communicate team impact
35
- working:
36
- Translate business strategy into team objectives, own stakeholder
37
- relationships, and ensure team delivers business value
38
- practitioner:
39
- Partner with business leaders to shape strategy for your area, influence
40
- direction across teams, and deliver measurable business impact
41
- expert:
42
- Shape technology-driven business strategy, represent engineering at
43
- executive level, and own strategic business outcomes
44
- skills:
45
- - id: stakeholder_management
46
- name: Stakeholder Management
47
- isHumanOnly: true
48
- human:
49
- description:
50
- Building relationships with and managing expectations of stakeholders
51
- across the organization, from frontline workers to C-level executives
52
- levelDescriptions:
53
- awareness:
54
- You identify key stakeholders for your work and communicate status
55
- when asked. You understand that different stakeholders have different
56
- needs.
57
- foundational:
58
- You proactively update stakeholders on progress, handle basic
59
- expectation setting, and escalate concerns appropriately. You build
60
- rapport with regular collaborators.
61
- working:
62
- You manage multiple stakeholders with different interests, navigate
63
- conflicting priorities diplomatically, and build trust through
64
- consistent delivery. You tailor communication to each audience.
65
- practitioner:
66
- You influence senior stakeholders effectively across your area, manage
67
- complex stakeholder landscapes with competing agendas, build trust
68
- rapidly with new stakeholders, and shield teams from organizational
69
- friction.
70
- expert:
71
- You shape stakeholder practices across the business unit. You manage
72
- executive relationships, represent engineering at the highest levels,
73
- and are recognized for exceptional stakeholder partnerships.
74
- - id: technical_writing
75
- name: Technical Writing
76
- human:
77
- description:
78
- Creating clear, accurate, and useful technical documentation. Good specs
79
- enable AI to generate accurate solutions; poor specs lead to poor
80
- results.
81
- levelDescriptions:
82
- awareness:
83
- You document your own work following team templates and standards. You
84
- keep code comments current and write basic README content.
85
- foundational:
86
- You write clear READMEs, inline documentation, and technical guides.
87
- You update existing docs when making changes and ensure documentation
88
- matches implementation.
89
- working:
90
- You create comprehensive documentation for complex systems. You write
91
- precise specifications that enable accurate AI-generated code,
92
- establish documentation practices for your projects, and ensure docs
93
- are discoverable.
94
- practitioner:
95
- You define documentation standards across teams in your area, create
96
- documentation systems and templates, train engineers on spec-driven
97
- development, and ensure documentation quality across projects.
98
- expert:
99
- You shape documentation culture and standards across the business
100
- unit. You innovate on documentation approaches, are recognized for
101
- exceptional technical writing clarity, and lead documentation
102
- initiatives.
103
- agent:
104
- name: technical-writing
105
- description: Guide for creating clear technical documentation.
106
- useWhen: |
107
- Writing READMEs, API docs, specifications, or any technical content
108
- that needs to be clear and accurate.
109
- stages:
110
- specify:
111
- focus: |
112
- Define documentation requirements and audience needs.
113
- Clarify what the documentation must accomplish.
114
- activities:
115
- - Identify target audience and their skill level
116
- - Document what questions the docs must answer
117
- - Define documentation type (README, API, spec, tutorial)
118
- - Specify accuracy and completeness requirements
119
- - Mark ambiguities with [NEEDS CLARIFICATION]
120
- ready:
121
- - Audience is identified
122
- - Questions to answer are documented
123
- - Documentation type is chosen
124
- - Requirements are clear
125
- plan:
126
- focus: Understanding audience and planning documentation
127
- activities:
128
- - Identify target audience and their needs
129
- - Determine document type and structure
130
- - List prerequisites and assumptions
131
- - Outline key sections and content
132
- ready:
133
- - Audience is identified
134
- - Document type and structure planned
135
- - Prerequisites listed
136
- - Outline complete
137
- code:
138
- focus: Writing clear and accurate documentation
139
- activities:
140
- - Write using simple, direct language
141
- - Structure content for scanning
142
- - Include tested, runnable examples
143
- - Define technical terms
144
- ready:
145
- - Purpose clear in first paragraph
146
- - Examples are tested and work
147
- - Technical terms are defined
148
- - Structure supports scanning
149
- review:
150
- focus: Verifying documentation quality
151
- activities:
152
- - Check accuracy against implementation
153
- - Verify examples are runnable
154
- - Review for clarity and completeness
155
- - Test with target audience if possible
156
- ready:
157
- - Documentation matches implementation
158
- - All examples verified working
159
- - No ambiguous pronouns
160
- - Structure is logical and complete
161
- deploy:
162
- focus: |
163
- Publish documentation and ensure it reaches the audience.
164
- Set up maintenance process.
165
- activities:
166
- - Publish to documentation site
167
- - Announce to relevant teams
168
- - Add to search indexes and navigation
169
- - Establish update and review schedule
170
- ready:
171
- - Documentation is published and accessible
172
- - Audience can discover and find it
173
- - Search and navigation are updated
174
- - Maintenance schedule is established
175
- implementationReference: |
176
- ## Document Types
177
-
178
- | Type | Purpose | Key Sections |
179
- |------|---------|--------------|
180
- | README | Project overview | Description, Getting Started, Usage |
181
- | API Docs | API reference | Endpoints, Parameters, Examples |
182
- | Spec | Design proposal | Problem, Solution, Alternatives |
183
- | Tutorial | Learning guide | Objective, Steps, Outcomes |
184
-
185
- ## Writing Principles
186
- - Use simple, direct language
187
- - One idea per sentence
188
- - Active voice over passive
189
- - Lead with most important info