mastracode 0.15.1-alpha.2 → 0.15.2-alpha.0

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,28 @@
1
1
  # mastracode
2
2
 
3
+ ## 0.15.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed custom slash commands to create the pending thread before sending the first prompt so the initial exchange stays in the same conversation. ([#15678](https://github.com/mastra-ai/mastra/pull/15678))
8
+
9
+ - Updated dependencies [[`733bf53`](https://github.com/mastra-ai/mastra/commit/733bf53d9352aedd3ef38c3d501edb275b65b43c), [`5405b3b`](https://github.com/mastra-ai/mastra/commit/5405b3b35325c5b8fb34fc7ac109bd2feb7bb6fe), [`c321127`](https://github.com/mastra-ai/mastra/commit/c3211275fc195de9ad1ead2746b354beb8eae6e8), [`a07bcef`](https://github.com/mastra-ai/mastra/commit/a07bcefea77c03d6d322caad973dca49b4b15fa1), [`b084a80`](https://github.com/mastra-ai/mastra/commit/b084a800db0f82d62e1fc3d6e3e3480da1ba5a53), [`82b7a96`](https://github.com/mastra-ai/mastra/commit/82b7a964169636c1d1e0c694fc892a213b0179d5), [`df97812`](https://github.com/mastra-ai/mastra/commit/df97812bd949dcafeb074b80ecab501724b49c3b), [`1422165`](https://github.com/mastra-ai/mastra/commit/14221652c8cd58c4a0be55e81bf05a5096bbb7d9), [`8bbe360`](https://github.com/mastra-ai/mastra/commit/8bbe36042af7fc4be0244dffd8913f6795179421), [`f6b8ba8`](https://github.com/mastra-ai/mastra/commit/f6b8ba8dbf533b7a8db90c72b6805ddc804a3a72), [`a07bcef`](https://github.com/mastra-ai/mastra/commit/a07bcefea77c03d6d322caad973dca49b4b15fa1)]:
10
+ - @mastra/core@1.28.0-alpha.0
11
+ - @mastra/agent-browser@0.2.1-alpha.0
12
+
13
+ ## 0.15.1
14
+
15
+ ### Patch Changes
16
+
17
+ - Added opt-in temporal-gap markers for observational memory. When enabled via `observationalMemory.temporalMarkers: true`, the agent receives a `<system-reminder type="temporal-gap">` before any user message that arrives more than 10 minutes after the previous one, so it can anchor responses in real elapsed time. Markers are persisted, surfaced to the observer, and rendered by the MastraCode TUI on reload. ([#15605](https://github.com/mastra-ai/mastra/pull/15605))
18
+
19
+ - Improved model ID display in the Mastra Code TUI status line. Fireworks model IDs are now shown in compact form (e.g. fireworks/kimi-k2.6 instead of the full fireworks-ai/accounts/fireworks/models/... path). Version separators in model names are also normalized (e.g. kimi-k2p6 is displayed as kimi-k2.6). ([#15631](https://github.com/mastra-ai/mastra/pull/15631))
20
+
21
+ - Updated dependencies [[`f112db1`](https://github.com/mastra-ai/mastra/commit/f112db179557ae9b5a0f1d25dc47f928d7d61cd9), [`21d9706`](https://github.com/mastra-ai/mastra/commit/21d970604d89eee970cbf8013d26d7551aff6ea5), [`0a0aa94`](https://github.com/mastra-ai/mastra/commit/0a0aa94729592e99885af2efb90c56aaada62247), [`ed07df3`](https://github.com/mastra-ai/mastra/commit/ed07df32a9d539c8261e892fc1bade783f5b41a6), [`96f6fb2`](https://github.com/mastra-ai/mastra/commit/96f6fb2dc9ed0980091e66f727542394ba5b300d), [`01a7d51`](https://github.com/mastra-ai/mastra/commit/01a7d513493d21562f677f98550f7ceb165ba78c), [`6e9ab07`](https://github.com/mastra-ai/mastra/commit/6e9ab07b7120e0f4ed1e117c45db0f94840f4afd)]:
22
+ - @mastra/core@1.27.0
23
+ - @mastra/tavily@1.0.1
24
+ - @mastra/memory@1.17.0
25
+
3
26
  ## 0.15.1-alpha.2
4
27
 
5
28
  ### Patch Changes
@@ -878,7 +878,7 @@ function getInstallCommand(pm, version) {
878
878
  }
879
879
  function getCurrentVersion() {
880
880
  {
881
- return "0.15.1-alpha.2";
881
+ return "0.15.2-alpha.0";
882
882
  }
883
883
  }
884
884
  async function fetchLatestVersion() {
@@ -7596,6 +7596,10 @@ async function handleCustomSlashCommand(state, command, args) {
7596
7596
  state.allSlashCommandComponents.push(slashComp);
7597
7597
  state.chatContainer.addChild(slashComp);
7598
7598
  state.ui.requestRender();
7599
+ if (state.pendingNewThread) {
7600
+ await state.harness.createThread();
7601
+ state.pendingNewThread = false;
7602
+ }
7599
7603
  const wrapped = `<slash-command name="${command.name}">
7600
7604
  ${processedContent.trim()}
7601
7605
  </slash-command>`;
@@ -14015,5 +14019,5 @@ var LoginSelectorComponent = class extends Box {
14015
14019
  };
14016
14020
 
14017
14021
  export { AssistantMessageComponent, LoginDialogComponent, LoginSelectorComponent, MastraTUI, ModelSelectorComponent, OMProgressComponent, ToolExecutionComponentEnhanced, UserMessageComponent, createTUIState, detectTerminalTheme, formatOMStatus, getCurrentVersion };
14018
- //# sourceMappingURL=chunk-Z52RHSZF.js.map
14019
- //# sourceMappingURL=chunk-Z52RHSZF.js.map
14022
+ //# sourceMappingURL=chunk-BTTVDMR7.js.map
14023
+ //# sourceMappingURL=chunk-BTTVDMR7.js.map