@forwardimpact/pathway 0.25.7 → 0.25.8

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.
@@ -0,0 +1,39 @@
1
+ # yaml-language-server: $schema=https://www.forwardimpact.team/schema/json/levels.schema.json
2
+
3
+ - id: J040
4
+ professionalTitle: Level I
5
+ managementTitle: Associate
6
+ typicalExperienceRange: "0-2 years"
7
+ ordinalRank: 1
8
+ qualificationSummary:
9
+ Entry-level position suitable for recent graduates or those transitioning
10
+ into the field ({typicalExperienceRange}).
11
+ baseSkillProficiencies:
12
+ primary: foundational
13
+ secondary: awareness
14
+ broad: awareness
15
+ baseBehaviourMaturity: emerging
16
+ expectations:
17
+ impactScope: Individual tasks with guidance
18
+ autonomyExpectation: Work with supervision
19
+ influenceScope: Contribute to team discussions
20
+ complexityHandled: Standard tasks with established patterns
21
+
22
+ - id: J060
23
+ professionalTitle: Level II
24
+ managementTitle: Senior Associate
25
+ typicalExperienceRange: "2-5 years"
26
+ ordinalRank: 2
27
+ qualificationSummary:
28
+ Mid-level position with demonstrated ability to complete tasks independently
29
+ ({typicalExperienceRange}).
30
+ baseSkillProficiencies:
31
+ primary: working
32
+ secondary: foundational
33
+ broad: awareness
34
+ baseBehaviourMaturity: developing
35
+ expectations:
36
+ impactScope: Features and small projects
37
+ autonomyExpectation: Work independently on familiar problems
38
+ influenceScope: Mentor junior team members
39
+ complexityHandled: Moderate complexity with some ambiguity
File without changes
File without changes
File without changes
@@ -0,0 +1,21 @@
1
+ # yaml-language-server: $schema=https://www.forwardimpact.team/schema/json/stages.schema.json
2
+
3
+ - id: code
4
+ name: Code
5
+ emojiIcon: "\U0001F4BB"
6
+ summary: Build the solution
7
+ description:
8
+ Your primary task is to implement the solution according to the plan.
9
+ returnFormat:
10
+ - "Working code that meets acceptance criteria"
11
+ handoffs:
12
+ - targetStage: code
13
+ label: Continue Coding
14
+ prompt: Continue implementing the solution.
15
+ constraints:
16
+ - Follow the plan and spec requirements
17
+ readChecklist:
18
+ - Review the plan and acceptance criteria
19
+ confirmChecklist:
20
+ - Code compiles and passes tests
21
+ - Acceptance criteria are met
@@ -0,0 +1,33 @@
1
+ # yaml-language-server: $schema=https://www.forwardimpact.team/schema/json/track.schema.json
2
+
3
+ name: Forward Deployed
4
+
5
+ description:
6
+ Customer-facing engineering embedded with business units. Emphasizes rapid
7
+ solution delivery and domain expertise. Discovers patterns in the field that
8
+ Platform Engineers generalize into enterprise capabilities.
9
+ roleContext:
10
+ In this forward-deployed role, you are embedded directly with business units.
11
+ You operate like a startup CTO—bridging the gap between building products and
12
+ solving real business problems through rapid delivery.
13
+
14
+ skillModifiers:
15
+ delivery: 1
16
+ reliability: -1
17
+ behaviourModifiers:
18
+ systems_thinking: -1
19
+ assessmentWeights:
20
+ skillWeight: 0.4
21
+ behaviourWeight: 0.6
22
+
23
+ agent:
24
+ identity: |
25
+ You are a Forward Deployed {roleTitle} agent focused on rapid problem
26
+ discovery and solution delivery.
27
+ priority: |
28
+ Speed matters more than perfection. Deliver working solutions quickly.
29
+ Discover requirements through immersion, not documentation.
30
+ constraints:
31
+ - Deliver working solutions in days, not weeks
32
+ - Document trade-offs explicitly
33
+ - Identify candidates for platform generalization
@@ -0,0 +1,33 @@
1
+ # yaml-language-server: $schema=https://www.forwardimpact.team/schema/json/track.schema.json
2
+
3
+ name: Platform
4
+
5
+ description:
6
+ Internal tooling and infrastructure focus. Builds shared capabilities that
7
+ enable other engineering teams. Treats the platform as a product with
8
+ developers as customers.
9
+ roleContext:
10
+ In this platform-focused role, you build internal tooling and shared
11
+ infrastructure. You treat the platform as a product—building golden paths and
12
+ optimizing for developer experience.
13
+
14
+ skillModifiers:
15
+ reliability: 1
16
+ delivery: -1
17
+ behaviourModifiers:
18
+ systems_thinking: 1
19
+ assessmentWeights:
20
+ skillWeight: 0.6
21
+ behaviourWeight: 0.4
22
+
23
+ agent:
24
+ identity: |
25
+ You are a Platform {roleTitle} agent focused on building self-service
26
+ capabilities that enable other engineers.
27
+ priority: |
28
+ Developer experience is paramount. Design golden paths, maintain backward
29
+ compatibility, and document everything.
30
+ constraints:
31
+ - Maintain backward compatibility
32
+ - Document breaking changes with migration guides
33
+ - Test changes against consumer use cases
@@ -2,7 +2,7 @@
2
2
  # {{{frameworkTitle}}} — Local Install
3
3
  # Generated by @forwardimpact/pathway v{{{version}}}
4
4
  #
5
- # Installs fit-pathway globally via npm and downloads organization data
5
+ # Installs fit-pathway globally via bun and downloads organization data
6
6
  # to ~/.fit/pathway/data/.
7
7
  #
8
8
  # Usage:
@@ -13,12 +13,11 @@ set -euo pipefail
13
13
  SITE_URL="{{{siteUrl}}}"
14
14
  INSTALL_DIR="${HOME}/.fit/pathway"
15
15
 
16
- command -v node >/dev/null 2>&1 || { echo "Error: Node.js 18+ is required. https://nodejs.org"; exit 1; }
17
- command -v npm >/dev/null 2>&1 || { echo "Error: npm is required."; exit 1; }
16
+ command -v bun >/dev/null 2>&1 || { echo "Error: Bun 1.2+ is required. https://bun.sh"; exit 1; }
18
17
 
19
18
  # Install fit-pathway globally (provides the fit-pathway binary on PATH)
20
19
  echo "Installing @forwardimpact/pathway globally..."
21
- npm install -g @forwardimpact/pathway@{{{version}}}
20
+ bun install -g @forwardimpact/pathway@{{{version}}}
22
21
 
23
22
  # Download organization data to ~/.fit/pathway/data/
24
23
  echo "Downloading organization data to ${INSTALL_DIR}/data/..."