@forwardimpact/pathway 0.25.10 → 0.25.11

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.10",
3
+ "version": "0.25.11",
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": {
@@ -450,7 +450,10 @@ export async function runAgentCommand({
450
450
 
451
451
  // Output to console (default) or write to files (with --output)
452
452
  if (!options.output) {
453
- const teamInstructions = interpolateTeamInstructions(agentTrack, humanDiscipline);
453
+ const teamInstructions = interpolateTeamInstructions(
454
+ agentTrack,
455
+ humanDiscipline,
456
+ );
454
457
  if (teamInstructions) {
455
458
  console.log("# Team Instructions (CLAUDE.md)\n");
456
459
  console.log(teamInstructions.trim());
@@ -460,7 +463,10 @@ export async function runAgentCommand({
460
463
  return;
461
464
  }
462
465
 
463
- const teamInstructions = interpolateTeamInstructions(agentTrack, humanDiscipline);
466
+ const teamInstructions = interpolateTeamInstructions(
467
+ agentTrack,
468
+ humanDiscipline,
469
+ );
464
470
  await writeTeamInstructions(teamInstructions, baseDir);
465
471
  await writeProfile(profile, baseDir, agentTemplate);
466
472
  await generateClaudeCodeSettings(baseDir, agentData.claudeCodeSettings);
@@ -540,7 +546,10 @@ export async function runAgentCommand({
540
546
 
541
547
  // Output to console (default) or write to files (with --output)
542
548
  if (!options.output) {
543
- const teamInstructions = interpolateTeamInstructions(agentTrack, humanDiscipline);
549
+ const teamInstructions = interpolateTeamInstructions(
550
+ agentTrack,
551
+ humanDiscipline,
552
+ );
544
553
  if (teamInstructions) {
545
554
  console.log("# Team Instructions (CLAUDE.md)\n");
546
555
  console.log(teamInstructions.trim());
@@ -553,7 +562,10 @@ export async function runAgentCommand({
553
562
  return;
554
563
  }
555
564
 
556
- const teamInstructions = interpolateTeamInstructions(agentTrack, humanDiscipline);
565
+ const teamInstructions = interpolateTeamInstructions(
566
+ agentTrack,
567
+ humanDiscipline,
568
+ );
557
569
  await writeTeamInstructions(teamInstructions, baseDir);
558
570
  for (const profile of profiles) {
559
571
  await writeProfile(profile, baseDir, agentTemplate);