mastracode 0.19.1 → 0.20.0-alpha.1
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 +39 -0
- package/dist/{chunk-X272OX5N.cjs → chunk-G7D5RD4L.cjs} +283 -170
- package/dist/chunk-G7D5RD4L.cjs.map +1 -0
- package/dist/{chunk-ZYHIBCG3.js → chunk-NYGW7Y77.js} +283 -170
- package/dist/chunk-NYGW7Y77.js.map +1 -0
- package/dist/cli.cjs +4 -4
- package/dist/cli.js +1 -1
- package/dist/tui/command-dispatch.d.ts.map +1 -1
- package/dist/tui/commands/index.d.ts +1 -1
- package/dist/tui/commands/index.d.ts.map +1 -1
- package/dist/tui/commands/skill-filters.d.ts +8 -0
- package/dist/tui/commands/skill-filters.d.ts.map +1 -0
- package/dist/tui/commands/skills.d.ts +1 -0
- package/dist/tui/commands/skills.d.ts.map +1 -1
- package/dist/tui/components/help-overlay.d.ts.map +1 -1
- package/dist/tui/mastra-tui.d.ts.map +1 -1
- package/dist/tui/render-messages.d.ts.map +1 -1
- package/dist/tui/setup.d.ts +8 -0
- package/dist/tui/setup.d.ts.map +1 -1
- package/dist/tui/state.d.ts +1 -0
- package/dist/tui/state.d.ts.map +1 -1
- package/dist/tui.cjs +11 -11
- package/dist/tui.js +1 -1
- package/package.json +9 -9
- package/dist/chunk-X272OX5N.cjs.map +0 -1
- package/dist/chunk-ZYHIBCG3.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# mastracode
|
|
2
2
|
|
|
3
|
+
## 0.20.0-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`6b8a53e`](https://github.com/mastra-ai/mastra/commit/6b8a53eea3b255a4fd0b29bc0237cdd1906bf55c)]:
|
|
8
|
+
- @mastra/stagehand@0.2.3-alpha.0
|
|
9
|
+
|
|
10
|
+
## 0.20.0-alpha.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 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))
|
|
15
|
+
|
|
16
|
+
```text
|
|
17
|
+
/skill/github-triage
|
|
18
|
+
/skill/release-check focus tests
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
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.
|
|
22
|
+
|
|
23
|
+
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.
|
|
24
|
+
|
|
25
|
+
```md title=".mastracode/skills/internal-helper/SKILL.md"
|
|
26
|
+
---
|
|
27
|
+
name: internal-helper
|
|
28
|
+
description: Used by the agent internally; not for direct user invocation.
|
|
29
|
+
user-invocable: false
|
|
30
|
+
---
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Closes #16344.
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Improved thread signal handling in the TUI to work with the simplified signal contents shape. ([#16622](https://github.com/mastra-ai/mastra/pull/16622))
|
|
38
|
+
|
|
39
|
+
- 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)]:
|
|
40
|
+
- @mastra/core@1.36.0-alpha.0
|
|
41
|
+
|
|
3
42
|
## 0.19.1
|
|
4
43
|
|
|
5
44
|
### Patch Changes
|