@forwardimpact/pathway 0.25.22 → 0.25.25

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 (40) hide show
  1. package/bin/fit-pathway.js +117 -325
  2. package/package.json +2 -2
  3. package/src/commands/agent-io.js +1 -1
  4. package/src/commands/agent-list.js +164 -0
  5. package/src/commands/agent.js +83 -184
  6. package/src/commands/behaviour.js +22 -10
  7. package/src/commands/build-packs.js +208 -34
  8. package/src/commands/build.js +2 -2
  9. package/src/commands/command-factory.js +39 -14
  10. package/src/commands/discipline.js +24 -10
  11. package/src/commands/driver.js +28 -19
  12. package/src/commands/index.js +0 -1
  13. package/src/commands/interview.js +15 -10
  14. package/src/commands/job.js +110 -62
  15. package/src/commands/level.js +23 -11
  16. package/src/commands/progress.js +12 -7
  17. package/src/commands/questions.js +32 -14
  18. package/src/commands/skill.js +36 -18
  19. package/src/commands/stage.js +37 -27
  20. package/src/commands/tool.js +29 -19
  21. package/src/commands/track.js +23 -10
  22. package/src/formatters/questions/yaml.js +1 -1
  23. package/src/index.html +1 -1
  24. package/src/lib/cli-command.js +33 -33
  25. package/src/lib/cli-output.js +9 -189
  26. package/src/pages/agent-builder-install.js +6 -5
  27. package/src/commands/init.js +0 -64
  28. package/starter/behaviours/systems_thinking.yaml +0 -32
  29. package/starter/capabilities/delivery.yaml +0 -105
  30. package/starter/capabilities/reliability.yaml +0 -72
  31. package/starter/disciplines/software_engineering.yaml +0 -46
  32. package/starter/drivers.yaml +0 -10
  33. package/starter/framework.yaml +0 -49
  34. package/starter/levels.yaml +0 -39
  35. package/starter/questions/behaviours/.gitkeep +0 -0
  36. package/starter/questions/capabilities/.gitkeep +0 -0
  37. package/starter/questions/skills/.gitkeep +0 -0
  38. package/starter/stages.yaml +0 -21
  39. package/starter/tracks/forward_deployed.yaml +0 -33
  40. package/starter/tracks/platform.yaml +0 -33
@@ -1,21 +0,0 @@
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
@@ -1,33 +0,0 @@
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
@@ -1,33 +0,0 @@
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