@javargasm/pi-kiro 0.4.6 → 0.4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 3981af9: Fix provider name mismatch that hid all models from pi's model selector. The registered provider name ("kiro AWS") did not match the auth.json key ("kiro"), causing pi's AuthStorage to fail credential lookup.
8
+
9
+ ## 0.4.7
10
+
11
+ ### Patch Changes
12
+
13
+ - fix: use reasoningContent with signature for thinking history instead of inline XML tags
14
+
15
+ Bedrock rejects replayed history with THINKING_SIGNATURE_INVALID when thinking
16
+ blocks use inline `<thinking>` XML tags without the cryptographic signature.
17
+ Now accumulates thinking text and signature from upstream content blocks and
18
+ sends them as proper `reasoningContent.reasoningText` with `text` + `signature`.
19
+ Silently drops reasoning when the signature is missing rather than crashing.
20
+
21
+ Also adds opt-in file-based debug logging (KIRO_FILE_LOG) for API interactions.
22
+
3
23
  ## 0.4.6
4
24
 
5
25
  ### Patch Changes
package/dist/core.js CHANGED
@@ -904,7 +904,7 @@ async function resolveProfileArn(accessToken, apiRegion) {
904
904
  Authorization: `Bearer ${accessToken}`,
905
905
  "Content-Type": "application/x-amz-json-1.0",
906
906
  "X-Amz-Target": "AmazonCodeWhispererService.ListAvailableProfiles",
907
- "User-Agent": "pi-kiro"
907
+ "user-agent": "aws-sdk-rust/1.3.15 ua/2.1 api/codewhispererruntime/0.1.16551 os/macos lang/rust/1.92.0 md/appVersion-2.7.1 app/AmazonQ-For-CLI"
908
908
  },
909
909
  body: "{}"
910
910
  });
@@ -2472,15 +2472,18 @@ ${uim.content}`;
2472
2472
  }
2473
2473
  if (msg.role === "assistant") {
2474
2474
  let armContent = "";
2475
+ let armReasoningText = "";
2476
+ let armReasoningSignature = "";
2475
2477
  const armToolUses = [];
2476
2478
  if (Array.isArray(msg.content)) {
2477
2479
  for (const block of msg.content) {
2478
2480
  if (block.type === "text") {
2479
2481
  armContent += block.text;
2480
2482
  } else if (block.type === "thinking") {
2481
- armContent = `<thinking>${block.thinking}</thinking>
2482
-
2483
- ${armContent}`;
2483
+ const tb = block;
2484
+ armReasoningText += tb.thinking;
2485
+ if (tb.thinkingSignature)
2486
+ armReasoningSignature = tb.thinkingSignature;
2484
2487
  } else if (block.type === "toolCall") {
2485
2488
  const tc = block;
2486
2489
  armToolUses.push({
@@ -2491,12 +2494,15 @@ ${armContent}`;
2491
2494
  }
2492
2495
  }
2493
2496
  }
2494
- if (!armContent && armToolUses.length === 0)
2497
+ const hasReasoning = armReasoningText.length > 0;
2498
+ if (!armContent && armToolUses.length === 0 && !hasReasoning)
2495
2499
  continue;
2500
+ const reasoningContent = hasReasoning && armReasoningSignature ? { reasoningText: { text: armReasoningText, signature: armReasoningSignature } } : undefined;
2496
2501
  history.push({
2497
2502
  assistantResponseMessage: {
2498
2503
  content: armContent,
2499
- ...armToolUses.length > 0 ? { toolUses: armToolUses } : {}
2504
+ ...armToolUses.length > 0 ? { toolUses: armToolUses } : {},
2505
+ ...reasoningContent ? { reasoningContent } : {}
2500
2506
  }
2501
2507
  });
2502
2508
  continue;
@@ -2793,9 +2799,9 @@ ${systemPrompt}` : ""}`;
2793
2799
  const normalized = normalizeMessages(context.messages);
2794
2800
  const {
2795
2801
  history,
2796
- systemPrepended,
2802
+ systemPrepended: _systemPrepended,
2797
2803
  currentMsgStartIdx
2798
- } = buildHistory(normalized, kiroModelId, systemPrompt);
2804
+ } = buildHistory(normalized, kiroModelId);
2799
2805
  const seedInstruction = SYSTEM_SEED_INSTRUCTION.replace("{{modelId}}", kiroModelId);
2800
2806
  const seedPair = [
2801
2807
  { userInputMessage: { content: seedInstruction, origin: "KIRO_CLI" } },
@@ -2810,15 +2816,18 @@ ${systemPrompt}` : ""}`;
2810
2816
  if (firstMsg?.role === "assistant") {
2811
2817
  const am = firstMsg;
2812
2818
  let armContent = "";
2819
+ let armReasoningText = "";
2820
+ let armReasoningSignature = "";
2813
2821
  const armToolUses = [];
2814
2822
  if (Array.isArray(am.content)) {
2815
2823
  for (const b of am.content) {
2816
2824
  if (b.type === "text") {
2817
2825
  armContent += b.text;
2818
2826
  } else if (b.type === "thinking") {
2819
- armContent = `<thinking>${b.thinking}</thinking>
2820
-
2821
- ${armContent}`;
2827
+ const tb = b;
2828
+ armReasoningText += tb.thinking;
2829
+ if (tb.thinkingSignature)
2830
+ armReasoningSignature = tb.thinkingSignature;
2822
2831
  } else if (b.type === "toolCall") {
2823
2832
  const tc = b;
2824
2833
  armToolUses.push({
@@ -2829,8 +2838,10 @@ ${armContent}`;
2829
2838
  }
2830
2839
  }
2831
2840
  }
2832
- if (armContent || armToolUses.length > 0) {
2841
+ const hasReasoning = armReasoningText.length > 0;
2842
+ if (armContent || armToolUses.length > 0 || hasReasoning) {
2833
2843
  const last = history[history.length - 1];
2844
+ const reasoningContent = hasReasoning && armReasoningSignature ? { reasoningText: { text: armReasoningText, signature: armReasoningSignature } } : undefined;
2834
2845
  if (last && !last.userInputMessage && last.assistantResponseMessage) {
2835
2846
  last.assistantResponseMessage.content += `
2836
2847
 
@@ -2841,11 +2852,15 @@ ${armContent}`;
2841
2852
  ...armToolUses
2842
2853
  ];
2843
2854
  }
2855
+ if (reasoningContent) {
2856
+ last.assistantResponseMessage.reasoningContent = reasoningContent;
2857
+ }
2844
2858
  } else {
2845
2859
  history.push({
2846
2860
  assistantResponseMessage: {
2847
2861
  content: armContent,
2848
- ...armToolUses.length > 0 ? { toolUses: armToolUses } : {}
2862
+ ...armToolUses.length > 0 ? { toolUses: armToolUses } : {},
2863
+ ...reasoningContent ? { reasoningContent } : {}
2849
2864
  }
2850
2865
  });
2851
2866
  }
@@ -2902,7 +2917,7 @@ ${armContent}`;
2902
2917
  currentContent = "Tool results provided.";
2903
2918
  } else if (firstMsg?.role === "user") {
2904
2919
  currentContent = typeof firstMsg.content === "string" ? firstMsg.content : getContentText(firstMsg);
2905
- if (systemPrompt && !systemPrepended) {
2920
+ if (systemPrompt) {
2906
2921
  currentContent = `${systemPrompt}
2907
2922
 
2908
2923
  ${currentContent}`;
package/dist/extension.js CHANGED
@@ -906,7 +906,7 @@ async function resolveProfileArn(accessToken, apiRegion) {
906
906
  Authorization: `Bearer ${accessToken}`,
907
907
  "Content-Type": "application/x-amz-json-1.0",
908
908
  "X-Amz-Target": "AmazonCodeWhispererService.ListAvailableProfiles",
909
- "User-Agent": "pi-kiro"
909
+ "user-agent": "aws-sdk-rust/1.3.15 ua/2.1 api/codewhispererruntime/0.1.16551 os/macos lang/rust/1.92.0 md/appVersion-2.7.1 app/AmazonQ-For-CLI"
910
910
  },
911
911
  body: "{}"
912
912
  });
@@ -2476,15 +2476,18 @@ ${uim.content}`;
2476
2476
  }
2477
2477
  if (msg.role === "assistant") {
2478
2478
  let armContent = "";
2479
+ let armReasoningText = "";
2480
+ let armReasoningSignature = "";
2479
2481
  const armToolUses = [];
2480
2482
  if (Array.isArray(msg.content)) {
2481
2483
  for (const block of msg.content) {
2482
2484
  if (block.type === "text") {
2483
2485
  armContent += block.text;
2484
2486
  } else if (block.type === "thinking") {
2485
- armContent = `<thinking>${block.thinking}</thinking>
2486
-
2487
- ${armContent}`;
2487
+ const tb = block;
2488
+ armReasoningText += tb.thinking;
2489
+ if (tb.thinkingSignature)
2490
+ armReasoningSignature = tb.thinkingSignature;
2488
2491
  } else if (block.type === "toolCall") {
2489
2492
  const tc = block;
2490
2493
  armToolUses.push({
@@ -2495,12 +2498,15 @@ ${armContent}`;
2495
2498
  }
2496
2499
  }
2497
2500
  }
2498
- if (!armContent && armToolUses.length === 0)
2501
+ const hasReasoning = armReasoningText.length > 0;
2502
+ if (!armContent && armToolUses.length === 0 && !hasReasoning)
2499
2503
  continue;
2504
+ const reasoningContent = hasReasoning && armReasoningSignature ? { reasoningText: { text: armReasoningText, signature: armReasoningSignature } } : undefined;
2500
2505
  history.push({
2501
2506
  assistantResponseMessage: {
2502
2507
  content: armContent,
2503
- ...armToolUses.length > 0 ? { toolUses: armToolUses } : {}
2508
+ ...armToolUses.length > 0 ? { toolUses: armToolUses } : {},
2509
+ ...reasoningContent ? { reasoningContent } : {}
2504
2510
  }
2505
2511
  });
2506
2512
  continue;
@@ -2797,9 +2803,9 @@ ${systemPrompt}` : ""}`;
2797
2803
  const normalized = normalizeMessages(context.messages);
2798
2804
  const {
2799
2805
  history,
2800
- systemPrepended,
2806
+ systemPrepended: _systemPrepended,
2801
2807
  currentMsgStartIdx
2802
- } = buildHistory(normalized, kiroModelId, systemPrompt);
2808
+ } = buildHistory(normalized, kiroModelId);
2803
2809
  const seedInstruction = SYSTEM_SEED_INSTRUCTION.replace("{{modelId}}", kiroModelId);
2804
2810
  const seedPair = [
2805
2811
  { userInputMessage: { content: seedInstruction, origin: "KIRO_CLI" } },
@@ -2814,15 +2820,18 @@ ${systemPrompt}` : ""}`;
2814
2820
  if (firstMsg?.role === "assistant") {
2815
2821
  const am = firstMsg;
2816
2822
  let armContent = "";
2823
+ let armReasoningText = "";
2824
+ let armReasoningSignature = "";
2817
2825
  const armToolUses = [];
2818
2826
  if (Array.isArray(am.content)) {
2819
2827
  for (const b of am.content) {
2820
2828
  if (b.type === "text") {
2821
2829
  armContent += b.text;
2822
2830
  } else if (b.type === "thinking") {
2823
- armContent = `<thinking>${b.thinking}</thinking>
2824
-
2825
- ${armContent}`;
2831
+ const tb = b;
2832
+ armReasoningText += tb.thinking;
2833
+ if (tb.thinkingSignature)
2834
+ armReasoningSignature = tb.thinkingSignature;
2826
2835
  } else if (b.type === "toolCall") {
2827
2836
  const tc = b;
2828
2837
  armToolUses.push({
@@ -2833,8 +2842,10 @@ ${armContent}`;
2833
2842
  }
2834
2843
  }
2835
2844
  }
2836
- if (armContent || armToolUses.length > 0) {
2845
+ const hasReasoning = armReasoningText.length > 0;
2846
+ if (armContent || armToolUses.length > 0 || hasReasoning) {
2837
2847
  const last = history[history.length - 1];
2848
+ const reasoningContent = hasReasoning && armReasoningSignature ? { reasoningText: { text: armReasoningText, signature: armReasoningSignature } } : undefined;
2838
2849
  if (last && !last.userInputMessage && last.assistantResponseMessage) {
2839
2850
  last.assistantResponseMessage.content += `
2840
2851
 
@@ -2845,11 +2856,15 @@ ${armContent}`;
2845
2856
  ...armToolUses
2846
2857
  ];
2847
2858
  }
2859
+ if (reasoningContent) {
2860
+ last.assistantResponseMessage.reasoningContent = reasoningContent;
2861
+ }
2848
2862
  } else {
2849
2863
  history.push({
2850
2864
  assistantResponseMessage: {
2851
2865
  content: armContent,
2852
- ...armToolUses.length > 0 ? { toolUses: armToolUses } : {}
2866
+ ...armToolUses.length > 0 ? { toolUses: armToolUses } : {},
2867
+ ...reasoningContent ? { reasoningContent } : {}
2853
2868
  }
2854
2869
  });
2855
2870
  }
@@ -2906,7 +2921,7 @@ ${armContent}`;
2906
2921
  currentContent = "Tool results provided.";
2907
2922
  } else if (firstMsg?.role === "user") {
2908
2923
  currentContent = typeof firstMsg.content === "string" ? firstMsg.content : getContentText(firstMsg);
2909
- if (systemPrompt && !systemPrepended) {
2924
+ if (systemPrompt) {
2910
2925
  currentContent = `${systemPrompt}
2911
2926
 
2912
2927
  ${currentContent}`;
@@ -1 +1 @@
1
- {"version":3,"file":"stream.d.ts","sourceRoot":"","sources":["../src/stream.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,GAAG,EAEH,2BAA2B,EAC3B,OAAO,EAEP,KAAK,EACL,mBAAmB,EAKpB,MAAM,uBAAuB,CAAC;AA4F/B;;;;;;;GAOG;AACH,eAAO,MAAM,6BAA6B,OAAO,CAAC;AA6DlD,sDAAsD;AACtD,wBAAgB,oBAAoB,IAAI,IAAI,CAE3C;AAED,wFAAwF;AACxF,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAEhD;AAED,kCAAkC;AAClC,wBAAgB,aAAa,IAAI,MAAM,GAAG,SAAS,CAElD;AA0DD,wBAAgB,UAAU,CACxB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EACjB,OAAO,EAAE,OAAO,EAChB,OAAO,CAAC,EAAE,mBAAmB,GAC5B,2BAA2B,CAi1B7B"}
1
+ {"version":3,"file":"stream.d.ts","sourceRoot":"","sources":["../src/stream.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EACV,GAAG,EAEH,2BAA2B,EAC3B,OAAO,EAEP,KAAK,EACL,mBAAmB,EAKpB,MAAM,uBAAuB,CAAC;AA4F/B;;;;;;;GAOG;AACH,eAAO,MAAM,6BAA6B,OAAO,CAAC;AA6DlD,sDAAsD;AACtD,wBAAgB,oBAAoB,IAAI,IAAI,CAE3C;AAED,wFAAwF;AACxF,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAEhD;AAED,kCAAkC;AAClC,wBAAgB,aAAa,IAAI,MAAM,GAAG,SAAS,CAElD;AA0DD,wBAAgB,UAAU,CACxB,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,EACjB,OAAO,EAAE,OAAO,EAChB,OAAO,CAAC,EAAE,mBAAmB,GAC5B,2BAA2B,CAo2B7B"}
@@ -47,6 +47,12 @@ export interface KiroUserInputMessage {
47
47
  export interface KiroAssistantResponseMessage {
48
48
  content: string;
49
49
  toolUses?: KiroToolUse[];
50
+ reasoningContent?: {
51
+ reasoningText: {
52
+ text: string;
53
+ signature: string;
54
+ };
55
+ };
50
56
  }
51
57
  export interface KiroHistoryEntry {
52
58
  userInputMessage?: KiroUserInputMessage;
@@ -1 +1 @@
1
- {"version":3,"file":"transform.d.ts","sourceRoot":"","sources":["../src/transform.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"transform.d.ts","sourceRoot":"","sources":["../src/transform.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@javargasm/pi-kiro",
3
- "version": "0.4.6",
3
+ "version": "0.4.8",
4
4
  "description": "Kiro provider for the pi coding agent: AWS Builder ID / IAM Identity Center login and the CodeWhisperer streaming API, exposing the Kiro Claude model family.",
5
5
  "type": "module",
6
6
  "license": "MIT",