mastracode 0.19.1 → 0.20.0-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,37 @@
1
1
  # mastracode
2
2
 
3
+ ## 0.20.0-alpha.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Added the `/skill/<name>` command to explicitly activate an installed workspace skill in the current conversation. This complements automatic skill activation. ([#16618](https://github.com/mastra-ai/mastra/pull/16618))
8
+
9
+ ```text
10
+ /skill/github-triage
11
+ /skill/release-check focus tests
12
+ ```
13
+
14
+ The command loads the skill's instructions (plus any `references/`, `scripts/`, and `assets/` paths the skill ships) and sends them to the agent. Use `/skills` to list available skills.
15
+
16
+ Skills can opt out of direct user invocation by setting `user-invocable: false` in their frontmatter — those skills remain available for automatic activation by the agent but do not appear in `/skill/<name>` autocomplete, the `/skills` listing, or accept direct invocation.
17
+
18
+ ```md title=".mastracode/skills/internal-helper/SKILL.md"
19
+ ---
20
+ name: internal-helper
21
+ description: Used by the agent internally; not for direct user invocation.
22
+ user-invocable: false
23
+ ---
24
+ ```
25
+
26
+ Closes #16344.
27
+
28
+ ### Patch Changes
29
+
30
+ - Improved thread signal handling in the TUI to work with the simplified signal contents shape. ([#16622](https://github.com/mastra-ai/mastra/pull/16622))
31
+
32
+ - Updated dependencies [[`452036a`](https://github.com/mastra-ai/mastra/commit/452036a0d965b4f4c1efd93606e4f03b50b807a5), [`1a9cc60`](https://github.com/mastra-ai/mastra/commit/1a9cc6069f9910fc3d59e4953ac8cd95d89ad6f5), [`64c1e0b`](https://github.com/mastra-ai/mastra/commit/64c1e0b35165c96b659818bd0177aa18794ef11f), [`40d83a9`](https://github.com/mastra-ai/mastra/commit/40d83a90d9be31a1b83e04649edb703eb7753e33)]:
33
+ - @mastra/core@1.36.0-alpha.0
34
+
3
35
  ## 0.19.1
4
36
 
5
37
  ### Patch Changes