@forwardimpact/pathway 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +104 -0
- package/app/commands/agent.js +430 -0
- package/app/commands/behaviour.js +61 -0
- package/app/commands/command-factory.js +211 -0
- package/app/commands/discipline.js +58 -0
- package/app/commands/driver.js +94 -0
- package/app/commands/grade.js +60 -0
- package/app/commands/index.js +20 -0
- package/app/commands/init.js +67 -0
- package/app/commands/interview.js +68 -0
- package/app/commands/job.js +157 -0
- package/app/commands/progress.js +77 -0
- package/app/commands/questions.js +179 -0
- package/app/commands/serve.js +143 -0
- package/app/commands/site.js +121 -0
- package/app/commands/skill.js +76 -0
- package/app/commands/stage.js +129 -0
- package/app/commands/track.js +70 -0
- package/app/components/action-buttons.js +66 -0
- package/app/components/behaviour-profile.js +53 -0
- package/app/components/builder.js +341 -0
- package/app/components/card.js +98 -0
- package/app/components/checklist.js +145 -0
- package/app/components/comparison-radar.js +237 -0
- package/app/components/detail.js +230 -0
- package/app/components/error-page.js +72 -0
- package/app/components/grid.js +109 -0
- package/app/components/list.js +120 -0
- package/app/components/modifier-table.js +142 -0
- package/app/components/nav.js +64 -0
- package/app/components/progression-table.js +320 -0
- package/app/components/radar-chart.js +102 -0
- package/app/components/skill-matrix.js +97 -0
- package/app/css/base.css +56 -0
- package/app/css/bundles/app.css +40 -0
- package/app/css/bundles/handout.css +43 -0
- package/app/css/bundles/slides.css +40 -0
- package/app/css/components/badges.css +215 -0
- package/app/css/components/buttons.css +101 -0
- package/app/css/components/forms.css +105 -0
- package/app/css/components/layout.css +209 -0
- package/app/css/components/nav.css +166 -0
- package/app/css/components/progress.css +166 -0
- package/app/css/components/states.css +82 -0
- package/app/css/components/surfaces.css +243 -0
- package/app/css/components/tables.css +362 -0
- package/app/css/components/typography.css +122 -0
- package/app/css/components/utilities.css +41 -0
- package/app/css/pages/agent-builder.css +391 -0
- package/app/css/pages/assessment-results.css +453 -0
- package/app/css/pages/detail.css +59 -0
- package/app/css/pages/interview-builder.css +148 -0
- package/app/css/pages/job-builder.css +134 -0
- package/app/css/pages/landing.css +92 -0
- package/app/css/pages/lifecycle.css +118 -0
- package/app/css/pages/progress-builder.css +274 -0
- package/app/css/pages/self-assessment.css +502 -0
- package/app/css/reset.css +50 -0
- package/app/css/tokens.css +153 -0
- package/app/css/views/handout.css +30 -0
- package/app/css/views/print.css +608 -0
- package/app/css/views/slide-animations.css +113 -0
- package/app/css/views/slide-base.css +330 -0
- package/app/css/views/slide-sections.css +597 -0
- package/app/css/views/slide-tables.css +275 -0
- package/app/formatters/agent/dom.js +540 -0
- package/app/formatters/agent/profile.js +133 -0
- package/app/formatters/agent/skill.js +58 -0
- package/app/formatters/behaviour/dom.js +91 -0
- package/app/formatters/behaviour/markdown.js +54 -0
- package/app/formatters/behaviour/shared.js +64 -0
- package/app/formatters/discipline/dom.js +187 -0
- package/app/formatters/discipline/markdown.js +87 -0
- package/app/formatters/discipline/shared.js +131 -0
- package/app/formatters/driver/dom.js +103 -0
- package/app/formatters/driver/shared.js +92 -0
- package/app/formatters/grade/dom.js +208 -0
- package/app/formatters/grade/markdown.js +94 -0
- package/app/formatters/grade/shared.js +86 -0
- package/app/formatters/index.js +50 -0
- package/app/formatters/interview/dom.js +97 -0
- package/app/formatters/interview/markdown.js +66 -0
- package/app/formatters/interview/shared.js +332 -0
- package/app/formatters/job/description.js +176 -0
- package/app/formatters/job/dom.js +411 -0
- package/app/formatters/job/markdown.js +102 -0
- package/app/formatters/progress/dom.js +135 -0
- package/app/formatters/progress/markdown.js +86 -0
- package/app/formatters/progress/shared.js +339 -0
- package/app/formatters/questions/json.js +43 -0
- package/app/formatters/questions/markdown.js +303 -0
- package/app/formatters/questions/shared.js +274 -0
- package/app/formatters/questions/yaml.js +76 -0
- package/app/formatters/shared.js +71 -0
- package/app/formatters/skill/dom.js +168 -0
- package/app/formatters/skill/markdown.js +109 -0
- package/app/formatters/skill/shared.js +125 -0
- package/app/formatters/stage/dom.js +135 -0
- package/app/formatters/stage/index.js +12 -0
- package/app/formatters/stage/shared.js +111 -0
- package/app/formatters/track/dom.js +128 -0
- package/app/formatters/track/markdown.js +105 -0
- package/app/formatters/track/shared.js +181 -0
- package/app/handout-main.js +421 -0
- package/app/handout.html +21 -0
- package/app/index.html +59 -0
- package/app/lib/card-mappers.js +173 -0
- package/app/lib/cli-output.js +270 -0
- package/app/lib/error-boundary.js +70 -0
- package/app/lib/errors.js +49 -0
- package/app/lib/form-controls.js +47 -0
- package/app/lib/job-cache.js +86 -0
- package/app/lib/markdown.js +114 -0
- package/app/lib/radar.js +866 -0
- package/app/lib/reactive.js +77 -0
- package/app/lib/render.js +212 -0
- package/app/lib/router-core.js +160 -0
- package/app/lib/router-pages.js +16 -0
- package/app/lib/router-slides.js +202 -0
- package/app/lib/state.js +148 -0
- package/app/lib/utils.js +14 -0
- package/app/lib/yaml-loader.js +327 -0
- package/app/main.js +213 -0
- package/app/model/agent.js +702 -0
- package/app/model/checklist.js +137 -0
- package/app/model/derivation.js +699 -0
- package/app/model/index-generator.js +71 -0
- package/app/model/interview.js +539 -0
- package/app/model/job.js +222 -0
- package/app/model/levels.js +591 -0
- package/app/model/loader.js +564 -0
- package/app/model/matching.js +858 -0
- package/app/model/modifiers.js +158 -0
- package/app/model/profile.js +266 -0
- package/app/model/progression.js +507 -0
- package/app/model/validation.js +1385 -0
- package/app/pages/agent-builder.js +823 -0
- package/app/pages/assessment-results.js +507 -0
- package/app/pages/behaviour.js +70 -0
- package/app/pages/discipline.js +71 -0
- package/app/pages/driver.js +106 -0
- package/app/pages/grade.js +117 -0
- package/app/pages/interview-builder.js +50 -0
- package/app/pages/interview.js +304 -0
- package/app/pages/job-builder.js +50 -0
- package/app/pages/job.js +58 -0
- package/app/pages/landing.js +305 -0
- package/app/pages/progress-builder.js +58 -0
- package/app/pages/progress.js +495 -0
- package/app/pages/self-assessment.js +729 -0
- package/app/pages/skill.js +113 -0
- package/app/pages/stage.js +231 -0
- package/app/pages/track.js +69 -0
- package/app/slide-main.js +360 -0
- package/app/slides/behaviour.js +38 -0
- package/app/slides/chapter.js +82 -0
- package/app/slides/discipline.js +40 -0
- package/app/slides/driver.js +39 -0
- package/app/slides/grade.js +32 -0
- package/app/slides/index.js +198 -0
- package/app/slides/interview.js +58 -0
- package/app/slides/job.js +55 -0
- package/app/slides/overview.js +126 -0
- package/app/slides/progress.js +83 -0
- package/app/slides/skill.js +40 -0
- package/app/slides/track.js +39 -0
- package/app/slides.html +56 -0
- package/app/types.js +147 -0
- package/bin/pathway.js +489 -0
- package/examples/agents/.claude/skills/architecture-design/SKILL.md +88 -0
- package/examples/agents/.claude/skills/cloud-platforms/SKILL.md +90 -0
- package/examples/agents/.claude/skills/code-quality-review/SKILL.md +67 -0
- package/examples/agents/.claude/skills/data-modeling/SKILL.md +99 -0
- package/examples/agents/.claude/skills/developer-experience/SKILL.md +99 -0
- package/examples/agents/.claude/skills/devops-cicd/SKILL.md +96 -0
- package/examples/agents/.claude/skills/full-stack-development/SKILL.md +90 -0
- package/examples/agents/.claude/skills/knowledge-management/SKILL.md +100 -0
- package/examples/agents/.claude/skills/pattern-generalization/SKILL.md +102 -0
- package/examples/agents/.claude/skills/sre-practices/SKILL.md +117 -0
- package/examples/agents/.claude/skills/technical-debt-management/SKILL.md +123 -0
- package/examples/agents/.claude/skills/technical-writing/SKILL.md +129 -0
- package/examples/agents/.github/agents/se-platform-code.agent.md +181 -0
- package/examples/agents/.github/agents/se-platform-plan.agent.md +178 -0
- package/examples/agents/.github/agents/se-platform-review.agent.md +113 -0
- package/examples/agents/.vscode/settings.json +8 -0
- package/examples/behaviours/_index.yaml +8 -0
- package/examples/behaviours/outcome_ownership.yaml +44 -0
- package/examples/behaviours/polymathic_knowledge.yaml +42 -0
- package/examples/behaviours/precise_communication.yaml +40 -0
- package/examples/behaviours/relentless_curiosity.yaml +38 -0
- package/examples/behaviours/systems_thinking.yaml +41 -0
- package/examples/capabilities/_index.yaml +8 -0
- package/examples/capabilities/business.yaml +251 -0
- package/examples/capabilities/delivery.yaml +352 -0
- package/examples/capabilities/people.yaml +100 -0
- package/examples/capabilities/reliability.yaml +318 -0
- package/examples/capabilities/scale.yaml +394 -0
- package/examples/disciplines/_index.yaml +5 -0
- package/examples/disciplines/data_engineering.yaml +76 -0
- package/examples/disciplines/software_engineering.yaml +76 -0
- package/examples/drivers.yaml +205 -0
- package/examples/framework.yaml +58 -0
- package/examples/grades.yaml +118 -0
- package/examples/questions/behaviours/outcome_ownership.yaml +52 -0
- package/examples/questions/behaviours/polymathic_knowledge.yaml +48 -0
- package/examples/questions/behaviours/precise_communication.yaml +55 -0
- package/examples/questions/behaviours/relentless_curiosity.yaml +51 -0
- package/examples/questions/behaviours/systems_thinking.yaml +53 -0
- package/examples/questions/skills/architecture_design.yaml +54 -0
- package/examples/questions/skills/cloud_platforms.yaml +48 -0
- package/examples/questions/skills/code_quality.yaml +49 -0
- package/examples/questions/skills/data_modeling.yaml +46 -0
- package/examples/questions/skills/devops.yaml +47 -0
- package/examples/questions/skills/full_stack_development.yaml +48 -0
- package/examples/questions/skills/sre_practices.yaml +44 -0
- package/examples/questions/skills/stakeholder_management.yaml +49 -0
- package/examples/questions/skills/team_collaboration.yaml +43 -0
- package/examples/questions/skills/technical_writing.yaml +43 -0
- package/examples/self-assessments.yaml +66 -0
- package/examples/stages.yaml +76 -0
- package/examples/tracks/_index.yaml +6 -0
- package/examples/tracks/manager.yaml +53 -0
- package/examples/tracks/platform.yaml +54 -0
- package/examples/tracks/sre.yaml +58 -0
- package/examples/vscode-settings.yaml +22 -0
- package/package.json +68 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# cloud_platforms questions
|
|
2
|
+
# See skills.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: cp_aware_1
|
|
6
|
+
text: What cloud platforms are you familiar with?
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Basic cloud awareness
|
|
9
|
+
- Understanding of cloud services
|
|
10
|
+
expectedDurationMinutes: 5
|
|
11
|
+
|
|
12
|
+
foundational:
|
|
13
|
+
- id: cp_found_1
|
|
14
|
+
text: How would you deploy a simple application to the cloud?
|
|
15
|
+
lookingFor:
|
|
16
|
+
- Basic deployment knowledge
|
|
17
|
+
- Understanding of cloud resources
|
|
18
|
+
expectedDurationMinutes: 8
|
|
19
|
+
|
|
20
|
+
working:
|
|
21
|
+
- id: cp_work_1
|
|
22
|
+
text:
|
|
23
|
+
Describe a cloud architecture you've designed. What services did you use
|
|
24
|
+
and why?
|
|
25
|
+
followUps:
|
|
26
|
+
- How did you handle cost optimization?
|
|
27
|
+
lookingFor:
|
|
28
|
+
- Practical cloud architecture experience
|
|
29
|
+
- Service selection rationale
|
|
30
|
+
expectedDurationMinutes: 10
|
|
31
|
+
|
|
32
|
+
practitioner:
|
|
33
|
+
- id: cp_pract_1
|
|
34
|
+
text:
|
|
35
|
+
How do you approach cloud cost optimization and governance for your team?
|
|
36
|
+
lookingFor:
|
|
37
|
+
- Cloud cost management
|
|
38
|
+
- Governance practices
|
|
39
|
+
expectedDurationMinutes: 8
|
|
40
|
+
|
|
41
|
+
expert:
|
|
42
|
+
- id: cp_expert_1
|
|
43
|
+
text:
|
|
44
|
+
How have you shaped cloud strategy and practices across an organization?
|
|
45
|
+
lookingFor:
|
|
46
|
+
- Enterprise cloud strategy
|
|
47
|
+
- Multi-cloud or hybrid considerations
|
|
48
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# code_quality questions
|
|
2
|
+
# See skills.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: cq_aware_1
|
|
6
|
+
text: What does 'clean code' mean to you?
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Basic understanding of readability
|
|
9
|
+
- Awareness of maintainability concerns
|
|
10
|
+
expectedDurationMinutes: 5
|
|
11
|
+
|
|
12
|
+
foundational:
|
|
13
|
+
- id: cq_found_1
|
|
14
|
+
text: How do you ensure the code you write is readable by others?
|
|
15
|
+
followUps:
|
|
16
|
+
- What naming conventions do you follow?
|
|
17
|
+
- How do you decide when to add comments?
|
|
18
|
+
lookingFor:
|
|
19
|
+
- Consistent coding practices
|
|
20
|
+
- Understanding of code formatting and structure
|
|
21
|
+
expectedDurationMinutes: 5
|
|
22
|
+
|
|
23
|
+
working:
|
|
24
|
+
- id: cq_work_1
|
|
25
|
+
text: How do you approach code review? What do you look for?
|
|
26
|
+
lookingFor:
|
|
27
|
+
- Systematic approach to reviews
|
|
28
|
+
- Balance between quality and velocity
|
|
29
|
+
expectedDurationMinutes: 8
|
|
30
|
+
|
|
31
|
+
practitioner:
|
|
32
|
+
- id: cq_pract_1
|
|
33
|
+
text: How have you improved code quality practices in your team?
|
|
34
|
+
lookingFor:
|
|
35
|
+
- Measurable improvements
|
|
36
|
+
- Team influence
|
|
37
|
+
expectedDurationMinutes: 8
|
|
38
|
+
|
|
39
|
+
expert:
|
|
40
|
+
- id: cq_expert_1
|
|
41
|
+
text:
|
|
42
|
+
How have you established code quality standards across an organization?
|
|
43
|
+
followUps:
|
|
44
|
+
- How did you gain adoption?
|
|
45
|
+
- How do you measure success?
|
|
46
|
+
lookingFor:
|
|
47
|
+
- Organizational influence
|
|
48
|
+
- Scalable quality practices
|
|
49
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# data_modeling questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: dm_aware_1
|
|
6
|
+
text: What's the difference between relational and non-relational databases?
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Basic database concepts
|
|
9
|
+
- Understanding of use cases for each
|
|
10
|
+
expectedDurationMinutes: 5
|
|
11
|
+
foundational:
|
|
12
|
+
- id: dm_found_1
|
|
13
|
+
text:
|
|
14
|
+
How would you design a simple database schema for a user management
|
|
15
|
+
system?
|
|
16
|
+
lookingFor:
|
|
17
|
+
- Basic schema design
|
|
18
|
+
- Understanding of normalization
|
|
19
|
+
expectedDurationMinutes: 8
|
|
20
|
+
working:
|
|
21
|
+
- id: dm_work_1
|
|
22
|
+
text: Describe a data model you've designed. What trade-offs did you make?
|
|
23
|
+
followUps:
|
|
24
|
+
- How did you handle performance?
|
|
25
|
+
lookingFor:
|
|
26
|
+
- Practical data modeling experience
|
|
27
|
+
- Performance considerations
|
|
28
|
+
expectedDurationMinutes: 10
|
|
29
|
+
practitioner:
|
|
30
|
+
- id: dm_pract_1
|
|
31
|
+
text:
|
|
32
|
+
How do you approach data modeling for complex domains with evolving
|
|
33
|
+
requirements?
|
|
34
|
+
lookingFor:
|
|
35
|
+
- Advanced modeling techniques
|
|
36
|
+
- Handling schema evolution
|
|
37
|
+
expectedDurationMinutes: 10
|
|
38
|
+
expert:
|
|
39
|
+
- id: dm_expert_1
|
|
40
|
+
text:
|
|
41
|
+
How do you establish data modeling standards and practices across an
|
|
42
|
+
organization?
|
|
43
|
+
lookingFor:
|
|
44
|
+
- Enterprise data architecture
|
|
45
|
+
- Organizational standards leadership
|
|
46
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# devops questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: devops_aware_1
|
|
6
|
+
text: What do you understand about CI/CD pipelines? How have you used them?
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Basic understanding of automated builds and deployments
|
|
9
|
+
- Experience using pipelines defined by others
|
|
10
|
+
expectedDurationMinutes: 5
|
|
11
|
+
foundational:
|
|
12
|
+
- id: devops_found_1
|
|
13
|
+
text: Describe how you would set up a basic CI pipeline for a new project.
|
|
14
|
+
lookingFor:
|
|
15
|
+
- Understanding of CI fundamentals
|
|
16
|
+
- Basic pipeline configuration knowledge
|
|
17
|
+
expectedDurationMinutes: 8
|
|
18
|
+
working:
|
|
19
|
+
- id: devops_work_1
|
|
20
|
+
text:
|
|
21
|
+
Tell me about a deployment pipeline you've built. What stages did it
|
|
22
|
+
include?
|
|
23
|
+
followUps:
|
|
24
|
+
- How did you handle failures?
|
|
25
|
+
- What monitoring did you add?
|
|
26
|
+
lookingFor:
|
|
27
|
+
- End-to-end pipeline experience
|
|
28
|
+
- Infrastructure as code awareness
|
|
29
|
+
expectedDurationMinutes: 10
|
|
30
|
+
practitioner:
|
|
31
|
+
- id: devops_pract_1
|
|
32
|
+
text: How have you improved deployment practices in your team?
|
|
33
|
+
followUps:
|
|
34
|
+
- How did you measure improvement?
|
|
35
|
+
lookingFor:
|
|
36
|
+
- DevOps leadership
|
|
37
|
+
- Metrics-driven improvement
|
|
38
|
+
expectedDurationMinutes: 8
|
|
39
|
+
expert:
|
|
40
|
+
- id: devops_expert_1
|
|
41
|
+
text: How have you shaped DevOps practices across an organization?
|
|
42
|
+
followUps:
|
|
43
|
+
- What cultural changes did you drive?
|
|
44
|
+
lookingFor:
|
|
45
|
+
- Organizational DevOps transformation
|
|
46
|
+
- Culture change leadership
|
|
47
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# full_stack_development questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: fs_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_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_work_1
|
|
22
|
+
text:
|
|
23
|
+
Describe a complete feature you delivered end-to-end. How did you approach
|
|
24
|
+
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_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_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
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# sre_practices questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: sre_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_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_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_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_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
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# stakeholder_management questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: stk_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_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_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_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_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
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# team_collaboration questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: tc_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_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_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_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_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
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# technical_writing questions
|
|
2
|
+
# See skills.yaml or behaviours.yaml for metadata
|
|
3
|
+
|
|
4
|
+
awareness:
|
|
5
|
+
- id: tw_aware_1
|
|
6
|
+
text: How do you approach documenting your code and work?
|
|
7
|
+
lookingFor:
|
|
8
|
+
- Basic documentation habits
|
|
9
|
+
- Understanding of documentation importance
|
|
10
|
+
expectedDurationMinutes: 5
|
|
11
|
+
foundational:
|
|
12
|
+
- id: tw_found_1
|
|
13
|
+
text: What makes a good README file? Walk me through what you'd include.
|
|
14
|
+
lookingFor:
|
|
15
|
+
- README best practices
|
|
16
|
+
- Reader-centric documentation
|
|
17
|
+
expectedDurationMinutes: 5
|
|
18
|
+
working:
|
|
19
|
+
- id: tw_work_1
|
|
20
|
+
text:
|
|
21
|
+
How do you write technical specifications that enable others to implement
|
|
22
|
+
features?
|
|
23
|
+
followUps:
|
|
24
|
+
- How detailed do you go?
|
|
25
|
+
lookingFor:
|
|
26
|
+
- Spec writing skills
|
|
27
|
+
- Communication of technical requirements
|
|
28
|
+
expectedDurationMinutes: 8
|
|
29
|
+
practitioner:
|
|
30
|
+
- id: tw_pract_1
|
|
31
|
+
text:
|
|
32
|
+
How do you establish documentation standards and practices in your team?
|
|
33
|
+
lookingFor:
|
|
34
|
+
- Documentation leadership
|
|
35
|
+
- Spec-driven development advocacy
|
|
36
|
+
expectedDurationMinutes: 8
|
|
37
|
+
expert:
|
|
38
|
+
- id: tw_expert_1
|
|
39
|
+
text: How do you create organizational documentation culture and systems?
|
|
40
|
+
lookingFor:
|
|
41
|
+
- Enterprise documentation strategy
|
|
42
|
+
- Knowledge management systems
|
|
43
|
+
expectedDurationMinutes: 10
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Self Assessments - Example profiles for testing candidate matching
|
|
2
|
+
# Maps skills to levels and behaviours to maturities
|
|
3
|
+
|
|
4
|
+
# Example: Mid-level Software Engineer
|
|
5
|
+
- id: example_mid_swe
|
|
6
|
+
skillLevels:
|
|
7
|
+
architecture_design: working
|
|
8
|
+
code_quality: working
|
|
9
|
+
devops: foundational
|
|
10
|
+
ai_augmented_development: foundational
|
|
11
|
+
technical_debt_management: foundational
|
|
12
|
+
lean_thinking: awareness
|
|
13
|
+
data_modeling: awareness
|
|
14
|
+
stakeholder_management: awareness
|
|
15
|
+
technical_writing: foundational
|
|
16
|
+
ai_literacy: foundational
|
|
17
|
+
service_management: awareness
|
|
18
|
+
behaviourMaturities:
|
|
19
|
+
precise_communication: developing
|
|
20
|
+
relentless_curiosity: developing
|
|
21
|
+
outcome_ownership: developing
|
|
22
|
+
polymathic_knowledge: emerging
|
|
23
|
+
systems_thinking: developing
|
|
24
|
+
|
|
25
|
+
# Example: Senior Data Engineer
|
|
26
|
+
- id: example_senior_de
|
|
27
|
+
skillLevels:
|
|
28
|
+
data_modeling: practitioner
|
|
29
|
+
data_integration: practitioner
|
|
30
|
+
architecture_design: working
|
|
31
|
+
code_quality: working
|
|
32
|
+
devops: working
|
|
33
|
+
cloud_platforms: working
|
|
34
|
+
ai_literacy: working
|
|
35
|
+
stakeholder_management: foundational
|
|
36
|
+
technical_writing: foundational
|
|
37
|
+
ai_augmented_development: foundational
|
|
38
|
+
lean_thinking: foundational
|
|
39
|
+
behaviourMaturities:
|
|
40
|
+
precise_communication: practicing
|
|
41
|
+
relentless_curiosity: practicing
|
|
42
|
+
outcome_ownership: practicing
|
|
43
|
+
polymathic_knowledge: developing
|
|
44
|
+
systems_thinking: practicing
|
|
45
|
+
|
|
46
|
+
# Example: Data Scientist - R&D Focus
|
|
47
|
+
- id: example_ds_rd
|
|
48
|
+
skillLevels:
|
|
49
|
+
machine_learning: working
|
|
50
|
+
data_analysis: working
|
|
51
|
+
statistical_modeling: working
|
|
52
|
+
data_modeling: foundational
|
|
53
|
+
ai_evaluation: working
|
|
54
|
+
technical_writing: foundational
|
|
55
|
+
business_immersion: foundational
|
|
56
|
+
code_quality: foundational
|
|
57
|
+
stakeholder_management: awareness
|
|
58
|
+
ai_literacy: working
|
|
59
|
+
multi_audience_communication: foundational
|
|
60
|
+
service_management: awareness
|
|
61
|
+
behaviourMaturities:
|
|
62
|
+
precise_communication: developing
|
|
63
|
+
relentless_curiosity: practicing
|
|
64
|
+
outcome_ownership: developing
|
|
65
|
+
polymathic_knowledge: developing
|
|
66
|
+
systems_thinking: developing
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Stages - What part of the lifecycle?
|
|
2
|
+
#
|
|
3
|
+
# Defines the three stages of the engineering lifecycle with their tools,
|
|
4
|
+
# handoffs, and constraints. Used for both human checklists and AI agent
|
|
5
|
+
# profile generation.
|
|
6
|
+
#
|
|
7
|
+
# Entry criteria define what must be complete before starting work in a stage.
|
|
8
|
+
# Exit criteria are implicit: they equal the entry criteria of the next stage.
|
|
9
|
+
#
|
|
10
|
+
# See concept/lifecycle.md for full documentation.
|
|
11
|
+
|
|
12
|
+
- id: plan
|
|
13
|
+
name: Plan
|
|
14
|
+
emoji: "📋"
|
|
15
|
+
description:
|
|
16
|
+
Research & Design - Understand the problem, gather context, design the
|
|
17
|
+
solution
|
|
18
|
+
availableTools:
|
|
19
|
+
- search
|
|
20
|
+
- web/fetch
|
|
21
|
+
- search/codebase
|
|
22
|
+
- read
|
|
23
|
+
- todos
|
|
24
|
+
handoffs:
|
|
25
|
+
- targetStage: code
|
|
26
|
+
label: Start Coding
|
|
27
|
+
prompt: Implement the planned changes.
|
|
28
|
+
constraints:
|
|
29
|
+
- Do not make code edits
|
|
30
|
+
- Do not execute commands
|
|
31
|
+
- Research thoroughly before proposing solutions
|
|
32
|
+
entryCriteria: [] # Entry stage, no prior work expected
|
|
33
|
+
|
|
34
|
+
- id: code
|
|
35
|
+
name: Code
|
|
36
|
+
emoji: "💻"
|
|
37
|
+
description: Build & Iterate - Implement, test, refine
|
|
38
|
+
availableTools:
|
|
39
|
+
- search
|
|
40
|
+
- search/codebase
|
|
41
|
+
- read
|
|
42
|
+
- edit
|
|
43
|
+
- todos
|
|
44
|
+
handoffs:
|
|
45
|
+
- targetStage: review
|
|
46
|
+
label: Request Review
|
|
47
|
+
prompt: Review the implemented changes.
|
|
48
|
+
constraints: []
|
|
49
|
+
entryCriteria:
|
|
50
|
+
- Problem statement documented
|
|
51
|
+
- Approach selected with rationale
|
|
52
|
+
- Implementation plan exists
|
|
53
|
+
|
|
54
|
+
- id: review
|
|
55
|
+
name: Review
|
|
56
|
+
emoji: "✅"
|
|
57
|
+
description: Verify & Ship - Review, approve, deploy, document
|
|
58
|
+
availableTools:
|
|
59
|
+
- search
|
|
60
|
+
- search/codebase
|
|
61
|
+
- read
|
|
62
|
+
- todos
|
|
63
|
+
handoffs:
|
|
64
|
+
- targetStage: code
|
|
65
|
+
label: Request Changes
|
|
66
|
+
prompt: Address the review feedback.
|
|
67
|
+
- targetStage: plan
|
|
68
|
+
label: Needs Replanning
|
|
69
|
+
prompt: The implementation needs replanning.
|
|
70
|
+
constraints:
|
|
71
|
+
- Do not make code edits
|
|
72
|
+
- Prioritize actionable feedback over exhaustive lists
|
|
73
|
+
entryCriteria:
|
|
74
|
+
- Implementation complete
|
|
75
|
+
- Tests written and passing
|
|
76
|
+
- Self-review completed
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
# Track: Engineering Manager
|
|
2
|
+
# People and delivery leadership
|
|
3
|
+
|
|
4
|
+
name: Engineering Manager
|
|
5
|
+
|
|
6
|
+
# Track type - management track (professional defaults to false)
|
|
7
|
+
isManagement: true
|
|
8
|
+
|
|
9
|
+
# Shared content (used by both human job descriptions and agent profiles)
|
|
10
|
+
description:
|
|
11
|
+
People and delivery leadership, focusing on team effectiveness, career
|
|
12
|
+
development, and organizational outcomes. Creates space for curiosity and
|
|
13
|
+
experimentation; models ownership behaviours.
|
|
14
|
+
roleContext:
|
|
15
|
+
In this leadership role, you will focus on people and delivery management,
|
|
16
|
+
driving team effectiveness and career development. You will create space for
|
|
17
|
+
curiosity and experimentation while modeling ownership behaviours and ensuring
|
|
18
|
+
organizational outcomes are achieved.
|
|
19
|
+
|
|
20
|
+
# Derivation inputs - used by both human and agent profiles
|
|
21
|
+
skillModifiers:
|
|
22
|
+
business: 2
|
|
23
|
+
people: 2
|
|
24
|
+
reliability: -1
|
|
25
|
+
delivery: -2
|
|
26
|
+
scale: -2
|
|
27
|
+
behaviourModifiers:
|
|
28
|
+
polymathic_knowledge: 1
|
|
29
|
+
assessmentWeights:
|
|
30
|
+
skillWeight: 0.4
|
|
31
|
+
behaviourWeight: 0.6
|
|
32
|
+
|
|
33
|
+
# Agent-specific content
|
|
34
|
+
agent:
|
|
35
|
+
coreInstructions: |
|
|
36
|
+
You are a {specialization} leadership support agent. Your primary
|
|
37
|
+
focus is supporting engineering managers with team effectiveness,
|
|
38
|
+
process design, and communication.
|
|
39
|
+
|
|
40
|
+
People and process over direct implementation. You help create space
|
|
41
|
+
for curiosity and experimentation, model ownership behaviors, and
|
|
42
|
+
remove organizational friction.
|
|
43
|
+
|
|
44
|
+
Before making changes:
|
|
45
|
+
1. Consider team dynamics and individual growth
|
|
46
|
+
2. Think about systemic improvements over individual fixes
|
|
47
|
+
3. Focus on enabling others rather than doing directly
|
|
48
|
+
|
|
49
|
+
Your role is to support engineering judgment, not replace it.
|
|
50
|
+
constraints:
|
|
51
|
+
- Focus on enabling and empowering rather than doing directly
|
|
52
|
+
- Consider long-term team health over short-term fixes
|
|
53
|
+
- Support engineering judgment, don't replace it
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Track: Platform
|
|
2
|
+
# Internal tooling and infrastructure focus
|
|
3
|
+
|
|
4
|
+
name: Platform
|
|
5
|
+
|
|
6
|
+
# Track type - professional track (default)
|
|
7
|
+
isProfessional: true
|
|
8
|
+
|
|
9
|
+
# Shared content (used by both human job descriptions and agent profiles)
|
|
10
|
+
description:
|
|
11
|
+
Internal tooling and infrastructure focus, building shared capabilities that
|
|
12
|
+
enable other engineering teams. Treats the platform as a product with
|
|
13
|
+
developers as customers.
|
|
14
|
+
roleContext:
|
|
15
|
+
In this platform-focused role, you will build internal tooling and shared
|
|
16
|
+
infrastructure that enables other engineering teams to be more productive. You
|
|
17
|
+
will treat the platform as a product—conducting user research, building golden
|
|
18
|
+
paths, and optimizing for developer experience.
|
|
19
|
+
|
|
20
|
+
# Derivation inputs - used by both human and agent profiles
|
|
21
|
+
skillModifiers:
|
|
22
|
+
delivery: 1
|
|
23
|
+
business: 1
|
|
24
|
+
reliability: -1
|
|
25
|
+
behaviourModifiers:
|
|
26
|
+
systems_thinking: 1
|
|
27
|
+
precise_communication: 1
|
|
28
|
+
assessmentWeights:
|
|
29
|
+
skillWeight: 0.6
|
|
30
|
+
behaviourWeight: 0.4
|
|
31
|
+
|
|
32
|
+
# Agent-specific content
|
|
33
|
+
agent:
|
|
34
|
+
coreInstructions: |
|
|
35
|
+
You are a Platform {roleTitle} agent. Your primary focus is
|
|
36
|
+
building self-service capabilities that enable other engineers.
|
|
37
|
+
|
|
38
|
+
Developer experience is paramount. You design golden paths, maintain
|
|
39
|
+
backward compatibility, and document everything. Code quality and
|
|
40
|
+
architecture matter because your consumers depend on your stability.
|
|
41
|
+
|
|
42
|
+
Before making changes:
|
|
43
|
+
1. Understand the existing architecture and patterns
|
|
44
|
+
2. Identify test coverage requirements
|
|
45
|
+
3. Consider backward compatibility implications
|
|
46
|
+
4. Plan documentation updates
|
|
47
|
+
|
|
48
|
+
Every API change must consider developer experience. Treat breaking
|
|
49
|
+
changes with extreme caution—your consumers build on your stability.
|
|
50
|
+
constraints:
|
|
51
|
+
- Maintain backward compatibility
|
|
52
|
+
- Document breaking changes with migration guides
|
|
53
|
+
- Test all changes against real consumer use cases
|
|
54
|
+
- Design for Day 50, not just Day 1
|