@forwardimpact/pathway 0.25.3 → 0.25.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/pathway",
3
- "version": "0.25.3",
3
+ "version": "0.25.5",
4
4
  "description": "Career progression web app and CLI for exploring roles and generating agent teams",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -279,7 +279,7 @@ export async function runJobCommand({
279
279
 
280
280
  // --checklist: Show checklist for a specific stage
281
281
  if (options.checklist) {
282
- const validStages = ["plan", "code"];
282
+ const validStages = data.stages.map((s) => s.id);
283
283
  if (!validStages.includes(options.checklist)) {
284
284
  console.error(`Invalid stage: ${options.checklist}`);
285
285
  console.error(`Available: ${validStages.join(", ")}`);
@@ -31,9 +31,8 @@ import { flattenToLine } from "../template-preprocess.js";
31
31
  * @param {Object} params.bodyData - Structured body data
32
32
  * @param {string} params.bodyData.title - Agent title
33
33
  * @param {string} params.bodyData.stageDescription - Stage description text
34
- * @param {string} params.bodyData.stageId - Stage identifier (e.g. "plan", "code", "onboard")
35
- * @param {string} params.bodyData.stageName - Human-readable stage name (e.g. "Plan", "Code", "Onboard")
36
- * @param {boolean} params.bodyData.isOnboard - Whether this is the onboard stage
34
+ * @param {string} params.bodyData.stageId - Stage identifier (e.g. "plan", "code", "scaffold")
35
+ * @param {string} params.bodyData.stageName - Human-readable stage name (e.g. "Plan", "Code", "Scaffold")
37
36
  * @param {string} params.bodyData.identity - Core identity text
38
37
  * @param {string} [params.bodyData.priority] - Priority/philosophy statement
39
38
  * @param {Array<{name: string, dirname: string, useWhen: string}>} params.bodyData.skillIndex - Skill index entries
@@ -91,7 +90,6 @@ function prepareAgentProfileData({ frontmatter, bodyData }) {
91
90
  stageDescription: trimValue(bodyData.stageDescription),
92
91
  stageId: bodyData.stageId,
93
92
  stageName: bodyData.stageName,
94
- isOnboard: bodyData.isOnboard,
95
93
  identity: trimValue(bodyData.identity),
96
94
  priority: trimValue(bodyData.priority),
97
95
  skillIndex,
@@ -3,7 +3,7 @@
3
3
  name: {{name}}
4
4
  {{/name}}
5
5
  description: {{{description}}}
6
- model: sonnet
6
+ model: opus
7
7
  {{#skills.length}}
8
8
  skills:
9
9
  {{#skills}}
@@ -49,12 +49,6 @@ skills:
49
49
  {{#skillIndex}}
50
50
  | {{{name}}} | {{{useWhen}}} |
51
51
  {{/skillIndex}}
52
- {{#isOnboard}}
53
-
54
- For each skill, run `bash .claude/skills/<skill-name>/scripts/install.sh`
55
- BEFORE any manual setup. Consult `references/REFERENCE.md` for implementation
56
- patterns.
57
- {{/isOnboard}}
58
52
  {{/hasSkills}}
59
53
  {{#hasStageTransitions}}
60
54